diff --git a/src/lib/reasoners/bitv.ml b/src/lib/reasoners/bitv.ml index 4d5e7234a..54821c23f 100644 --- a/src/lib/reasoners/bitv.ml +++ b/src/lib/reasoners/bitv.ml @@ -1473,8 +1473,8 @@ module Shostak(X : ALIEN) = struct Currently a fairly naive backtracking search. *) let rec search buf pos sz abstracts = - (* [t] are the values we must be distinct from that starts with a '1' *) - (* [f] are the values we must be distinct from that starts with a '0' *) + (* [t] : values (a) we must be distinct from and (b) start with a '1' *) + (* [f] : values (a) we must be distinct from and (b) start with a '0' *) let t, nt, f, nf = List.fold_left (fun (t, nt, f, nf) ab -> let b, bv = pop_bit ab in match b with @@ -1520,25 +1520,11 @@ module Shostak(X : ALIEN) = struct let buf = Bytes.create sz in match search buf 0 sz distincts with | () -> - (* If there are exactly [2^n - 1] constant values we must be distinct - from, this is not a case split: the choice is forced. *) - let nb = - List.fold_left (fun nb a -> - if is_cte_abstract a then nb + 1 else nb) 1 distincts - in - let is_cs = not (Z.equal (Z.of_int nb) (Z.pow (Z.of_int 2) sz)) in let bv = Bytes.unsafe_to_string buf in - Some (E.bitv bv (Ty.Tbitv sz), is_cs) + Some (E.bitv bv (Ty.Tbitv sz), true) | exception Not_found -> - (* This is not solvable: we are forced to be distinct from all possible - values. We signal that by returning an arbitrary bitvector and - setting the "case-split" flag to [false], which means that the - choice was "forced". - - Since a forced choice is actually inconsistent, this will cause - backtracking (and possibly unsat-ness). *) let bv = String.make sz '0' in - Some (E.bitv bv (Ty.Tbitv sz), false) + Some (E.bitv bv (Ty.Tbitv sz), true) let choose_adequate_model t r l = if Options.get_debug_interpretation () then diff --git a/src/lib/reasoners/sig.mli b/src/lib/reasoners/sig.mli index 28700e54e..cc6075f4b 100644 --- a/src/lib/reasoners/sig.mli +++ b/src/lib/reasoners/sig.mli @@ -87,12 +87,46 @@ module type SHOSTAK = sig val abstract_selectors : t -> (r * r) list -> r * (r * r) list - (* the returned bool is true when the returned term in a constant of the - theory. Otherwise, the term contains aliens that should be assigned - (eg. records). In this case, it's a unit fact, not a decision - *) val assign_value : r -> r list -> (Expr.t * r) list -> (Expr.t * bool) option + (**[assign_value r distincts eq] selects the value to assign to [r] in the + model as a term [t], and returns [Some (t, is_cs)]. [is_cs] is described + below. + + If no appropriate value can be chosen here, return [None] (only do this if + either [r] is already a value, or there is a mechanism somewhere else in + the code, such as the [case_split] function of a relation module, that + ensures completeness of the generated model). + + [r] is the current class representative that a value should be chosen for. + No assumptions should be made on the shape of [r], but do return [None] if + it is already a value. + + [distincts] is a list of term representatives that the returned value must + be distinct from (choosing a value that is present in [distincts] will + cause the solver to loop infinitely). + + [eq] is a list of pairs [(t, r)] of terms and their initial representative + (i.e., [r] is [fst (X.make t)] for each pair) that encode the equivalence + class of [r]. + + The returned bool serves a similar purpose as the [is_cs] flag in + [Th_util.case_split]. + + It should usually be [true], which indicates that the returned term is not + forced. + + Use [false] only when the returned term contains aliens that should be + assigned (e.g. records). + + **When returning [false], you must ensure that the equality between the + first argument and the return value always hold (i.e. is a *unit* fact). + In particular, the equality *must not* depend on [distincts] -- doing so + would be unsound.** + + In other words, if [assign_value r distincts eq] returns + [Some (t, false)], then there must be no context in which + [solve r (fst X.make t)] raises [Unsolvable]. You have been warned! *) (* choose the value to print and how to print it for the given term. The second term is its representative. The list is its equivalence class diff --git a/src/lib/reasoners/sig_rel.mli b/src/lib/reasoners/sig_rel.mli index 0ee603247..e274163ff 100644 --- a/src/lib/reasoners/sig_rel.mli +++ b/src/lib/reasoners/sig_rel.mli @@ -60,7 +60,17 @@ module type RELATION = sig val case_split : t -> Uf.t -> for_model:bool -> Th_util.case_split list - (** case_split env returns a list of equalities *) + (** case_split env returns a list of equalities + + The returned case splits *must* have a [CS] origin; see the doc of + [Th_util.case_split]. + + The [for_model] flag is [true] when we are splitting for the purpose of + generating a model; the case split may need to be more aggressive in this + case to ensure completeness. + + Note: not always equalities (e.g. the arrays theory returns + disequalities) *) val optimizing_split : t -> Uf.t -> Th_util.optimized_split -> Th_util.optimized_split option diff --git a/src/lib/reasoners/th_util.mli b/src/lib/reasoners/th_util.mli index 44863888a..40af9d408 100644 --- a/src/lib/reasoners/th_util.mli +++ b/src/lib/reasoners/th_util.mli @@ -96,6 +96,24 @@ type lit_origin = propagations and theory propagations all have the {!Other} origin. *) type case_split = Shostak.Combine.r Xliteral.view * bool * lit_origin +(** A case split is a triple [(a, is_cs, origin)]. + + The literal [a] is simply the literal that is the source of the split, or + its negation (depending on [origin]). + + The [origin] should be either [CS] or [NCS]. Case splits returned by + relations have an origin of [CS], which is then flipped to [NCS] if a + contradiction is found involving [a]. + + The [is_cs] flag should *always* be [true], unless the literal [a] is a + *unit fact*, i.e. a fact that is true in all possible environments, not + merely the current one. Note that it is acceptable for unit facts to be + returned with [is_cs = true]; but if the [is_cs] flag is [false], the + solver *will* assume that the literal can't take part in any conflict. + Returning [is_cs = false] if the literal is not an unit fact **is + unsound**. + + TL;DR: When in doubt, just set [is_cs] to [true]. *) type optimized_split = { r : Shostak.Combine.r; diff --git a/tests/dune.inc b/tests/dune.inc index 715dd86ae..82a613d38 100644 --- a/tests/dune.inc +++ b/tests/dune.inc @@ -11,7 +11,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34,7 +34,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59,7 +59,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83,7 +83,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106,7 +106,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129,7 +129,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152,7 +152,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174,7 +174,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196,7 +196,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -218,7 +218,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -239,7 +239,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -260,7 +260,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -281,7 +281,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -304,7 +304,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -329,7 +329,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -353,7 +353,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -376,7 +376,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -399,7 +399,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -422,7 +422,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -444,7 +444,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -466,7 +466,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -488,7 +488,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -509,7 +509,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -530,7 +530,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -551,7 +551,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -574,7 +574,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -599,7 +599,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -623,7 +623,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -646,7 +646,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -669,7 +669,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -692,7 +692,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -714,7 +714,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -736,7 +736,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -758,7 +758,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -779,7 +779,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -800,7 +800,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -821,7 +821,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -844,7 +844,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -869,7 +869,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -893,7 +893,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -916,7 +916,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -939,7 +939,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -962,7 +962,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -984,7 +984,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1006,7 +1006,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1028,7 +1028,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1049,7 +1049,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1070,7 +1070,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1091,7 +1091,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1114,7 +1114,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1139,7 +1139,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1163,7 +1163,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1186,7 +1186,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1209,7 +1209,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1232,7 +1232,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1254,7 +1254,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1276,7 +1276,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1298,7 +1298,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1319,7 +1319,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1340,7 +1340,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1361,7 +1361,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1384,7 +1384,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1409,7 +1409,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1433,7 +1433,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1456,7 +1456,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1479,7 +1479,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1502,7 +1502,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1524,7 +1524,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1546,7 +1546,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1568,7 +1568,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1589,7 +1589,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1610,7 +1610,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1631,7 +1631,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1654,7 +1654,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1679,7 +1679,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1703,7 +1703,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1726,7 +1726,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1749,7 +1749,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1772,7 +1772,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1794,7 +1794,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1816,7 +1816,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1838,7 +1838,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1859,7 +1859,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1880,7 +1880,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1901,7 +1901,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1924,7 +1924,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1949,7 +1949,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1973,7 +1973,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -1996,7 +1996,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2019,7 +2019,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2042,7 +2042,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2064,7 +2064,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2086,7 +2086,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2108,7 +2108,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2129,7 +2129,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2150,7 +2150,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2171,7 +2171,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2194,7 +2194,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2219,7 +2219,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2243,7 +2243,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2266,7 +2266,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2289,7 +2289,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2312,7 +2312,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2334,7 +2334,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2356,7 +2356,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2378,7 +2378,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2399,7 +2399,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2420,7 +2420,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2441,7 +2441,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2464,7 +2464,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2489,7 +2489,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2513,7 +2513,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2536,7 +2536,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2559,7 +2559,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2582,7 +2582,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2604,7 +2604,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2626,7 +2626,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2648,7 +2648,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2669,7 +2669,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2690,7 +2690,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2711,7 +2711,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2734,7 +2734,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2759,7 +2759,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2783,7 +2783,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2806,7 +2806,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2829,7 +2829,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2852,7 +2852,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2874,7 +2874,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2896,7 +2896,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2918,7 +2918,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2939,7 +2939,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2960,7 +2960,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -2981,7 +2981,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3004,7 +3004,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3029,7 +3029,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3053,7 +3053,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3076,7 +3076,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3099,7 +3099,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3122,7 +3122,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3144,7 +3144,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3166,7 +3166,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3188,7 +3188,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3209,7 +3209,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3230,7 +3230,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3251,7 +3251,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3274,7 +3274,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3299,7 +3299,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3323,7 +3323,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3346,7 +3346,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3369,7 +3369,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3392,7 +3392,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3414,7 +3414,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3436,7 +3436,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3458,7 +3458,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3479,7 +3479,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3500,7 +3500,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3521,7 +3521,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3544,7 +3544,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3569,7 +3569,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3593,7 +3593,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3616,7 +3616,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3639,7 +3639,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3662,7 +3662,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3684,7 +3684,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3706,7 +3706,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3728,7 +3728,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3749,7 +3749,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3770,7 +3770,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3791,7 +3791,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3814,7 +3814,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3839,7 +3839,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3863,7 +3863,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3886,7 +3886,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3909,7 +3909,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3932,7 +3932,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3954,7 +3954,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3976,7 +3976,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -3998,7 +3998,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4019,7 +4019,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4040,7 +4040,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4061,7 +4061,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4084,7 +4084,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4109,7 +4109,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4133,7 +4133,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4156,7 +4156,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4179,7 +4179,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4202,7 +4202,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4224,7 +4224,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4246,7 +4246,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4268,7 +4268,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4289,7 +4289,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4310,7 +4310,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4331,7 +4331,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4354,7 +4354,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4379,7 +4379,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4403,7 +4403,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4426,7 +4426,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4449,7 +4449,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4472,7 +4472,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4494,7 +4494,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4516,7 +4516,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4538,7 +4538,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4559,7 +4559,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4580,7 +4580,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4601,7 +4601,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4624,7 +4624,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4649,7 +4649,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4673,7 +4673,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4696,7 +4696,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4719,7 +4719,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4742,7 +4742,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4764,7 +4764,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4786,7 +4786,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4808,7 +4808,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4829,7 +4829,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4850,7 +4850,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4871,7 +4871,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4894,7 +4894,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4919,7 +4919,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4943,7 +4943,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4966,7 +4966,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -4989,7 +4989,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5012,7 +5012,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5034,7 +5034,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5056,7 +5056,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5078,7 +5078,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5099,7 +5099,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5120,7 +5120,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5141,7 +5141,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5164,7 +5164,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5189,7 +5189,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5213,7 +5213,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5236,7 +5236,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5259,7 +5259,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5282,7 +5282,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5304,7 +5304,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5326,7 +5326,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5348,7 +5348,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5369,7 +5369,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5390,7 +5390,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5411,7 +5411,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5434,7 +5434,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5459,7 +5459,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5483,7 +5483,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5506,7 +5506,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5529,7 +5529,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5552,7 +5552,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5574,7 +5574,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5596,7 +5596,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5618,7 +5618,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5639,7 +5639,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5660,7 +5660,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5681,7 +5681,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5704,7 +5704,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5729,7 +5729,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5753,7 +5753,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5776,7 +5776,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5799,7 +5799,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5822,7 +5822,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5844,7 +5844,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5866,7 +5866,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5888,7 +5888,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5909,7 +5909,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5930,7 +5930,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5951,7 +5951,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5974,7 +5974,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -5999,7 +5999,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6023,7 +6023,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6046,7 +6046,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6069,7 +6069,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6092,7 +6092,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6114,7 +6114,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6136,7 +6136,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6158,7 +6158,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6179,7 +6179,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6200,7 +6200,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6221,7 +6221,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6244,7 +6244,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6269,7 +6269,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6293,7 +6293,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6316,7 +6316,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6339,7 +6339,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6362,7 +6362,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6384,7 +6384,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6406,7 +6406,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6428,7 +6428,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6449,7 +6449,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6470,7 +6470,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6491,7 +6491,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6514,7 +6514,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6539,7 +6539,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6563,7 +6563,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6586,7 +6586,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6609,7 +6609,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6632,7 +6632,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6654,7 +6654,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6676,7 +6676,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6698,7 +6698,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6719,7 +6719,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6740,7 +6740,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6761,7 +6761,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6784,7 +6784,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6809,7 +6809,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6833,7 +6833,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6856,7 +6856,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6879,7 +6879,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6902,7 +6902,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6924,7 +6924,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6946,7 +6946,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6968,7 +6968,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -6989,7 +6989,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7010,7 +7010,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7031,7 +7031,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7054,7 +7054,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7079,7 +7079,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7103,7 +7103,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7126,7 +7126,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7149,7 +7149,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7172,7 +7172,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7194,7 +7194,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7216,7 +7216,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7238,7 +7238,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7259,7 +7259,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7280,7 +7280,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7301,7 +7301,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7324,7 +7324,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7349,7 +7349,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7373,7 +7373,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7396,7 +7396,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7419,7 +7419,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7442,7 +7442,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7464,7 +7464,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7486,7 +7486,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7508,7 +7508,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7529,7 +7529,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7550,7 +7550,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7571,7 +7571,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7594,7 +7594,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7619,7 +7619,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7643,7 +7643,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7666,7 +7666,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7689,7 +7689,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7712,7 +7712,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7734,7 +7734,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7756,7 +7756,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7778,7 +7778,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7799,7 +7799,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7820,7 +7820,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7841,7 +7841,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7864,7 +7864,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7889,7 +7889,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7913,7 +7913,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7936,7 +7936,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7959,7 +7959,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -7982,7 +7982,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8004,7 +8004,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8026,7 +8026,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8048,7 +8048,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8069,7 +8069,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8090,7 +8090,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8111,7 +8111,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8134,7 +8134,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8159,7 +8159,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8183,7 +8183,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8206,7 +8206,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8229,7 +8229,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8252,7 +8252,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8274,7 +8274,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8296,7 +8296,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8318,7 +8318,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8339,7 +8339,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8360,7 +8360,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8381,7 +8381,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8404,7 +8404,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8429,7 +8429,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8453,7 +8453,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8476,7 +8476,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8499,7 +8499,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8522,7 +8522,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8544,7 +8544,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8566,7 +8566,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8588,7 +8588,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8609,7 +8609,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8630,7 +8630,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8651,7 +8651,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8674,7 +8674,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8699,7 +8699,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8723,7 +8723,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8746,7 +8746,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8769,7 +8769,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8792,7 +8792,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8814,7 +8814,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8836,7 +8836,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8858,7 +8858,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8879,7 +8879,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8900,7 +8900,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8921,7 +8921,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8944,7 +8944,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8969,7 +8969,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -8993,7 +8993,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9016,7 +9016,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9039,7 +9039,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9062,7 +9062,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9084,7 +9084,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9106,7 +9106,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9128,7 +9128,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9149,7 +9149,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9170,7 +9170,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9191,7 +9191,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9214,7 +9214,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9239,7 +9239,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9263,7 +9263,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9286,7 +9286,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9309,7 +9309,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9332,7 +9332,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9354,7 +9354,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9376,7 +9376,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9398,7 +9398,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9419,7 +9419,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9440,7 +9440,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9461,7 +9461,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9484,7 +9484,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9509,7 +9509,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9533,7 +9533,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9556,7 +9556,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9579,7 +9579,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9602,7 +9602,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9624,7 +9624,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9646,7 +9646,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9668,7 +9668,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9689,7 +9689,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9710,7 +9710,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9731,7 +9731,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9754,7 +9754,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9779,7 +9779,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9803,7 +9803,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9826,7 +9826,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9849,7 +9849,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9872,7 +9872,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9894,7 +9894,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9916,7 +9916,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9938,7 +9938,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9959,7 +9959,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -9980,7 +9980,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10001,7 +10001,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10024,7 +10024,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10049,7 +10049,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10073,7 +10073,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10096,7 +10096,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10119,7 +10119,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10142,7 +10142,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10164,7 +10164,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10186,7 +10186,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10208,7 +10208,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10229,7 +10229,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10250,7 +10250,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10271,7 +10271,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10294,7 +10294,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10319,7 +10319,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10343,7 +10343,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10366,7 +10366,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10389,7 +10389,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10412,7 +10412,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10434,7 +10434,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10456,7 +10456,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10478,7 +10478,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10499,7 +10499,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10520,7 +10520,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10541,7 +10541,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10564,7 +10564,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10589,7 +10589,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10613,7 +10613,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10636,7 +10636,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10659,7 +10659,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10682,7 +10682,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10704,7 +10704,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10726,7 +10726,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10748,7 +10748,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10769,7 +10769,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10790,7 +10790,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10811,7 +10811,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10834,7 +10834,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10859,7 +10859,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10883,7 +10883,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10906,7 +10906,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10929,7 +10929,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10952,7 +10952,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10974,7 +10974,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -10996,7 +10996,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11018,7 +11018,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11039,7 +11039,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11060,7 +11060,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11081,7 +11081,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11104,7 +11104,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11129,7 +11129,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11153,7 +11153,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11176,7 +11176,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11199,7 +11199,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11222,7 +11222,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11244,7 +11244,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11266,7 +11266,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11288,7 +11288,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11309,7 +11309,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11330,7 +11330,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11351,7 +11351,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11374,7 +11374,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11399,7 +11399,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11423,7 +11423,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11446,7 +11446,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11469,7 +11469,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11492,7 +11492,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11514,7 +11514,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11536,7 +11536,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11558,7 +11558,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11579,7 +11579,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11600,7 +11600,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11621,7 +11621,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11644,7 +11644,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11669,7 +11669,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11693,7 +11693,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11716,7 +11716,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11739,7 +11739,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11762,7 +11762,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11784,7 +11784,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11806,7 +11806,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11828,7 +11828,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11849,7 +11849,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11870,7 +11870,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11891,7 +11891,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11914,7 +11914,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11939,7 +11939,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11963,7 +11963,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -11986,7 +11986,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12009,7 +12009,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12032,7 +12032,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12054,7 +12054,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12076,7 +12076,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12098,7 +12098,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12119,7 +12119,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12140,7 +12140,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12161,7 +12161,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12184,7 +12184,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12209,7 +12209,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12233,7 +12233,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12256,7 +12256,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12279,7 +12279,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12302,7 +12302,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12324,7 +12324,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12346,7 +12346,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12368,7 +12368,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12389,7 +12389,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12410,7 +12410,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12431,7 +12431,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12454,7 +12454,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12479,7 +12479,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12503,7 +12503,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12526,7 +12526,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12549,7 +12549,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12572,7 +12572,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12594,7 +12594,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12616,7 +12616,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12638,7 +12638,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12659,7 +12659,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12680,7 +12680,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12701,7 +12701,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12724,7 +12724,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12749,7 +12749,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12773,7 +12773,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12796,7 +12796,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12819,7 +12819,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12842,7 +12842,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12864,7 +12864,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12886,7 +12886,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12908,7 +12908,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12929,7 +12929,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12950,7 +12950,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12971,7 +12971,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -12994,7 +12994,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13019,7 +13019,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13043,7 +13043,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13066,7 +13066,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13089,7 +13089,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13112,7 +13112,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13134,7 +13134,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13156,7 +13156,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13178,7 +13178,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13199,7 +13199,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13220,7 +13220,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13241,7 +13241,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13264,7 +13264,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13289,7 +13289,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13313,7 +13313,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13336,7 +13336,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13359,7 +13359,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13382,7 +13382,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13404,7 +13404,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13426,7 +13426,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13448,7 +13448,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13469,7 +13469,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13490,7 +13490,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13511,7 +13511,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13534,7 +13534,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13559,7 +13559,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13583,7 +13583,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13606,7 +13606,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13629,7 +13629,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13652,7 +13652,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13674,7 +13674,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13696,7 +13696,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13718,7 +13718,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13739,7 +13739,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13760,7 +13760,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13781,7 +13781,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13804,7 +13804,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13829,7 +13829,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13853,7 +13853,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13876,7 +13876,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13899,7 +13899,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13922,7 +13922,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13944,7 +13944,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13966,7 +13966,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -13988,7 +13988,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14009,7 +14009,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14030,7 +14030,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14051,7 +14051,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14074,7 +14074,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14099,7 +14099,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14123,7 +14123,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14146,7 +14146,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14169,7 +14169,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14192,7 +14192,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14214,7 +14214,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14236,7 +14236,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14258,7 +14258,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14279,7 +14279,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14300,7 +14300,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14321,7 +14321,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14344,7 +14344,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14369,7 +14369,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14393,7 +14393,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14416,7 +14416,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14439,7 +14439,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14462,7 +14462,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14484,7 +14484,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14506,7 +14506,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14528,7 +14528,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14549,7 +14549,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14570,7 +14570,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14591,7 +14591,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14614,7 +14614,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14639,7 +14639,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14663,7 +14663,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14686,7 +14686,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14709,7 +14709,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14732,7 +14732,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14754,7 +14754,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14776,7 +14776,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14798,7 +14798,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14819,7 +14819,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14840,7 +14840,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14861,7 +14861,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14884,7 +14884,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14909,7 +14909,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14933,7 +14933,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14956,7 +14956,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -14979,7 +14979,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15002,7 +15002,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15024,7 +15024,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15046,7 +15046,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15068,7 +15068,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15089,7 +15089,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15110,7 +15110,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15131,7 +15131,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15154,7 +15154,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15179,7 +15179,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15203,7 +15203,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15226,7 +15226,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15249,7 +15249,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15272,7 +15272,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15294,7 +15294,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15316,7 +15316,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15338,7 +15338,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15359,7 +15359,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15380,7 +15380,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15401,7 +15401,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15424,7 +15424,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15449,7 +15449,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15473,7 +15473,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15496,7 +15496,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15519,7 +15519,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15542,7 +15542,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15564,7 +15564,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15586,7 +15586,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15608,7 +15608,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15629,7 +15629,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15650,7 +15650,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15671,7 +15671,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15694,7 +15694,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15719,7 +15719,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15743,7 +15743,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15766,7 +15766,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15789,7 +15789,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15812,7 +15812,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15834,7 +15834,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15856,7 +15856,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15878,7 +15878,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15899,7 +15899,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15920,7 +15920,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15941,7 +15941,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15964,7 +15964,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -15989,7 +15989,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16013,7 +16013,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16036,7 +16036,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16059,7 +16059,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16082,7 +16082,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16104,7 +16104,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16126,7 +16126,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16148,7 +16148,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16169,7 +16169,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16190,7 +16190,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16211,7 +16211,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16234,7 +16234,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16259,7 +16259,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16283,7 +16283,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16306,7 +16306,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16329,7 +16329,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16352,7 +16352,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16374,7 +16374,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16396,7 +16396,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16418,7 +16418,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16439,7 +16439,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16460,7 +16460,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16481,7 +16481,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16504,7 +16504,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16529,7 +16529,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16553,7 +16553,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16576,7 +16576,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16599,7 +16599,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16622,7 +16622,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16644,7 +16644,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16666,7 +16666,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16688,7 +16688,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16709,7 +16709,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16730,7 +16730,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16751,7 +16751,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16774,7 +16774,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16799,7 +16799,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16823,7 +16823,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16846,7 +16846,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16869,7 +16869,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16892,7 +16892,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16914,7 +16914,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16936,7 +16936,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16958,7 +16958,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -16979,7 +16979,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17000,7 +17000,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17021,7 +17021,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17044,7 +17044,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17069,7 +17069,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17093,7 +17093,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17116,7 +17116,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17139,7 +17139,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17162,7 +17162,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17184,7 +17184,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17206,7 +17206,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17228,7 +17228,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17249,7 +17249,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17270,7 +17270,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17291,7 +17291,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17314,7 +17314,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17339,7 +17339,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17363,7 +17363,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17386,7 +17386,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17409,7 +17409,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17432,7 +17432,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17454,7 +17454,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17476,7 +17476,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17498,7 +17498,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17519,7 +17519,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17540,7 +17540,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17561,7 +17561,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17584,7 +17584,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17609,7 +17609,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17633,7 +17633,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17656,7 +17656,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17679,7 +17679,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17702,7 +17702,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17724,7 +17724,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17746,7 +17746,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17768,7 +17768,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17789,7 +17789,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17810,7 +17810,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17831,7 +17831,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17854,7 +17854,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17879,7 +17879,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17903,7 +17903,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17926,7 +17926,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17949,7 +17949,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17972,7 +17972,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -17994,7 +17994,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18016,7 +18016,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18038,7 +18038,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18059,7 +18059,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18080,7 +18080,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18101,7 +18101,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18124,7 +18124,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18149,7 +18149,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18173,7 +18173,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18196,7 +18196,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18219,7 +18219,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18242,7 +18242,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18264,7 +18264,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18286,7 +18286,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18308,7 +18308,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18329,7 +18329,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18350,7 +18350,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18371,7 +18371,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18394,7 +18394,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18419,7 +18419,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18443,7 +18443,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18466,7 +18466,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18489,7 +18489,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18512,7 +18512,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18534,7 +18534,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18556,7 +18556,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18578,7 +18578,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18599,7 +18599,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18620,7 +18620,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18641,7 +18641,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18664,7 +18664,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18689,7 +18689,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18713,7 +18713,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18736,7 +18736,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18759,7 +18759,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18782,7 +18782,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18804,7 +18804,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18826,7 +18826,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18848,7 +18848,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18869,7 +18869,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18890,7 +18890,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18911,7 +18911,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18934,7 +18934,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18959,7 +18959,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -18983,7 +18983,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19006,7 +19006,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19029,7 +19029,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19052,7 +19052,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19074,7 +19074,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19096,7 +19096,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19118,7 +19118,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19139,7 +19139,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19160,7 +19160,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19181,7 +19181,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19204,7 +19204,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19229,7 +19229,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19253,7 +19253,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19276,7 +19276,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19299,7 +19299,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19322,7 +19322,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19344,7 +19344,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19366,7 +19366,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19388,7 +19388,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19409,7 +19409,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19430,7 +19430,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19451,7 +19451,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19474,7 +19474,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19499,7 +19499,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19523,7 +19523,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19546,7 +19546,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19569,7 +19569,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19592,7 +19592,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19614,7 +19614,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19636,7 +19636,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19658,7 +19658,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19679,7 +19679,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19700,7 +19700,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19721,7 +19721,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19744,7 +19744,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19769,7 +19769,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19793,7 +19793,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19816,7 +19816,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19839,7 +19839,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19862,7 +19862,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19884,7 +19884,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19906,7 +19906,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19928,7 +19928,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19949,7 +19949,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19970,7 +19970,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -19991,7 +19991,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20014,7 +20014,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20039,7 +20039,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20063,7 +20063,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20086,7 +20086,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20109,7 +20109,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20132,7 +20132,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20154,7 +20154,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20176,7 +20176,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20198,7 +20198,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20219,7 +20219,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20240,7 +20240,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20261,7 +20261,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20284,7 +20284,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20309,7 +20309,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20333,7 +20333,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20356,7 +20356,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20379,7 +20379,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20402,7 +20402,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20424,7 +20424,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20446,7 +20446,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20468,7 +20468,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20489,7 +20489,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20510,7 +20510,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20531,7 +20531,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20554,7 +20554,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20579,7 +20579,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20603,7 +20603,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20626,7 +20626,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20649,7 +20649,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20672,7 +20672,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20694,7 +20694,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20716,7 +20716,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20738,7 +20738,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20759,7 +20759,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20780,7 +20780,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20801,7 +20801,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20824,7 +20824,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20849,7 +20849,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20873,7 +20873,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20896,7 +20896,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20919,7 +20919,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20942,7 +20942,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20964,7 +20964,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -20986,7 +20986,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21008,7 +21008,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21029,7 +21029,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21050,7 +21050,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21071,7 +21071,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21094,7 +21094,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21119,7 +21119,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21143,7 +21143,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21166,7 +21166,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21189,7 +21189,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21212,7 +21212,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21234,7 +21234,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21256,7 +21256,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21278,7 +21278,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21299,7 +21299,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21320,7 +21320,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21341,7 +21341,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21364,7 +21364,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21389,7 +21389,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21413,7 +21413,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21436,7 +21436,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21459,7 +21459,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21482,7 +21482,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21504,7 +21504,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21526,7 +21526,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21548,7 +21548,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21569,7 +21569,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21590,7 +21590,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21611,7 +21611,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21634,7 +21634,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21659,7 +21659,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21683,7 +21683,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21706,7 +21706,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21729,7 +21729,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21752,7 +21752,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21774,7 +21774,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21796,7 +21796,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21818,7 +21818,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21839,7 +21839,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21860,7 +21860,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21881,7 +21881,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21904,7 +21904,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21929,7 +21929,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21953,7 +21953,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21976,7 +21976,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -21999,7 +21999,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22022,7 +22022,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22044,7 +22044,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22066,7 +22066,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22088,7 +22088,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22109,7 +22109,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22130,7 +22130,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22151,7 +22151,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22174,7 +22174,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22199,7 +22199,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22223,7 +22223,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22246,7 +22246,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22269,7 +22269,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22292,7 +22292,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22314,7 +22314,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22336,7 +22336,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22358,7 +22358,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22379,7 +22379,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22400,7 +22400,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22421,7 +22421,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22444,7 +22444,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22469,7 +22469,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22493,7 +22493,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22516,7 +22516,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22539,7 +22539,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22562,7 +22562,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22584,7 +22584,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22606,7 +22606,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22628,7 +22628,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22649,7 +22649,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22670,7 +22670,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22691,7 +22691,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22714,7 +22714,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22739,7 +22739,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22763,7 +22763,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22786,7 +22786,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22809,7 +22809,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22832,7 +22832,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22854,7 +22854,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22876,7 +22876,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22898,7 +22898,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22919,7 +22919,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22940,7 +22940,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22961,7 +22961,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -22984,7 +22984,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23009,7 +23009,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23033,7 +23033,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23056,7 +23056,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23079,7 +23079,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23102,7 +23102,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23124,7 +23124,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23146,7 +23146,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23168,7 +23168,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23189,7 +23189,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23210,7 +23210,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23231,7 +23231,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23254,7 +23254,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23279,7 +23279,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23303,7 +23303,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23326,7 +23326,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23349,7 +23349,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23372,7 +23372,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23394,7 +23394,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23416,7 +23416,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23438,7 +23438,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23459,7 +23459,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23480,7 +23480,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23501,7 +23501,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23524,7 +23524,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23549,7 +23549,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23573,7 +23573,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23596,7 +23596,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23619,7 +23619,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23642,7 +23642,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23664,7 +23664,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23686,7 +23686,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23708,7 +23708,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23729,7 +23729,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23750,7 +23750,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23771,7 +23771,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23794,7 +23794,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23819,7 +23819,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23843,7 +23843,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23866,7 +23866,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23889,7 +23889,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23912,7 +23912,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23934,7 +23934,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23956,7 +23956,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23978,7 +23978,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -23999,7 +23999,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24020,7 +24020,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24041,7 +24041,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24064,7 +24064,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24089,7 +24089,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24113,7 +24113,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24136,7 +24136,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24159,7 +24159,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24182,7 +24182,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24204,7 +24204,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24226,7 +24226,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24248,7 +24248,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24269,7 +24269,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24290,7 +24290,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24311,7 +24311,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24334,7 +24334,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24359,7 +24359,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24383,7 +24383,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24406,7 +24406,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24429,7 +24429,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24452,7 +24452,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24474,7 +24474,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24496,7 +24496,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24518,7 +24518,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24539,7 +24539,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24560,7 +24560,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24581,7 +24581,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24604,7 +24604,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24629,7 +24629,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24653,7 +24653,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24676,7 +24676,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24699,7 +24699,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24722,7 +24722,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24744,7 +24744,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24766,7 +24766,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24788,7 +24788,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24809,7 +24809,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24830,7 +24830,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24851,7 +24851,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24874,7 +24874,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24899,7 +24899,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24923,7 +24923,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24946,7 +24946,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24969,7 +24969,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -24992,7 +24992,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25014,7 +25014,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25036,7 +25036,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25058,7 +25058,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25079,7 +25079,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25100,7 +25100,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25121,7 +25121,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25144,7 +25144,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25169,7 +25169,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25193,7 +25193,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25216,7 +25216,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25239,7 +25239,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25262,7 +25262,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25284,7 +25284,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25306,7 +25306,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25328,7 +25328,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25349,7 +25349,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25370,7 +25370,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25391,7 +25391,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25414,7 +25414,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25439,7 +25439,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25463,7 +25463,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25486,7 +25486,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25509,7 +25509,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25532,7 +25532,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25554,7 +25554,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25576,7 +25576,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25598,7 +25598,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25619,7 +25619,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25640,7 +25640,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25661,7 +25661,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25684,7 +25684,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25709,7 +25709,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25733,7 +25733,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25756,7 +25756,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25779,7 +25779,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25802,7 +25802,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25824,7 +25824,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25846,7 +25846,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25868,7 +25868,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25889,7 +25889,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25910,7 +25910,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25931,7 +25931,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25954,7 +25954,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -25979,7 +25979,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26003,7 +26003,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26026,7 +26026,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26049,7 +26049,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26072,7 +26072,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26094,7 +26094,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26116,7 +26116,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26138,7 +26138,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26159,7 +26159,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26180,7 +26180,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26201,7 +26201,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26224,7 +26224,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26249,7 +26249,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26273,7 +26273,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26296,7 +26296,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26319,7 +26319,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26342,7 +26342,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26364,7 +26364,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26386,7 +26386,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26408,7 +26408,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26429,7 +26429,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26450,7 +26450,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26471,7 +26471,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26494,7 +26494,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26519,7 +26519,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26543,7 +26543,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26566,7 +26566,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26589,7 +26589,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26612,7 +26612,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26634,7 +26634,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26656,7 +26656,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26678,7 +26678,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26699,7 +26699,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26720,7 +26720,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26741,7 +26741,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26764,7 +26764,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26789,7 +26789,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26813,7 +26813,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26836,7 +26836,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26859,7 +26859,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26882,7 +26882,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26904,7 +26904,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26926,7 +26926,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26948,7 +26948,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26969,7 +26969,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -26990,7 +26990,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27011,7 +27011,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27034,7 +27034,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27059,7 +27059,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27083,7 +27083,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27106,7 +27106,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27129,7 +27129,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27152,7 +27152,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27174,7 +27174,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27196,7 +27196,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27218,7 +27218,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27239,7 +27239,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27260,7 +27260,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27281,7 +27281,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27304,7 +27304,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27329,7 +27329,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27353,7 +27353,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27376,7 +27376,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27399,7 +27399,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27422,7 +27422,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27444,7 +27444,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27466,7 +27466,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27488,7 +27488,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27509,7 +27509,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27530,7 +27530,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27551,7 +27551,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27574,7 +27574,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27599,7 +27599,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27623,7 +27623,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27646,7 +27646,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27669,7 +27669,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27692,7 +27692,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27714,7 +27714,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27736,7 +27736,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27758,7 +27758,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27779,7 +27779,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27800,7 +27800,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27821,7 +27821,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27844,7 +27844,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27869,7 +27869,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27893,7 +27893,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27916,7 +27916,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27939,7 +27939,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27962,7 +27962,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -27984,7 +27984,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28006,7 +28006,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28028,7 +28028,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28049,7 +28049,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28070,7 +28070,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28091,7 +28091,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28114,7 +28114,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28139,7 +28139,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28163,7 +28163,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28186,7 +28186,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28209,7 +28209,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28232,7 +28232,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28254,7 +28254,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28276,7 +28276,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28298,7 +28298,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28319,7 +28319,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28340,7 +28340,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28361,7 +28361,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28384,7 +28384,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28409,7 +28409,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28433,7 +28433,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28456,7 +28456,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28479,7 +28479,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28502,7 +28502,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28524,7 +28524,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28546,7 +28546,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28568,7 +28568,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28589,7 +28589,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28610,7 +28610,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28631,7 +28631,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28654,7 +28654,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28679,7 +28679,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28703,7 +28703,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28726,7 +28726,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28749,7 +28749,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28772,7 +28772,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28794,7 +28794,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28816,7 +28816,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28838,7 +28838,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28859,7 +28859,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28880,7 +28880,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28901,7 +28901,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28924,7 +28924,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28949,7 +28949,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28973,7 +28973,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -28996,7 +28996,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29019,7 +29019,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29042,7 +29042,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29064,7 +29064,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29086,7 +29086,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29108,7 +29108,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29129,7 +29129,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29150,7 +29150,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29171,7 +29171,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29194,7 +29194,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29219,7 +29219,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29243,7 +29243,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29266,7 +29266,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29289,7 +29289,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29312,7 +29312,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29334,7 +29334,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29356,7 +29356,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29378,7 +29378,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29399,7 +29399,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29420,7 +29420,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29441,7 +29441,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29464,7 +29464,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29489,7 +29489,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29513,7 +29513,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29536,7 +29536,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29559,7 +29559,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29582,7 +29582,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29604,7 +29604,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29626,7 +29626,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29648,7 +29648,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29669,7 +29669,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29690,7 +29690,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29711,7 +29711,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29734,7 +29734,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29759,7 +29759,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29783,7 +29783,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29806,7 +29806,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29829,7 +29829,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29852,7 +29852,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29874,7 +29874,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29896,7 +29896,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29918,7 +29918,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29939,7 +29939,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29960,7 +29960,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -29981,7 +29981,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30004,7 +30004,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30029,7 +30029,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30053,7 +30053,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30076,7 +30076,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30099,7 +30099,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30122,7 +30122,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30144,7 +30144,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30166,7 +30166,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30188,7 +30188,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30209,7 +30209,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30230,7 +30230,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30251,7 +30251,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30274,7 +30274,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30299,7 +30299,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30323,7 +30323,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30346,7 +30346,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30369,7 +30369,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30392,7 +30392,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30414,7 +30414,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30436,7 +30436,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30458,7 +30458,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30479,7 +30479,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30500,7 +30500,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30521,7 +30521,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30544,7 +30544,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30569,7 +30569,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30593,7 +30593,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30616,7 +30616,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30639,7 +30639,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30662,7 +30662,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30684,7 +30684,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30706,7 +30706,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30728,7 +30728,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30749,7 +30749,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30770,7 +30770,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30791,7 +30791,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30814,7 +30814,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30839,7 +30839,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30863,7 +30863,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30886,7 +30886,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30909,7 +30909,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30932,7 +30932,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30954,7 +30954,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30976,7 +30976,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -30998,7 +30998,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31019,7 +31019,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31040,7 +31040,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31061,7 +31061,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31084,7 +31084,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31109,7 +31109,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31133,7 +31133,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31156,7 +31156,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31179,7 +31179,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31202,7 +31202,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31224,7 +31224,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31246,7 +31246,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31268,7 +31268,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31289,7 +31289,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31310,7 +31310,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31331,7 +31331,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31354,7 +31354,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31379,7 +31379,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31403,7 +31403,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31426,7 +31426,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31449,7 +31449,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31472,7 +31472,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31494,7 +31494,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31516,7 +31516,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31538,7 +31538,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31559,7 +31559,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31580,7 +31580,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31601,7 +31601,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31624,7 +31624,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31649,7 +31649,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31673,7 +31673,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31696,7 +31696,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31719,7 +31719,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31742,7 +31742,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31764,7 +31764,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31786,7 +31786,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31808,7 +31808,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31829,7 +31829,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31850,7 +31850,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31871,7 +31871,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31894,7 +31894,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31919,7 +31919,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31943,7 +31943,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31966,7 +31966,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -31989,7 +31989,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32012,7 +32012,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32034,7 +32034,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32056,7 +32056,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32078,7 +32078,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32099,7 +32099,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32120,7 +32120,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32141,7 +32141,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32164,7 +32164,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32189,7 +32189,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32213,7 +32213,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32236,7 +32236,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32259,7 +32259,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32282,7 +32282,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32304,7 +32304,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32326,7 +32326,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32348,7 +32348,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32369,7 +32369,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32390,7 +32390,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32411,7 +32411,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32434,7 +32434,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32459,7 +32459,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32483,7 +32483,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32506,7 +32506,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32529,7 +32529,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32552,7 +32552,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32574,7 +32574,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32596,7 +32596,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32618,7 +32618,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32639,7 +32639,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32660,7 +32660,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32681,7 +32681,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32704,7 +32704,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32729,7 +32729,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32753,7 +32753,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32776,7 +32776,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32799,7 +32799,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32822,7 +32822,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32844,7 +32844,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32866,7 +32866,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32888,7 +32888,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32909,7 +32909,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32930,7 +32930,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32951,7 +32951,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32974,7 +32974,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -32999,7 +32999,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33023,7 +33023,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33046,7 +33046,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33069,7 +33069,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33092,7 +33092,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33114,7 +33114,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33136,7 +33136,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33158,7 +33158,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33179,7 +33179,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33200,7 +33200,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33221,7 +33221,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33244,7 +33244,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33269,7 +33269,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33293,7 +33293,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33316,7 +33316,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33339,7 +33339,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33362,7 +33362,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33384,7 +33384,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33406,7 +33406,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33428,7 +33428,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33449,7 +33449,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33470,7 +33470,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33491,7 +33491,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33514,7 +33514,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33539,7 +33539,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33563,7 +33563,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33586,7 +33586,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33609,7 +33609,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33632,7 +33632,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33654,7 +33654,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33676,7 +33676,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33698,7 +33698,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33719,7 +33719,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33740,7 +33740,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33761,7 +33761,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33784,7 +33784,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33809,7 +33809,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33833,7 +33833,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33856,7 +33856,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33879,7 +33879,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33902,7 +33902,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33924,7 +33924,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33946,7 +33946,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33968,7 +33968,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -33989,7 +33989,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34010,7 +34010,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34031,7 +34031,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34054,7 +34054,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34079,7 +34079,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34103,7 +34103,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34126,7 +34126,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34149,7 +34149,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34172,7 +34172,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34194,7 +34194,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34216,7 +34216,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34238,7 +34238,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34259,7 +34259,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34280,7 +34280,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34301,7 +34301,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34324,7 +34324,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34349,7 +34349,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34373,7 +34373,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34396,7 +34396,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34419,7 +34419,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34442,7 +34442,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34464,7 +34464,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34486,7 +34486,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34508,7 +34508,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34529,7 +34529,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34550,7 +34550,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34571,7 +34571,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34594,7 +34594,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34619,7 +34619,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34643,7 +34643,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34666,7 +34666,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34689,7 +34689,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34712,7 +34712,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34734,7 +34734,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34756,7 +34756,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34778,7 +34778,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34799,7 +34799,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34820,7 +34820,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34841,7 +34841,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34864,7 +34864,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34889,7 +34889,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34913,7 +34913,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34936,7 +34936,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34959,7 +34959,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -34982,7 +34982,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35004,7 +35004,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35026,7 +35026,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35048,7 +35048,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35069,7 +35069,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35090,7 +35090,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35111,7 +35111,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35134,7 +35134,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35159,7 +35159,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35183,7 +35183,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35206,7 +35206,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35229,7 +35229,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35252,7 +35252,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35274,7 +35274,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35296,7 +35296,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35318,7 +35318,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35339,7 +35339,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35360,7 +35360,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35381,7 +35381,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35404,7 +35404,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35429,7 +35429,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35453,7 +35453,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35476,7 +35476,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35499,7 +35499,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35522,7 +35522,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35544,7 +35544,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35566,7 +35566,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35588,7 +35588,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35609,7 +35609,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35630,7 +35630,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35651,7 +35651,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35674,7 +35674,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35699,7 +35699,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35723,7 +35723,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35746,7 +35746,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35769,7 +35769,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35792,7 +35792,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35814,7 +35814,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35836,7 +35836,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35858,7 +35858,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35879,7 +35879,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35900,7 +35900,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35921,7 +35921,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35944,7 +35944,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35969,7 +35969,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -35993,7 +35993,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36016,7 +36016,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36039,7 +36039,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36062,7 +36062,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36084,7 +36084,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36106,7 +36106,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36128,7 +36128,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36149,7 +36149,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36170,7 +36170,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36191,7 +36191,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36214,7 +36214,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36239,7 +36239,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36263,7 +36263,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36286,7 +36286,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36309,7 +36309,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36332,7 +36332,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36354,7 +36354,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36376,7 +36376,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36398,7 +36398,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36419,7 +36419,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36440,7 +36440,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36461,7 +36461,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36484,7 +36484,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36509,7 +36509,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36533,7 +36533,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36556,7 +36556,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36579,7 +36579,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36602,7 +36602,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36624,7 +36624,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36646,7 +36646,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36668,7 +36668,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36689,7 +36689,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36710,7 +36710,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36731,7 +36731,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36754,7 +36754,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36779,7 +36779,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36803,7 +36803,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36826,7 +36826,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36849,7 +36849,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36872,7 +36872,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36894,7 +36894,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36916,7 +36916,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36938,7 +36938,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36959,7 +36959,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -36980,7 +36980,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37001,7 +37001,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37024,7 +37024,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37049,7 +37049,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37073,7 +37073,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37096,7 +37096,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37119,7 +37119,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37142,7 +37142,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37164,7 +37164,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37186,7 +37186,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37208,7 +37208,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37229,7 +37229,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37250,7 +37250,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37271,7 +37271,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37294,7 +37294,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37319,7 +37319,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37343,7 +37343,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37366,7 +37366,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37389,7 +37389,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37412,7 +37412,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37434,7 +37434,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37456,7 +37456,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37478,7 +37478,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37499,7 +37499,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37520,7 +37520,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37541,7 +37541,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37564,7 +37564,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37589,7 +37589,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37613,7 +37613,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37636,7 +37636,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37659,7 +37659,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37682,7 +37682,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37704,7 +37704,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37726,7 +37726,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37748,7 +37748,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37769,7 +37769,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37790,7 +37790,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37811,7 +37811,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37834,7 +37834,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37859,7 +37859,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37883,7 +37883,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37906,7 +37906,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37929,7 +37929,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37952,7 +37952,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37974,7 +37974,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -37996,7 +37996,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38018,7 +38018,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38039,7 +38039,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38060,7 +38060,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38081,7 +38081,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38104,7 +38104,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38129,7 +38129,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38153,7 +38153,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38176,7 +38176,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38199,7 +38199,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38222,7 +38222,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38244,7 +38244,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38266,7 +38266,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38288,7 +38288,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38309,7 +38309,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38330,7 +38330,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38351,7 +38351,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38374,7 +38374,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38399,7 +38399,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38423,7 +38423,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38446,7 +38446,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38469,7 +38469,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38492,7 +38492,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38514,7 +38514,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38536,7 +38536,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38558,7 +38558,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38579,7 +38579,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38600,7 +38600,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38626,7 +38626,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38649,7 +38649,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38674,7 +38674,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38698,7 +38698,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38721,7 +38721,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38744,7 +38744,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38767,7 +38767,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38789,7 +38789,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38811,7 +38811,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38833,7 +38833,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38854,7 +38854,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38875,7 +38875,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38896,7 +38896,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38919,7 +38919,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38944,7 +38944,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38968,7 +38968,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -38991,7 +38991,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39014,7 +39014,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39037,7 +39037,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39059,7 +39059,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39081,7 +39081,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39103,7 +39103,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39124,7 +39124,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39145,7 +39145,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39166,7 +39166,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39189,7 +39189,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39214,7 +39214,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39238,7 +39238,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39261,7 +39261,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39284,7 +39284,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39307,7 +39307,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39329,7 +39329,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39351,7 +39351,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39373,7 +39373,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39394,7 +39394,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39415,7 +39415,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39436,7 +39436,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39459,7 +39459,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39484,7 +39484,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39508,7 +39508,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39531,7 +39531,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39554,7 +39554,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39577,7 +39577,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39599,7 +39599,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39621,7 +39621,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39643,7 +39643,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39664,7 +39664,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39685,7 +39685,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39706,7 +39706,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39729,7 +39729,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39754,7 +39754,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39778,7 +39778,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39801,7 +39801,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39824,7 +39824,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39847,7 +39847,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39869,7 +39869,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39891,7 +39891,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39913,7 +39913,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39934,7 +39934,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39955,7 +39955,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39976,7 +39976,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -39999,7 +39999,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40024,7 +40024,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40048,7 +40048,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40071,7 +40071,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40094,7 +40094,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40117,7 +40117,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40139,7 +40139,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40161,7 +40161,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40183,7 +40183,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40204,7 +40204,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40225,7 +40225,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40246,7 +40246,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40269,7 +40269,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40294,7 +40294,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40318,7 +40318,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40341,7 +40341,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40364,7 +40364,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40387,7 +40387,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40409,7 +40409,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40431,7 +40431,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40453,7 +40453,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40474,7 +40474,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40495,7 +40495,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40516,7 +40516,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40539,7 +40539,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40564,7 +40564,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40588,7 +40588,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40611,7 +40611,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40634,7 +40634,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40657,7 +40657,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40679,7 +40679,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40701,7 +40701,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40723,7 +40723,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40744,7 +40744,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40765,7 +40765,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40786,7 +40786,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40809,7 +40809,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40834,7 +40834,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40858,7 +40858,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40881,7 +40881,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40904,7 +40904,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40927,7 +40927,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40949,7 +40949,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40971,7 +40971,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -40993,7 +40993,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41014,7 +41014,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41035,7 +41035,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41056,7 +41056,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41079,7 +41079,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41104,7 +41104,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41128,7 +41128,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41151,7 +41151,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41174,7 +41174,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41197,7 +41197,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41219,7 +41219,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41241,7 +41241,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41263,7 +41263,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41284,7 +41284,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41305,7 +41305,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41326,7 +41326,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41349,7 +41349,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41374,7 +41374,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41398,7 +41398,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41421,7 +41421,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41444,7 +41444,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41467,7 +41467,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41489,7 +41489,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41511,7 +41511,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41533,7 +41533,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41554,7 +41554,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41575,7 +41575,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41596,7 +41596,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41619,7 +41619,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41644,7 +41644,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41668,7 +41668,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41691,7 +41691,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41714,7 +41714,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41737,7 +41737,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41759,7 +41759,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41781,7 +41781,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41803,7 +41803,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41824,7 +41824,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41845,7 +41845,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41866,7 +41866,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41889,7 +41889,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41914,7 +41914,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41938,7 +41938,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41961,7 +41961,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -41984,7 +41984,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42007,7 +42007,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42029,7 +42029,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42051,7 +42051,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42073,7 +42073,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42094,7 +42094,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42115,7 +42115,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42136,7 +42136,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42159,7 +42159,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42184,7 +42184,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42208,7 +42208,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42231,7 +42231,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42254,7 +42254,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42277,7 +42277,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42299,7 +42299,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42321,7 +42321,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42343,7 +42343,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42364,7 +42364,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42385,7 +42385,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42406,7 +42406,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42429,7 +42429,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42454,7 +42454,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42478,7 +42478,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42501,7 +42501,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42524,7 +42524,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42547,7 +42547,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42569,7 +42569,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42591,7 +42591,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42613,7 +42613,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42634,7 +42634,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42655,7 +42655,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42676,7 +42676,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42699,7 +42699,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42724,7 +42724,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42748,7 +42748,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42771,7 +42771,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42794,7 +42794,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42817,7 +42817,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42839,7 +42839,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42861,7 +42861,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42883,7 +42883,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42904,7 +42904,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42925,7 +42925,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42946,7 +42946,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42969,7 +42969,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -42994,7 +42994,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43018,7 +43018,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43041,7 +43041,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43064,7 +43064,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43087,7 +43087,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43109,7 +43109,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43131,7 +43131,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43153,7 +43153,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43174,7 +43174,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43195,7 +43195,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43216,7 +43216,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43239,7 +43239,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43264,7 +43264,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43288,7 +43288,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43311,7 +43311,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43334,7 +43334,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43357,7 +43357,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43379,7 +43379,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43401,7 +43401,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43423,7 +43423,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43444,7 +43444,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43465,7 +43465,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43486,7 +43486,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43509,7 +43509,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43534,7 +43534,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43558,7 +43558,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43581,7 +43581,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43604,7 +43604,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43627,7 +43627,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43649,7 +43649,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43671,7 +43671,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43693,7 +43693,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43714,7 +43714,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43735,7 +43735,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43756,7 +43756,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43779,7 +43779,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43804,7 +43804,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43828,7 +43828,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43851,7 +43851,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43874,7 +43874,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43897,7 +43897,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43919,7 +43919,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43941,7 +43941,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43963,7 +43963,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -43984,7 +43984,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44005,7 +44005,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44031,7 +44031,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44054,7 +44054,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44079,7 +44079,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44103,7 +44103,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44126,7 +44126,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44149,7 +44149,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44172,7 +44172,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44194,7 +44194,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44216,7 +44216,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44238,7 +44238,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44259,7 +44259,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44280,7 +44280,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44301,7 +44301,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44324,7 +44324,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44349,7 +44349,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44373,7 +44373,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44396,7 +44396,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44419,7 +44419,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44442,7 +44442,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44464,7 +44464,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44486,7 +44486,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44508,7 +44508,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44529,7 +44529,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44550,7 +44550,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44571,7 +44571,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44594,7 +44594,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44619,7 +44619,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44643,7 +44643,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44666,7 +44666,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44689,7 +44689,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44712,7 +44712,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44734,7 +44734,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44756,7 +44756,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44778,7 +44778,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44799,7 +44799,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44820,7 +44820,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44841,7 +44841,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44864,7 +44864,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44889,7 +44889,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44913,7 +44913,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44936,7 +44936,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44959,7 +44959,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -44982,7 +44982,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45004,7 +45004,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45026,7 +45026,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45048,7 +45048,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45069,7 +45069,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45090,7 +45090,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45111,7 +45111,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45134,7 +45134,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45159,7 +45159,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45183,7 +45183,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45206,7 +45206,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45229,7 +45229,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45252,7 +45252,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45274,7 +45274,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45296,7 +45296,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45318,7 +45318,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45339,7 +45339,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45360,7 +45360,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45381,7 +45381,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45404,7 +45404,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45429,7 +45429,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45453,7 +45453,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45476,7 +45476,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45499,7 +45499,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45522,7 +45522,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45544,7 +45544,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45566,7 +45566,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45588,7 +45588,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45609,7 +45609,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45630,7 +45630,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45651,7 +45651,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45674,7 +45674,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45699,7 +45699,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45723,7 +45723,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45746,7 +45746,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45769,7 +45769,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45792,7 +45792,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45814,7 +45814,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45836,7 +45836,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45858,7 +45858,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45879,7 +45879,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45900,7 +45900,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45921,7 +45921,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45944,7 +45944,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45969,7 +45969,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -45993,7 +45993,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46016,7 +46016,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46039,7 +46039,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46062,7 +46062,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46084,7 +46084,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46106,7 +46106,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46128,7 +46128,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46149,7 +46149,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46170,7 +46170,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46191,7 +46191,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46214,7 +46214,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46239,7 +46239,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46263,7 +46263,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46286,7 +46286,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46309,7 +46309,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46332,7 +46332,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46354,7 +46354,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46376,7 +46376,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46398,7 +46398,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46419,7 +46419,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46440,7 +46440,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46461,7 +46461,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46484,7 +46484,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46509,7 +46509,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46533,7 +46533,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46556,7 +46556,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46579,7 +46579,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46602,7 +46602,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46624,7 +46624,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46646,7 +46646,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46668,7 +46668,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46689,7 +46689,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46710,7 +46710,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46731,7 +46731,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46754,7 +46754,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46779,7 +46779,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46803,7 +46803,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46826,7 +46826,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46849,7 +46849,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46872,7 +46872,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46894,7 +46894,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46916,7 +46916,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46938,7 +46938,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46959,7 +46959,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -46980,7 +46980,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47001,7 +47001,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47024,7 +47024,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47049,7 +47049,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47073,7 +47073,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47096,7 +47096,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47119,7 +47119,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47142,7 +47142,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47164,7 +47164,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47186,7 +47186,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47208,7 +47208,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47229,7 +47229,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47250,7 +47250,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47271,7 +47271,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47294,7 +47294,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47319,7 +47319,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47343,7 +47343,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47366,7 +47366,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47389,7 +47389,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47412,7 +47412,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47434,7 +47434,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47456,7 +47456,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47478,7 +47478,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47499,7 +47499,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47520,7 +47520,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47541,7 +47541,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47564,7 +47564,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47589,7 +47589,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47613,7 +47613,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47636,7 +47636,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47659,7 +47659,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47682,7 +47682,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47704,7 +47704,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47726,7 +47726,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47748,7 +47748,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47769,7 +47769,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47790,7 +47790,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47811,7 +47811,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47834,7 +47834,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47859,7 +47859,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47883,7 +47883,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47906,7 +47906,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47929,7 +47929,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47952,7 +47952,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47974,7 +47974,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -47996,7 +47996,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48018,7 +48018,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48039,7 +48039,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48060,7 +48060,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48081,7 +48081,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48104,7 +48104,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48129,7 +48129,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48153,7 +48153,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48176,7 +48176,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48199,7 +48199,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48222,7 +48222,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48244,7 +48244,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48266,7 +48266,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48288,7 +48288,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48309,7 +48309,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48330,7 +48330,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48351,7 +48351,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48374,7 +48374,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48399,7 +48399,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48423,7 +48423,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48446,7 +48446,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48469,7 +48469,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48492,7 +48492,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48514,7 +48514,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48536,7 +48536,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48558,7 +48558,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48579,7 +48579,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48600,7 +48600,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48621,7 +48621,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48644,7 +48644,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48669,7 +48669,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48693,7 +48693,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48716,7 +48716,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48739,7 +48739,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48762,7 +48762,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48784,7 +48784,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48806,7 +48806,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48828,7 +48828,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48849,7 +48849,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48870,7 +48870,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48891,7 +48891,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48914,7 +48914,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48939,7 +48939,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48963,7 +48963,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -48986,7 +48986,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49009,7 +49009,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49032,7 +49032,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49054,7 +49054,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49076,7 +49076,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49098,7 +49098,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49119,7 +49119,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49140,7 +49140,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49161,7 +49161,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49184,7 +49184,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49209,7 +49209,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49233,7 +49233,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49256,7 +49256,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49279,7 +49279,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49302,7 +49302,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49324,7 +49324,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49346,7 +49346,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49368,7 +49368,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49389,7 +49389,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49410,7 +49410,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49431,7 +49431,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49454,7 +49454,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49479,7 +49479,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49503,7 +49503,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49526,7 +49526,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49549,7 +49549,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49572,7 +49572,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49594,7 +49594,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49616,7 +49616,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49638,7 +49638,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49659,7 +49659,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49680,7 +49680,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49701,7 +49701,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49724,7 +49724,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49749,7 +49749,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49773,7 +49773,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49796,7 +49796,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49819,7 +49819,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49842,7 +49842,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49864,7 +49864,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49886,7 +49886,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49908,7 +49908,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49929,7 +49929,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49950,7 +49950,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49971,7 +49971,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -49994,7 +49994,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50019,7 +50019,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50043,7 +50043,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50066,7 +50066,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50089,7 +50089,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50112,7 +50112,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50134,7 +50134,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50156,7 +50156,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50178,7 +50178,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50199,7 +50199,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50220,7 +50220,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50241,7 +50241,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50264,7 +50264,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50289,7 +50289,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50313,7 +50313,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50336,7 +50336,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50359,7 +50359,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50382,7 +50382,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50404,7 +50404,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50426,7 +50426,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50448,7 +50448,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50469,7 +50469,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50490,7 +50490,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50511,7 +50511,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50534,7 +50534,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50559,7 +50559,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50583,7 +50583,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50606,7 +50606,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50629,7 +50629,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50652,7 +50652,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50674,7 +50674,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50696,7 +50696,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50718,7 +50718,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50739,7 +50739,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50760,7 +50760,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50781,7 +50781,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50804,7 +50804,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50829,7 +50829,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50853,7 +50853,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50876,7 +50876,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50899,7 +50899,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50922,7 +50922,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50944,7 +50944,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50966,7 +50966,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -50988,7 +50988,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51009,7 +51009,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51030,7 +51030,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51051,7 +51051,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51074,7 +51074,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51099,7 +51099,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51123,7 +51123,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51146,7 +51146,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51169,7 +51169,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51192,7 +51192,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51214,7 +51214,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51236,7 +51236,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51258,7 +51258,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51279,7 +51279,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51300,7 +51300,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51321,7 +51321,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51344,7 +51344,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51369,7 +51369,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51393,7 +51393,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51416,7 +51416,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51439,7 +51439,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51462,7 +51462,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51484,7 +51484,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51506,7 +51506,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51528,7 +51528,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51549,7 +51549,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51570,7 +51570,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51591,7 +51591,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51614,7 +51614,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51639,7 +51639,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51663,7 +51663,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51686,7 +51686,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51709,7 +51709,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51732,7 +51732,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51754,7 +51754,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51776,7 +51776,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51798,7 +51798,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51819,7 +51819,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51840,7 +51840,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51861,7 +51861,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51884,7 +51884,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51909,7 +51909,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51933,7 +51933,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51956,7 +51956,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -51979,7 +51979,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52002,7 +52002,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52024,7 +52024,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52046,7 +52046,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52068,7 +52068,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52089,7 +52089,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52110,7 +52110,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52131,7 +52131,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52154,7 +52154,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52179,7 +52179,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52203,7 +52203,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52226,7 +52226,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52249,7 +52249,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52272,7 +52272,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52294,7 +52294,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52316,7 +52316,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52338,7 +52338,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52359,7 +52359,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52380,7 +52380,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52401,7 +52401,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52424,7 +52424,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52449,7 +52449,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52473,7 +52473,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52496,7 +52496,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52519,7 +52519,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52542,7 +52542,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52564,7 +52564,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52586,7 +52586,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52608,7 +52608,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52629,7 +52629,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52650,7 +52650,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52671,7 +52671,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52694,7 +52694,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52719,7 +52719,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52743,7 +52743,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52766,7 +52766,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52789,7 +52789,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52812,7 +52812,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52834,7 +52834,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52856,7 +52856,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52878,7 +52878,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52899,7 +52899,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52920,7 +52920,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52941,7 +52941,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52964,7 +52964,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -52989,7 +52989,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53013,7 +53013,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53036,7 +53036,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53059,7 +53059,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53082,7 +53082,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53104,7 +53104,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53126,7 +53126,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53148,7 +53148,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53169,7 +53169,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53190,7 +53190,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53211,7 +53211,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53234,7 +53234,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53259,7 +53259,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53283,7 +53283,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53306,7 +53306,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53329,7 +53329,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53352,7 +53352,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53374,7 +53374,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53396,7 +53396,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53418,7 +53418,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53439,7 +53439,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53460,7 +53460,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53481,7 +53481,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53504,7 +53504,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53529,7 +53529,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53553,7 +53553,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53576,7 +53576,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53599,7 +53599,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53622,7 +53622,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53644,7 +53644,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53666,7 +53666,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53688,7 +53688,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53709,7 +53709,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53730,7 +53730,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53751,7 +53751,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53774,7 +53774,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53799,7 +53799,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53823,7 +53823,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53846,7 +53846,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53869,7 +53869,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53892,7 +53892,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53914,7 +53914,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53936,7 +53936,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53958,7 +53958,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -53979,7 +53979,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54000,7 +54000,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54021,7 +54021,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54044,7 +54044,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54069,7 +54069,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54093,7 +54093,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54116,7 +54116,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54139,7 +54139,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54162,7 +54162,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54184,7 +54184,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54206,7 +54206,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54228,7 +54228,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54249,7 +54249,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54270,7 +54270,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54291,7 +54291,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54314,7 +54314,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54339,7 +54339,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54363,7 +54363,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54386,7 +54386,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54409,7 +54409,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54432,7 +54432,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54454,7 +54454,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54476,7 +54476,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54498,7 +54498,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54519,7 +54519,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54540,7 +54540,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54561,7 +54561,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54584,7 +54584,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54609,7 +54609,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54633,7 +54633,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54656,7 +54656,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54679,7 +54679,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54702,7 +54702,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54724,7 +54724,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54746,7 +54746,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54768,7 +54768,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54789,7 +54789,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54810,7 +54810,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54831,7 +54831,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54854,7 +54854,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54879,7 +54879,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54903,7 +54903,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54926,7 +54926,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54949,7 +54949,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54972,7 +54972,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -54994,7 +54994,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55016,7 +55016,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55038,7 +55038,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55059,7 +55059,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55080,7 +55080,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55101,7 +55101,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55124,7 +55124,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55149,7 +55149,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55173,7 +55173,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55196,7 +55196,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55219,7 +55219,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55242,7 +55242,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55264,7 +55264,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55286,7 +55286,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55308,7 +55308,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55329,7 +55329,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55350,7 +55350,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55371,7 +55371,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55394,7 +55394,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55419,7 +55419,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55443,7 +55443,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55466,7 +55466,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55489,7 +55489,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55512,7 +55512,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55534,7 +55534,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55556,7 +55556,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55578,7 +55578,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55599,7 +55599,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55620,7 +55620,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55641,7 +55641,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55664,7 +55664,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55689,7 +55689,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55713,7 +55713,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55736,7 +55736,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55759,7 +55759,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55782,7 +55782,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55804,7 +55804,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55826,7 +55826,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55848,7 +55848,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55869,7 +55869,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55890,7 +55890,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55911,7 +55911,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55934,7 +55934,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55959,7 +55959,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -55983,7 +55983,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56006,7 +56006,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56029,7 +56029,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56052,7 +56052,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56074,7 +56074,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56096,7 +56096,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56118,7 +56118,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56139,7 +56139,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56160,7 +56160,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56181,7 +56181,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56204,7 +56204,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56229,7 +56229,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56253,7 +56253,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56276,7 +56276,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56299,7 +56299,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56322,7 +56322,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56344,7 +56344,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56366,7 +56366,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56388,7 +56388,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56409,7 +56409,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56430,7 +56430,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56451,7 +56451,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56474,7 +56474,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56499,7 +56499,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56523,7 +56523,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56546,7 +56546,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56569,7 +56569,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56592,7 +56592,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56614,7 +56614,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56636,7 +56636,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56658,7 +56658,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56679,7 +56679,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56700,7 +56700,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56721,7 +56721,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56744,7 +56744,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56769,7 +56769,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56793,7 +56793,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56816,7 +56816,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56839,7 +56839,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56862,7 +56862,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56884,7 +56884,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56906,7 +56906,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56928,7 +56928,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56949,7 +56949,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56970,7 +56970,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -56991,7 +56991,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57014,7 +57014,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57039,7 +57039,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57063,7 +57063,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57086,7 +57086,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57109,7 +57109,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57132,7 +57132,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57154,7 +57154,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57176,7 +57176,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57198,7 +57198,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57219,7 +57219,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57240,7 +57240,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57261,7 +57261,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57284,7 +57284,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57309,7 +57309,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57333,7 +57333,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57356,7 +57356,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57379,7 +57379,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57402,7 +57402,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57424,7 +57424,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57446,7 +57446,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57468,7 +57468,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57489,7 +57489,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57510,7 +57510,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57531,7 +57531,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57554,7 +57554,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57579,7 +57579,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57603,7 +57603,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57626,7 +57626,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57649,7 +57649,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57672,7 +57672,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57694,7 +57694,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57716,7 +57716,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57738,7 +57738,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57759,7 +57759,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57780,7 +57780,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57801,7 +57801,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57824,7 +57824,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57849,7 +57849,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57873,7 +57873,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57896,7 +57896,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57919,7 +57919,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57942,7 +57942,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57964,7 +57964,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -57986,7 +57986,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58008,7 +58008,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58029,7 +58029,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58050,7 +58050,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58071,7 +58071,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58094,7 +58094,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58119,7 +58119,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58143,7 +58143,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58166,7 +58166,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58189,7 +58189,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58212,7 +58212,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58234,7 +58234,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58256,7 +58256,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58278,7 +58278,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58299,7 +58299,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58320,7 +58320,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58341,7 +58341,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58364,7 +58364,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58389,7 +58389,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58413,7 +58413,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58436,7 +58436,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58459,7 +58459,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58482,7 +58482,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58504,7 +58504,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58526,7 +58526,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58548,7 +58548,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58569,7 +58569,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58590,7 +58590,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58611,7 +58611,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58634,7 +58634,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58659,7 +58659,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58683,7 +58683,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58706,7 +58706,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58729,7 +58729,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58752,7 +58752,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58774,7 +58774,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58796,7 +58796,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58818,7 +58818,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58839,7 +58839,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58860,7 +58860,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58881,7 +58881,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58904,7 +58904,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58929,7 +58929,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58953,7 +58953,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58976,7 +58976,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -58999,7 +58999,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59022,7 +59022,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59044,7 +59044,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59066,7 +59066,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59088,7 +59088,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59109,7 +59109,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59130,7 +59130,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59151,7 +59151,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59174,7 +59174,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59199,7 +59199,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59223,7 +59223,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59246,7 +59246,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59269,7 +59269,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59292,7 +59292,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59314,7 +59314,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59336,7 +59336,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59358,7 +59358,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59379,7 +59379,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59400,7 +59400,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59421,7 +59421,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59444,7 +59444,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59469,7 +59469,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59493,7 +59493,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59516,7 +59516,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59539,7 +59539,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59562,7 +59562,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59584,7 +59584,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59606,7 +59606,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59628,7 +59628,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59649,7 +59649,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59670,7 +59670,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59691,7 +59691,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59714,7 +59714,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59739,7 +59739,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59763,7 +59763,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59786,7 +59786,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59809,7 +59809,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59832,7 +59832,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59854,7 +59854,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59876,7 +59876,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59898,7 +59898,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59919,7 +59919,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59940,7 +59940,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59961,7 +59961,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -59984,7 +59984,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60009,7 +60009,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60033,7 +60033,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60056,7 +60056,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60079,7 +60079,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60102,7 +60102,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60124,7 +60124,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60146,7 +60146,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60168,7 +60168,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60189,7 +60189,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60210,7 +60210,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60231,7 +60231,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60254,7 +60254,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60279,7 +60279,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60303,7 +60303,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60326,7 +60326,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60349,7 +60349,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60372,7 +60372,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60394,7 +60394,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60416,7 +60416,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60438,7 +60438,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60459,7 +60459,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60480,7 +60480,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60501,7 +60501,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60524,7 +60524,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60549,7 +60549,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60573,7 +60573,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60596,7 +60596,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60619,7 +60619,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60642,7 +60642,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60664,7 +60664,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60686,7 +60686,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60708,7 +60708,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60729,7 +60729,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60750,7 +60750,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60771,7 +60771,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60794,7 +60794,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60819,7 +60819,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60843,7 +60843,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60866,7 +60866,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60889,7 +60889,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60912,7 +60912,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60934,7 +60934,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60956,7 +60956,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60978,7 +60978,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -60999,7 +60999,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61020,7 +61020,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61041,7 +61041,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61064,7 +61064,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61089,7 +61089,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61113,7 +61113,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61136,7 +61136,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61159,7 +61159,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61182,7 +61182,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61204,7 +61204,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61226,7 +61226,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61248,7 +61248,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61269,7 +61269,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61290,7 +61290,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61311,7 +61311,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61334,7 +61334,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61359,7 +61359,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61383,7 +61383,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61406,7 +61406,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61429,7 +61429,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61452,7 +61452,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61474,7 +61474,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61496,7 +61496,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61518,7 +61518,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61539,7 +61539,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61560,7 +61560,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61581,7 +61581,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61604,7 +61604,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61629,7 +61629,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61653,7 +61653,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61676,7 +61676,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61699,7 +61699,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61722,7 +61722,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61744,7 +61744,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61766,7 +61766,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61788,7 +61788,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61809,7 +61809,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61830,7 +61830,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61851,7 +61851,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61874,7 +61874,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61899,7 +61899,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61923,7 +61923,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61946,7 +61946,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61969,7 +61969,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -61992,7 +61992,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62014,7 +62014,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62036,7 +62036,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62058,7 +62058,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62079,7 +62079,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62100,7 +62100,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62121,7 +62121,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62144,7 +62144,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62169,7 +62169,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62193,7 +62193,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62216,7 +62216,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62239,7 +62239,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62262,7 +62262,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62284,7 +62284,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62306,7 +62306,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62328,7 +62328,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62349,7 +62349,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62370,7 +62370,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62391,7 +62391,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62414,7 +62414,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62439,7 +62439,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62463,7 +62463,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62486,7 +62486,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62509,7 +62509,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62532,7 +62532,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62554,7 +62554,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62576,7 +62576,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62598,7 +62598,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62619,7 +62619,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62640,7 +62640,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62661,7 +62661,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62684,7 +62684,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62709,7 +62709,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62733,7 +62733,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62756,7 +62756,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62779,7 +62779,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62802,7 +62802,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62824,7 +62824,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62846,7 +62846,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62868,7 +62868,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62889,7 +62889,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62910,7 +62910,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62931,7 +62931,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62954,7 +62954,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -62979,7 +62979,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63003,7 +63003,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63026,7 +63026,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63049,7 +63049,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63072,7 +63072,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63094,7 +63094,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63116,7 +63116,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63138,7 +63138,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63159,7 +63159,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63180,7 +63180,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63201,7 +63201,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63224,7 +63224,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63249,7 +63249,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63273,7 +63273,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63296,7 +63296,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63319,7 +63319,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63342,7 +63342,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63364,7 +63364,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63386,7 +63386,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63408,7 +63408,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63429,7 +63429,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63450,7 +63450,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63471,7 +63471,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63494,7 +63494,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63519,7 +63519,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63543,7 +63543,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63566,7 +63566,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63589,7 +63589,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63612,7 +63612,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63634,7 +63634,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63656,7 +63656,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63678,7 +63678,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63699,7 +63699,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63720,7 +63720,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63741,7 +63741,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63764,7 +63764,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63789,7 +63789,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63813,7 +63813,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63836,7 +63836,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63859,7 +63859,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63882,7 +63882,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63904,7 +63904,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63926,7 +63926,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63948,7 +63948,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63969,7 +63969,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -63990,7 +63990,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64011,7 +64011,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64034,7 +64034,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64059,7 +64059,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64083,7 +64083,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64106,7 +64106,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64129,7 +64129,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64152,7 +64152,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64174,7 +64174,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64196,7 +64196,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64218,7 +64218,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64239,7 +64239,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64260,7 +64260,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64281,7 +64281,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64304,7 +64304,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64329,7 +64329,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64353,7 +64353,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64376,7 +64376,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64399,7 +64399,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64422,7 +64422,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64444,7 +64444,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64466,7 +64466,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64488,7 +64488,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64509,7 +64509,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64530,7 +64530,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64551,7 +64551,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64574,7 +64574,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64599,7 +64599,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64623,7 +64623,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64646,7 +64646,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64669,7 +64669,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64692,7 +64692,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64714,7 +64714,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64736,7 +64736,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64758,7 +64758,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64779,7 +64779,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64800,7 +64800,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64821,7 +64821,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64844,7 +64844,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64869,7 +64869,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64893,7 +64893,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64916,7 +64916,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64939,7 +64939,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64962,7 +64962,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -64984,7 +64984,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65006,7 +65006,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65028,7 +65028,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65049,7 +65049,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65070,7 +65070,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65091,7 +65091,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65114,7 +65114,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65139,7 +65139,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65163,7 +65163,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65186,7 +65186,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65209,7 +65209,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65232,7 +65232,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65254,7 +65254,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65276,7 +65276,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65298,7 +65298,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65319,7 +65319,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65340,7 +65340,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65361,7 +65361,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65384,7 +65384,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65409,7 +65409,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65433,7 +65433,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65456,7 +65456,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65479,7 +65479,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65502,7 +65502,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65524,7 +65524,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65546,7 +65546,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65568,7 +65568,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65589,7 +65589,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65610,7 +65610,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65631,7 +65631,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65654,7 +65654,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65679,7 +65679,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65703,7 +65703,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65726,7 +65726,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65749,7 +65749,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65772,7 +65772,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65794,7 +65794,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65816,7 +65816,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65838,7 +65838,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65859,7 +65859,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65880,7 +65880,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65901,7 +65901,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65924,7 +65924,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65949,7 +65949,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65973,7 +65973,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -65996,7 +65996,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66019,7 +66019,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66042,7 +66042,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66064,7 +66064,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66086,7 +66086,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66108,7 +66108,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66129,7 +66129,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66150,7 +66150,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66171,7 +66171,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66194,7 +66194,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66219,7 +66219,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66243,7 +66243,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66266,7 +66266,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66289,7 +66289,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66312,7 +66312,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66334,7 +66334,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66356,7 +66356,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66378,7 +66378,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66399,7 +66399,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66420,7 +66420,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66441,7 +66441,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66464,7 +66464,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66489,7 +66489,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66513,7 +66513,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66536,7 +66536,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66559,7 +66559,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66582,7 +66582,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66604,7 +66604,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66626,7 +66626,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66648,7 +66648,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66669,7 +66669,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66690,7 +66690,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66711,7 +66711,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66737,7 +66737,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66760,7 +66760,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66785,7 +66785,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66809,7 +66809,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66832,7 +66832,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66855,7 +66855,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66878,7 +66878,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66900,7 +66900,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66922,7 +66922,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66944,7 +66944,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66965,7 +66965,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -66986,7 +66986,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67007,7 +67007,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67030,7 +67030,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67055,7 +67055,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67079,7 +67079,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67102,7 +67102,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67125,7 +67125,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67148,7 +67148,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67170,7 +67170,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67192,7 +67192,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67214,7 +67214,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67235,7 +67235,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67256,7 +67256,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67277,7 +67277,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67300,7 +67300,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67325,7 +67325,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67349,7 +67349,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67372,7 +67372,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67395,7 +67395,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67418,7 +67418,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67440,7 +67440,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67462,7 +67462,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67484,7 +67484,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67505,7 +67505,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67526,7 +67526,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67547,7 +67547,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67570,7 +67570,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67595,7 +67595,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67619,7 +67619,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67642,7 +67642,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67665,7 +67665,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67688,7 +67688,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67710,7 +67710,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67732,7 +67732,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67754,7 +67754,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67775,7 +67775,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67796,7 +67796,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67817,7 +67817,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67840,7 +67840,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67865,7 +67865,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67889,7 +67889,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67912,7 +67912,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67935,7 +67935,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67958,7 +67958,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -67980,7 +67980,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68002,7 +68002,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68024,7 +68024,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68045,7 +68045,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68066,7 +68066,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68087,7 +68087,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68110,7 +68110,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68135,7 +68135,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68159,7 +68159,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68182,7 +68182,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68205,7 +68205,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68228,7 +68228,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68250,7 +68250,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68272,7 +68272,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68294,7 +68294,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68315,7 +68315,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68336,7 +68336,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68357,7 +68357,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68380,7 +68380,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68405,7 +68405,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68429,7 +68429,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68452,7 +68452,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68475,7 +68475,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68498,7 +68498,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68520,7 +68520,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68542,7 +68542,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68564,7 +68564,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68585,7 +68585,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68606,7 +68606,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68627,7 +68627,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68650,7 +68650,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68675,7 +68675,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68699,7 +68699,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68722,7 +68722,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68745,7 +68745,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68768,7 +68768,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68790,7 +68790,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68812,7 +68812,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68834,7 +68834,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68855,7 +68855,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68876,7 +68876,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68897,7 +68897,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68920,7 +68920,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68945,7 +68945,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68969,7 +68969,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -68992,7 +68992,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69015,7 +69015,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69038,7 +69038,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69060,7 +69060,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69082,7 +69082,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69104,7 +69104,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69125,7 +69125,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69146,7 +69146,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69167,7 +69167,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69190,7 +69190,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69215,7 +69215,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69239,7 +69239,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69262,7 +69262,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69285,7 +69285,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69308,7 +69308,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69330,7 +69330,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69352,7 +69352,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69374,7 +69374,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69395,7 +69395,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69416,7 +69416,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69437,7 +69437,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69460,7 +69460,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69485,7 +69485,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69509,7 +69509,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69532,7 +69532,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69555,7 +69555,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69578,7 +69578,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69600,7 +69600,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69622,7 +69622,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69644,7 +69644,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69665,7 +69665,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69686,7 +69686,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69707,7 +69707,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69730,7 +69730,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69755,7 +69755,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69779,7 +69779,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69802,7 +69802,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69825,7 +69825,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69848,7 +69848,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69870,7 +69870,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69892,7 +69892,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69914,7 +69914,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69935,7 +69935,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69956,7 +69956,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -69977,7 +69977,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70000,7 +70000,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70025,7 +70025,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70049,7 +70049,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70072,7 +70072,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70095,7 +70095,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70118,7 +70118,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70140,7 +70140,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70162,7 +70162,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70184,7 +70184,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70205,7 +70205,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70226,7 +70226,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70247,7 +70247,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70270,7 +70270,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70295,7 +70295,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70319,7 +70319,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70342,7 +70342,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70365,7 +70365,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70388,7 +70388,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70410,7 +70410,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70432,7 +70432,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70454,7 +70454,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70475,7 +70475,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70496,7 +70496,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70517,7 +70517,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70540,7 +70540,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70565,7 +70565,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70589,7 +70589,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70612,7 +70612,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70635,7 +70635,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70658,7 +70658,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70680,7 +70680,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70702,7 +70702,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70724,7 +70724,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70745,7 +70745,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70766,7 +70766,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70787,7 +70787,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70810,7 +70810,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70835,7 +70835,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70859,7 +70859,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70882,7 +70882,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70905,7 +70905,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70928,7 +70928,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70950,7 +70950,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70972,7 +70972,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -70994,7 +70994,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71015,7 +71015,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71036,7 +71036,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71057,7 +71057,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71080,7 +71080,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71105,7 +71105,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71129,7 +71129,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71152,7 +71152,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71175,7 +71175,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71198,7 +71198,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71220,7 +71220,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71242,7 +71242,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71264,7 +71264,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71285,7 +71285,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71306,7 +71306,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71327,7 +71327,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71350,7 +71350,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71375,7 +71375,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71399,7 +71399,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71422,7 +71422,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71445,7 +71445,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71468,7 +71468,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71490,7 +71490,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71512,7 +71512,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71534,7 +71534,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71555,7 +71555,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71576,7 +71576,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71597,7 +71597,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71620,7 +71620,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71645,7 +71645,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71669,7 +71669,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71692,7 +71692,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71715,7 +71715,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71738,7 +71738,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71760,7 +71760,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71782,7 +71782,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71804,7 +71804,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71825,7 +71825,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71846,7 +71846,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71867,7 +71867,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71890,7 +71890,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71915,7 +71915,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71939,7 +71939,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71962,7 +71962,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -71985,7 +71985,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72008,7 +72008,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72030,7 +72030,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72052,7 +72052,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72074,7 +72074,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72095,7 +72095,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72116,7 +72116,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72137,7 +72137,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72160,7 +72160,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72185,7 +72185,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72209,7 +72209,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72232,7 +72232,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72255,7 +72255,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72278,7 +72278,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72300,7 +72300,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72322,7 +72322,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72344,7 +72344,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72365,7 +72365,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72386,7 +72386,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72407,7 +72407,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72430,7 +72430,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72455,7 +72455,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72479,7 +72479,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72502,7 +72502,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72525,7 +72525,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72548,7 +72548,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72570,7 +72570,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72592,7 +72592,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72614,7 +72614,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72635,7 +72635,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72656,7 +72656,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72677,7 +72677,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72700,7 +72700,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72725,7 +72725,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72749,7 +72749,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72772,7 +72772,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72795,7 +72795,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72818,7 +72818,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72840,7 +72840,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72862,7 +72862,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72884,7 +72884,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72905,7 +72905,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72926,7 +72926,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72947,7 +72947,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72970,7 +72970,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -72995,7 +72995,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73019,7 +73019,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73042,7 +73042,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73065,7 +73065,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73088,7 +73088,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73110,7 +73110,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73132,7 +73132,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73154,7 +73154,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73175,7 +73175,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73196,7 +73196,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73217,7 +73217,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73240,7 +73240,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73265,7 +73265,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73289,7 +73289,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73312,7 +73312,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73335,7 +73335,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73358,7 +73358,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73380,7 +73380,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73402,7 +73402,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73424,7 +73424,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73445,7 +73445,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73466,7 +73466,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73487,7 +73487,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73510,7 +73510,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73535,7 +73535,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73559,7 +73559,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73582,7 +73582,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73605,7 +73605,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73628,7 +73628,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73650,7 +73650,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73672,7 +73672,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73694,7 +73694,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73715,7 +73715,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73736,7 +73736,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73757,7 +73757,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73780,7 +73780,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73805,7 +73805,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73829,7 +73829,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73852,7 +73852,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73875,7 +73875,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73898,7 +73898,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73920,7 +73920,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73942,7 +73942,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73964,7 +73964,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -73985,7 +73985,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74006,7 +74006,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74027,7 +74027,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74050,7 +74050,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74075,7 +74075,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74099,7 +74099,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74122,7 +74122,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74145,7 +74145,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74168,7 +74168,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74190,7 +74190,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74212,7 +74212,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74234,7 +74234,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74255,7 +74255,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74276,7 +74276,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74297,7 +74297,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74320,7 +74320,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74345,7 +74345,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74369,7 +74369,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74392,7 +74392,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74415,7 +74415,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74438,7 +74438,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74460,7 +74460,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74482,7 +74482,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74504,7 +74504,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74525,7 +74525,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74546,7 +74546,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74567,7 +74567,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74590,7 +74590,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74615,7 +74615,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74639,7 +74639,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74662,7 +74662,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74685,7 +74685,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74708,7 +74708,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74730,7 +74730,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74752,7 +74752,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74774,7 +74774,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74795,7 +74795,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74816,7 +74816,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74837,7 +74837,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74860,7 +74860,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74885,7 +74885,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74909,7 +74909,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74932,7 +74932,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74955,7 +74955,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -74978,7 +74978,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75000,7 +75000,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75022,7 +75022,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75044,7 +75044,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75065,7 +75065,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75086,7 +75086,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75107,7 +75107,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75130,7 +75130,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75155,7 +75155,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75179,7 +75179,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75202,7 +75202,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75225,7 +75225,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75248,7 +75248,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75270,7 +75270,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75292,7 +75292,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75314,7 +75314,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75335,7 +75335,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75356,7 +75356,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75377,7 +75377,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75400,7 +75400,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75425,7 +75425,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75449,7 +75449,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75472,7 +75472,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75495,7 +75495,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75518,7 +75518,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75540,7 +75540,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75562,7 +75562,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75584,7 +75584,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75605,7 +75605,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75626,7 +75626,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75647,7 +75647,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75670,7 +75670,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75695,7 +75695,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75719,7 +75719,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75742,7 +75742,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75765,7 +75765,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75788,7 +75788,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75810,7 +75810,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75832,7 +75832,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75854,7 +75854,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75875,7 +75875,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75896,7 +75896,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75917,7 +75917,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75940,7 +75940,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75965,7 +75965,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -75989,7 +75989,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76012,7 +76012,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76035,7 +76035,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76058,7 +76058,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76080,7 +76080,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76102,7 +76102,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76124,7 +76124,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76145,7 +76145,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76166,7 +76166,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76187,7 +76187,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76210,7 +76210,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76235,7 +76235,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76259,7 +76259,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76282,7 +76282,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76305,7 +76305,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76328,7 +76328,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76350,7 +76350,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76372,7 +76372,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76394,7 +76394,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76415,7 +76415,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76436,7 +76436,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76457,7 +76457,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76480,7 +76480,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76505,7 +76505,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76529,7 +76529,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76552,7 +76552,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76575,7 +76575,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76598,7 +76598,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76620,7 +76620,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76642,7 +76642,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76664,7 +76664,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76685,7 +76685,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76706,7 +76706,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76727,7 +76727,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76750,7 +76750,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76775,7 +76775,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76799,7 +76799,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76822,7 +76822,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76845,7 +76845,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76868,7 +76868,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76890,7 +76890,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76912,7 +76912,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76934,7 +76934,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76955,7 +76955,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76976,7 +76976,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -76997,7 +76997,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77020,7 +77020,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77045,7 +77045,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77069,7 +77069,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77092,7 +77092,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77115,7 +77115,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77138,7 +77138,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77160,7 +77160,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77182,7 +77182,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77204,7 +77204,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77225,7 +77225,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77246,7 +77246,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77267,7 +77267,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77290,7 +77290,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77315,7 +77315,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77339,7 +77339,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77362,7 +77362,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77385,7 +77385,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77408,7 +77408,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77430,7 +77430,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77452,7 +77452,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77474,7 +77474,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77495,7 +77495,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77516,7 +77516,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77537,7 +77537,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77560,7 +77560,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77585,7 +77585,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77609,7 +77609,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77632,7 +77632,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77655,7 +77655,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77678,7 +77678,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77700,7 +77700,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77722,7 +77722,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77744,7 +77744,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77765,7 +77765,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77786,7 +77786,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77807,7 +77807,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77830,7 +77830,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77855,7 +77855,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77879,7 +77879,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77902,7 +77902,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77925,7 +77925,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77948,7 +77948,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77970,7 +77970,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -77992,7 +77992,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78014,7 +78014,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78035,7 +78035,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78056,7 +78056,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78077,7 +78077,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78100,7 +78100,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78125,7 +78125,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78149,7 +78149,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78172,7 +78172,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78195,7 +78195,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78218,7 +78218,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78240,7 +78240,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78262,7 +78262,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78284,7 +78284,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78305,7 +78305,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78326,7 +78326,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78347,7 +78347,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78370,7 +78370,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78395,7 +78395,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78419,7 +78419,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78442,7 +78442,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78465,7 +78465,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78488,7 +78488,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78510,7 +78510,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78532,7 +78532,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78554,7 +78554,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78575,7 +78575,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78596,7 +78596,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78617,7 +78617,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78640,7 +78640,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78665,7 +78665,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78689,7 +78689,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78712,7 +78712,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78735,7 +78735,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78758,7 +78758,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78780,7 +78780,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78802,7 +78802,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78824,7 +78824,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78845,7 +78845,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78866,7 +78866,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78887,7 +78887,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78910,7 +78910,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78935,7 +78935,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78959,7 +78959,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -78982,7 +78982,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79005,7 +79005,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79028,7 +79028,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79050,7 +79050,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79072,7 +79072,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79094,7 +79094,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79115,7 +79115,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79136,7 +79136,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79157,7 +79157,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79180,7 +79180,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79205,7 +79205,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79229,7 +79229,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79252,7 +79252,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79275,7 +79275,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79298,7 +79298,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79320,7 +79320,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79342,7 +79342,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79364,7 +79364,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79385,7 +79385,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79406,7 +79406,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79427,7 +79427,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79450,7 +79450,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79475,7 +79475,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79499,7 +79499,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79522,7 +79522,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79545,7 +79545,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79568,7 +79568,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79590,7 +79590,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79612,7 +79612,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79634,7 +79634,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79655,7 +79655,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79676,7 +79676,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79697,7 +79697,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79720,7 +79720,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79745,7 +79745,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79769,7 +79769,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79792,7 +79792,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79815,7 +79815,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79838,7 +79838,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79860,7 +79860,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79882,7 +79882,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79904,7 +79904,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79925,7 +79925,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79946,7 +79946,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79967,7 +79967,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -79990,7 +79990,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80015,7 +80015,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80039,7 +80039,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80062,7 +80062,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80085,7 +80085,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80108,7 +80108,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80130,7 +80130,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80152,7 +80152,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80174,7 +80174,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80195,7 +80195,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80216,7 +80216,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80237,7 +80237,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80260,7 +80260,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80285,7 +80285,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80309,7 +80309,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80332,7 +80332,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80355,7 +80355,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80378,7 +80378,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80400,7 +80400,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80422,7 +80422,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80444,7 +80444,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80465,7 +80465,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80486,7 +80486,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80507,7 +80507,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80530,7 +80530,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80555,7 +80555,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80579,7 +80579,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80602,7 +80602,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80625,7 +80625,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80648,7 +80648,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80670,7 +80670,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80692,7 +80692,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80714,7 +80714,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80735,7 +80735,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80756,7 +80756,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80777,7 +80777,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80800,7 +80800,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80825,7 +80825,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80849,7 +80849,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80872,7 +80872,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80895,7 +80895,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80918,7 +80918,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80940,7 +80940,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80962,7 +80962,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -80984,7 +80984,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81005,7 +81005,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81026,7 +81026,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81047,7 +81047,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81070,7 +81070,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81095,7 +81095,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81119,7 +81119,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81142,7 +81142,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81165,7 +81165,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81188,7 +81188,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81210,7 +81210,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81232,7 +81232,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81254,7 +81254,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81275,7 +81275,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81296,7 +81296,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81317,7 +81317,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81340,7 +81340,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81365,7 +81365,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81389,7 +81389,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81412,7 +81412,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81435,7 +81435,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81458,7 +81458,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81480,7 +81480,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81502,7 +81502,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81524,7 +81524,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81545,7 +81545,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81566,7 +81566,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81587,7 +81587,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81610,7 +81610,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81635,7 +81635,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81659,7 +81659,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81682,7 +81682,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81705,7 +81705,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81728,7 +81728,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81750,7 +81750,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81772,7 +81772,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81794,7 +81794,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81815,7 +81815,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81836,7 +81836,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81857,7 +81857,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81880,7 +81880,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81905,7 +81905,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81929,7 +81929,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81952,7 +81952,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81975,7 +81975,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -81998,7 +81998,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82020,7 +82020,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82042,7 +82042,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82064,7 +82064,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82085,7 +82085,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82106,7 +82106,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82127,7 +82127,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82150,7 +82150,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82175,7 +82175,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82199,7 +82199,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82222,7 +82222,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82245,7 +82245,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82268,7 +82268,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82290,7 +82290,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82312,7 +82312,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82334,7 +82334,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82355,7 +82355,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82376,7 +82376,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82397,7 +82397,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82420,7 +82420,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82445,7 +82445,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82469,7 +82469,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82492,7 +82492,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82515,7 +82515,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82538,7 +82538,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82560,7 +82560,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82582,7 +82582,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82604,7 +82604,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82625,7 +82625,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82646,7 +82646,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82667,7 +82667,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82690,7 +82690,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82715,7 +82715,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82739,7 +82739,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82762,7 +82762,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82785,7 +82785,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82808,7 +82808,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82830,7 +82830,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82852,7 +82852,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82874,7 +82874,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82895,7 +82895,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82916,7 +82916,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82937,7 +82937,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82960,7 +82960,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -82985,7 +82985,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83009,7 +83009,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83032,7 +83032,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83055,7 +83055,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83078,7 +83078,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83100,7 +83100,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83122,7 +83122,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83144,7 +83144,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83165,7 +83165,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83186,7 +83186,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83207,7 +83207,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83230,7 +83230,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83255,7 +83255,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83279,7 +83279,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83302,7 +83302,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83325,7 +83325,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83348,7 +83348,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83370,7 +83370,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83392,7 +83392,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83414,7 +83414,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83435,7 +83435,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83456,7 +83456,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83477,7 +83477,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83500,7 +83500,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83525,7 +83525,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83549,7 +83549,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83572,7 +83572,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83595,7 +83595,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83618,7 +83618,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83640,7 +83640,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83662,7 +83662,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83684,7 +83684,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83705,7 +83705,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83726,7 +83726,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83747,7 +83747,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83770,7 +83770,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83795,7 +83795,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83819,7 +83819,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83842,7 +83842,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83865,7 +83865,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83888,7 +83888,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83910,7 +83910,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83932,7 +83932,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83954,7 +83954,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83975,7 +83975,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -83996,7 +83996,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84017,7 +84017,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84040,7 +84040,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84065,7 +84065,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84089,7 +84089,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84112,7 +84112,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84135,7 +84135,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84158,7 +84158,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84180,7 +84180,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84202,7 +84202,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84224,7 +84224,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84245,7 +84245,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84266,7 +84266,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84287,7 +84287,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84310,7 +84310,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84335,7 +84335,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84359,7 +84359,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84382,7 +84382,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84405,7 +84405,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84428,7 +84428,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84450,7 +84450,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84472,7 +84472,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84494,7 +84494,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84515,7 +84515,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84536,7 +84536,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84557,7 +84557,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84580,7 +84580,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84605,7 +84605,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84629,7 +84629,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84652,7 +84652,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84675,7 +84675,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84698,7 +84698,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84720,7 +84720,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84742,7 +84742,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84764,7 +84764,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84785,7 +84785,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84806,7 +84806,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84827,7 +84827,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84850,7 +84850,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84875,7 +84875,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84899,7 +84899,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84922,7 +84922,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84945,7 +84945,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84968,7 +84968,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -84990,7 +84990,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85012,7 +85012,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85034,7 +85034,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85055,7 +85055,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85076,7 +85076,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85097,7 +85097,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85120,7 +85120,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85145,7 +85145,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85169,7 +85169,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85192,7 +85192,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85215,7 +85215,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85238,7 +85238,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85260,7 +85260,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85282,7 +85282,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85304,7 +85304,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85325,7 +85325,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85346,7 +85346,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85367,7 +85367,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85390,7 +85390,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85415,7 +85415,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85439,7 +85439,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85462,7 +85462,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85485,7 +85485,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85508,7 +85508,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85530,7 +85530,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85552,7 +85552,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85574,7 +85574,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85595,7 +85595,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85616,7 +85616,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85637,7 +85637,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85660,7 +85660,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85685,7 +85685,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85709,7 +85709,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85732,7 +85732,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85755,7 +85755,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85778,7 +85778,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85800,7 +85800,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85822,7 +85822,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85844,7 +85844,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85865,7 +85865,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85886,7 +85886,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85907,7 +85907,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85930,7 +85930,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85955,7 +85955,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -85979,7 +85979,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86002,7 +86002,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86025,7 +86025,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86048,7 +86048,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86070,7 +86070,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86092,7 +86092,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86114,7 +86114,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86135,7 +86135,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86156,7 +86156,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86177,7 +86177,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86200,7 +86200,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86225,7 +86225,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86249,7 +86249,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86272,7 +86272,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86295,7 +86295,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86318,7 +86318,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86340,7 +86340,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86362,7 +86362,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86384,7 +86384,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86405,7 +86405,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86426,7 +86426,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86447,7 +86447,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86470,7 +86470,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86495,7 +86495,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86519,7 +86519,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86542,7 +86542,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86565,7 +86565,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86588,7 +86588,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86610,7 +86610,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86632,7 +86632,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86654,7 +86654,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86675,7 +86675,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86696,7 +86696,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86717,7 +86717,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86740,7 +86740,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86765,7 +86765,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86789,7 +86789,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86812,7 +86812,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86835,7 +86835,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86858,7 +86858,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86880,7 +86880,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86902,7 +86902,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86924,7 +86924,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86945,7 +86945,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86966,7 +86966,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -86987,7 +86987,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87010,7 +87010,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87035,7 +87035,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87059,7 +87059,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87082,7 +87082,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87105,7 +87105,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87128,7 +87128,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87150,7 +87150,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87172,7 +87172,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87194,7 +87194,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87215,7 +87215,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87236,7 +87236,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87257,7 +87257,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87280,7 +87280,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87305,7 +87305,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87329,7 +87329,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87352,7 +87352,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87375,7 +87375,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87398,7 +87398,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87420,7 +87420,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87442,7 +87442,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87464,7 +87464,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87485,7 +87485,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87506,7 +87506,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87527,7 +87527,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87550,7 +87550,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87575,7 +87575,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87599,7 +87599,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87622,7 +87622,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87645,7 +87645,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87668,7 +87668,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87690,7 +87690,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87712,7 +87712,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87734,7 +87734,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87755,7 +87755,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87776,7 +87776,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87797,7 +87797,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87820,7 +87820,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87845,7 +87845,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87869,7 +87869,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87892,7 +87892,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87915,7 +87915,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87938,7 +87938,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87960,7 +87960,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -87982,7 +87982,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88004,7 +88004,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88025,7 +88025,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88046,7 +88046,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88067,7 +88067,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88090,7 +88090,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88115,7 +88115,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88139,7 +88139,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88162,7 +88162,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88185,7 +88185,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88208,7 +88208,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88230,7 +88230,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88252,7 +88252,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88274,7 +88274,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88295,7 +88295,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88316,7 +88316,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88337,7 +88337,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88360,7 +88360,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88385,7 +88385,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88409,7 +88409,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88432,7 +88432,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88455,7 +88455,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88478,7 +88478,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88500,7 +88500,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88522,7 +88522,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88544,7 +88544,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88565,7 +88565,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88586,7 +88586,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88607,7 +88607,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88630,7 +88630,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88655,7 +88655,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88679,7 +88679,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88702,7 +88702,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88725,7 +88725,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88748,7 +88748,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88770,7 +88770,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88792,7 +88792,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88814,7 +88814,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88835,7 +88835,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88856,7 +88856,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88877,7 +88877,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88900,7 +88900,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88925,7 +88925,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88949,7 +88949,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88972,7 +88972,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -88995,7 +88995,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89018,7 +89018,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89040,7 +89040,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89062,7 +89062,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89084,7 +89084,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89105,7 +89105,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89126,7 +89126,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89147,7 +89147,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89170,7 +89170,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89195,7 +89195,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89219,7 +89219,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89242,7 +89242,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89265,7 +89265,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89288,7 +89288,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89310,7 +89310,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89332,7 +89332,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89354,7 +89354,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89375,7 +89375,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89396,7 +89396,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89417,7 +89417,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89440,7 +89440,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89465,7 +89465,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89489,7 +89489,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89512,7 +89512,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89535,7 +89535,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89558,7 +89558,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89580,7 +89580,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89602,7 +89602,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89624,7 +89624,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89645,7 +89645,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89666,7 +89666,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89687,7 +89687,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89710,7 +89710,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89735,7 +89735,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89759,7 +89759,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89782,7 +89782,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89805,7 +89805,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89828,7 +89828,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89850,7 +89850,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89872,7 +89872,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89894,7 +89894,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89915,7 +89915,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89936,7 +89936,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89957,7 +89957,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -89980,7 +89980,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90005,7 +90005,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90029,7 +90029,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90052,7 +90052,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90075,7 +90075,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90098,7 +90098,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90120,7 +90120,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90142,7 +90142,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90164,7 +90164,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90185,7 +90185,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90206,7 +90206,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90227,7 +90227,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90250,7 +90250,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90275,7 +90275,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90299,7 +90299,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90322,7 +90322,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90345,7 +90345,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90368,7 +90368,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90390,7 +90390,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90412,7 +90412,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90434,7 +90434,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90455,7 +90455,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90476,7 +90476,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90497,7 +90497,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90520,7 +90520,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90545,7 +90545,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90569,7 +90569,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90592,7 +90592,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90615,7 +90615,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90638,7 +90638,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90660,7 +90660,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90682,7 +90682,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90704,7 +90704,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90725,7 +90725,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90746,7 +90746,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90767,7 +90767,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90790,7 +90790,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90815,7 +90815,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90839,7 +90839,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90862,7 +90862,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90885,7 +90885,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90908,7 +90908,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90930,7 +90930,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90952,7 +90952,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90974,7 +90974,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -90995,7 +90995,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91016,7 +91016,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91037,7 +91037,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91060,7 +91060,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91085,7 +91085,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91109,7 +91109,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91132,7 +91132,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91155,7 +91155,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91178,7 +91178,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91200,7 +91200,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91222,7 +91222,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91244,7 +91244,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91265,7 +91265,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91286,7 +91286,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91307,7 +91307,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91330,7 +91330,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91355,7 +91355,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91379,7 +91379,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91402,7 +91402,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91425,7 +91425,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91448,7 +91448,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91470,7 +91470,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91492,7 +91492,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91514,7 +91514,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91535,7 +91535,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91556,7 +91556,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91577,7 +91577,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91600,7 +91600,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91625,7 +91625,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91649,7 +91649,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91672,7 +91672,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91695,7 +91695,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91718,7 +91718,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91740,7 +91740,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91762,7 +91762,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91784,7 +91784,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91805,7 +91805,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91826,7 +91826,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91847,7 +91847,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91870,7 +91870,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91895,7 +91895,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91919,7 +91919,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91942,7 +91942,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91965,7 +91965,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -91988,7 +91988,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92010,7 +92010,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92032,7 +92032,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92054,7 +92054,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92075,7 +92075,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92096,7 +92096,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92117,7 +92117,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92140,7 +92140,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92165,7 +92165,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92189,7 +92189,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92212,7 +92212,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92235,7 +92235,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92258,7 +92258,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92280,7 +92280,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92302,7 +92302,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92324,7 +92324,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92345,7 +92345,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92366,7 +92366,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92387,7 +92387,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92410,7 +92410,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92435,7 +92435,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92459,7 +92459,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92482,7 +92482,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92505,7 +92505,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92528,7 +92528,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92550,7 +92550,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92572,7 +92572,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92594,7 +92594,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92615,7 +92615,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92636,7 +92636,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92657,7 +92657,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92680,7 +92680,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92705,7 +92705,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92729,7 +92729,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92752,7 +92752,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92775,7 +92775,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92798,7 +92798,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92820,7 +92820,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92842,7 +92842,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92864,7 +92864,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92885,7 +92885,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92906,7 +92906,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92927,7 +92927,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92950,7 +92950,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92975,7 +92975,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -92999,7 +92999,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93022,7 +93022,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93045,7 +93045,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93068,7 +93068,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93090,7 +93090,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93112,7 +93112,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93134,7 +93134,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93155,7 +93155,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93176,7 +93176,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93197,7 +93197,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93220,7 +93220,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93245,7 +93245,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93269,7 +93269,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93292,7 +93292,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93315,7 +93315,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93338,7 +93338,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93360,7 +93360,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93382,7 +93382,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93404,7 +93404,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93425,7 +93425,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93446,7 +93446,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93467,7 +93467,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93490,7 +93490,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93515,7 +93515,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93539,7 +93539,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93562,7 +93562,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93585,7 +93585,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93608,7 +93608,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93630,7 +93630,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93652,7 +93652,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93674,7 +93674,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93695,7 +93695,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93716,7 +93716,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93737,7 +93737,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93760,7 +93760,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93785,7 +93785,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93809,7 +93809,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93832,7 +93832,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93855,7 +93855,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93878,7 +93878,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93900,7 +93900,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93922,7 +93922,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93944,7 +93944,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93965,7 +93965,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -93986,7 +93986,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94007,7 +94007,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94030,7 +94030,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94055,7 +94055,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94079,7 +94079,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94102,7 +94102,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94125,7 +94125,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94148,7 +94148,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94170,7 +94170,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94192,7 +94192,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94214,7 +94214,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94235,7 +94235,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94256,7 +94256,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94277,7 +94277,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94300,7 +94300,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94325,7 +94325,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94349,7 +94349,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94372,7 +94372,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94395,7 +94395,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94418,7 +94418,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94440,7 +94440,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94462,7 +94462,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94484,7 +94484,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94505,7 +94505,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94526,7 +94526,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94547,7 +94547,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94570,7 +94570,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94595,7 +94595,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94619,7 +94619,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94642,7 +94642,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94665,7 +94665,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94688,7 +94688,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94710,7 +94710,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94732,7 +94732,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94754,7 +94754,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94775,7 +94775,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94796,7 +94796,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94817,7 +94817,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94840,7 +94840,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94865,7 +94865,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94889,7 +94889,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94912,7 +94912,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94935,7 +94935,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94958,7 +94958,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -94980,7 +94980,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95002,7 +95002,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95024,7 +95024,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95045,7 +95045,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95066,7 +95066,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95087,7 +95087,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95110,7 +95110,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95135,7 +95135,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95159,7 +95159,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95182,7 +95182,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95205,7 +95205,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95228,7 +95228,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95250,7 +95250,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95272,7 +95272,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95294,7 +95294,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95315,7 +95315,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95336,7 +95336,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95357,7 +95357,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95380,7 +95380,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95405,7 +95405,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95429,7 +95429,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95452,7 +95452,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95475,7 +95475,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95498,7 +95498,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95520,7 +95520,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95542,7 +95542,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95564,7 +95564,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95585,7 +95585,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95606,7 +95606,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95627,7 +95627,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95650,7 +95650,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95675,7 +95675,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95699,7 +95699,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95722,7 +95722,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95745,7 +95745,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95768,7 +95768,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95790,7 +95790,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95812,7 +95812,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95834,7 +95834,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95855,7 +95855,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95876,7 +95876,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95897,7 +95897,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95920,7 +95920,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95945,7 +95945,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95969,7 +95969,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -95992,7 +95992,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96015,7 +96015,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96038,7 +96038,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96060,7 +96060,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96082,7 +96082,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96104,7 +96104,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96125,7 +96125,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96146,7 +96146,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96167,7 +96167,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96190,7 +96190,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96215,7 +96215,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96239,7 +96239,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96262,7 +96262,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96285,7 +96285,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96308,7 +96308,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96330,7 +96330,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96352,7 +96352,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96374,7 +96374,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96395,7 +96395,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96416,7 +96416,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96437,7 +96437,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96460,7 +96460,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96485,7 +96485,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96509,7 +96509,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96532,7 +96532,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96555,7 +96555,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96578,7 +96578,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96600,7 +96600,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96622,7 +96622,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96644,7 +96644,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96665,7 +96665,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96686,7 +96686,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96707,7 +96707,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96730,7 +96730,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96755,7 +96755,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96779,7 +96779,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96802,7 +96802,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96825,7 +96825,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96848,7 +96848,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96870,7 +96870,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96892,7 +96892,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96914,7 +96914,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96935,7 +96935,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96956,7 +96956,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -96977,7 +96977,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97000,7 +97000,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97025,7 +97025,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97049,7 +97049,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97072,7 +97072,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97095,7 +97095,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97118,7 +97118,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97140,7 +97140,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97162,7 +97162,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97184,7 +97184,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97205,7 +97205,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97226,7 +97226,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97247,7 +97247,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97270,7 +97270,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97295,7 +97295,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97319,7 +97319,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97342,7 +97342,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97365,7 +97365,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97388,7 +97388,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97410,7 +97410,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97432,7 +97432,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97454,7 +97454,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97475,7 +97475,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97496,7 +97496,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97517,7 +97517,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97540,7 +97540,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97565,7 +97565,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97589,7 +97589,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97612,7 +97612,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97635,7 +97635,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97658,7 +97658,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97680,7 +97680,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97702,7 +97702,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97724,7 +97724,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97745,7 +97745,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97766,7 +97766,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97787,7 +97787,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97810,7 +97810,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97835,7 +97835,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97859,7 +97859,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97882,7 +97882,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97905,7 +97905,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97928,7 +97928,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97950,7 +97950,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97972,7 +97972,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -97994,7 +97994,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98015,7 +98015,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98036,7 +98036,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98057,7 +98057,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98080,7 +98080,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98105,7 +98105,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98129,7 +98129,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98152,7 +98152,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98175,7 +98175,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98198,7 +98198,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98220,7 +98220,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98242,7 +98242,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98264,7 +98264,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98285,7 +98285,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98306,7 +98306,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98327,7 +98327,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98350,7 +98350,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98375,7 +98375,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98399,7 +98399,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98422,7 +98422,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98445,7 +98445,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98468,7 +98468,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98490,7 +98490,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98512,7 +98512,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98534,7 +98534,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98555,7 +98555,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98576,7 +98576,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98597,7 +98597,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98620,7 +98620,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98645,7 +98645,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98669,7 +98669,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98692,7 +98692,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98715,7 +98715,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98738,7 +98738,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98760,7 +98760,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98782,7 +98782,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98804,7 +98804,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98825,7 +98825,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98846,7 +98846,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98867,7 +98867,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98890,7 +98890,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98915,7 +98915,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98939,7 +98939,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98962,7 +98962,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -98985,7 +98985,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99008,7 +99008,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99030,7 +99030,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99052,7 +99052,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99074,7 +99074,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99095,7 +99095,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99116,7 +99116,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99137,7 +99137,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99160,7 +99160,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99185,7 +99185,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99209,7 +99209,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99232,7 +99232,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99255,7 +99255,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99278,7 +99278,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99300,7 +99300,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99322,7 +99322,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99344,7 +99344,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99365,7 +99365,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99386,7 +99386,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99407,7 +99407,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99430,7 +99430,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99455,7 +99455,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99479,7 +99479,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99502,7 +99502,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99525,7 +99525,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99548,7 +99548,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99570,7 +99570,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99592,7 +99592,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99614,7 +99614,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99635,7 +99635,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99656,7 +99656,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99677,7 +99677,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99700,7 +99700,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99725,7 +99725,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99749,7 +99749,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99772,7 +99772,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99795,7 +99795,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99818,7 +99818,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99840,7 +99840,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99862,7 +99862,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99884,7 +99884,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99905,7 +99905,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99926,7 +99926,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99952,7 +99952,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -99975,7 +99975,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100000,7 +100000,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100024,7 +100024,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100047,7 +100047,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100070,7 +100070,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100093,7 +100093,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100115,7 +100115,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100137,7 +100137,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100159,7 +100159,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100180,7 +100180,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100201,7 +100201,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100222,7 +100222,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100245,7 +100245,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100270,7 +100270,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100294,7 +100294,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100317,7 +100317,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100340,7 +100340,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100363,7 +100363,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100385,7 +100385,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100407,7 +100407,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100429,7 +100429,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100450,7 +100450,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100471,7 +100471,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100492,7 +100492,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100515,7 +100515,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100540,7 +100540,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100564,7 +100564,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100587,7 +100587,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100610,7 +100610,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100633,7 +100633,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100655,7 +100655,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100677,7 +100677,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100699,7 +100699,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100720,7 +100720,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100741,7 +100741,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100762,7 +100762,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100785,7 +100785,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100810,7 +100810,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100834,7 +100834,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100857,7 +100857,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100880,7 +100880,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100903,7 +100903,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100925,7 +100925,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100947,7 +100947,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100969,7 +100969,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -100990,7 +100990,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101011,7 +101011,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101032,7 +101032,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101055,7 +101055,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101080,7 +101080,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101104,7 +101104,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101127,7 +101127,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101150,7 +101150,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101173,7 +101173,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101195,7 +101195,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101217,7 +101217,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101239,7 +101239,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101260,7 +101260,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101281,7 +101281,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101302,7 +101302,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101325,7 +101325,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101350,7 +101350,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101374,7 +101374,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101397,7 +101397,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101420,7 +101420,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101443,7 +101443,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101465,7 +101465,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101487,7 +101487,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101509,7 +101509,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101530,7 +101530,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101551,7 +101551,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101572,7 +101572,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101595,7 +101595,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101620,7 +101620,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101644,7 +101644,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101667,7 +101667,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101690,7 +101690,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101713,7 +101713,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101735,7 +101735,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101757,7 +101757,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101779,7 +101779,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101800,7 +101800,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101821,7 +101821,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101842,7 +101842,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101865,7 +101865,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101890,7 +101890,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101914,7 +101914,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101937,7 +101937,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101960,7 +101960,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -101983,7 +101983,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102005,7 +102005,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102027,7 +102027,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102049,7 +102049,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102070,7 +102070,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102091,7 +102091,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102112,7 +102112,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102135,7 +102135,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102160,7 +102160,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102184,7 +102184,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102207,7 +102207,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102230,7 +102230,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102253,7 +102253,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102275,7 +102275,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102297,7 +102297,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102319,7 +102319,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102340,7 +102340,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102361,7 +102361,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102382,7 +102382,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102405,7 +102405,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102430,7 +102430,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102454,7 +102454,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102477,7 +102477,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102500,7 +102500,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102523,7 +102523,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102545,7 +102545,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102567,7 +102567,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102589,7 +102589,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102610,7 +102610,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102631,7 +102631,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102652,7 +102652,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102675,7 +102675,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102700,7 +102700,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102724,7 +102724,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102747,7 +102747,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102770,7 +102770,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102793,7 +102793,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102815,7 +102815,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102837,7 +102837,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102859,7 +102859,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102880,7 +102880,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102901,7 +102901,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102922,7 +102922,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102945,7 +102945,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102970,7 +102970,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -102994,7 +102994,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103017,7 +103017,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103040,7 +103040,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103063,7 +103063,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103085,7 +103085,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103107,7 +103107,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103129,7 +103129,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103150,7 +103150,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103171,7 +103171,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103192,7 +103192,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103215,7 +103215,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103240,7 +103240,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103264,7 +103264,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103287,7 +103287,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103310,7 +103310,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103333,7 +103333,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103355,7 +103355,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103377,7 +103377,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103399,7 +103399,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103420,7 +103420,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103441,7 +103441,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103462,7 +103462,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103485,7 +103485,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103510,7 +103510,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103534,7 +103534,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103557,7 +103557,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103580,7 +103580,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103603,7 +103603,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103625,7 +103625,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103647,7 +103647,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103669,7 +103669,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103690,7 +103690,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103711,7 +103711,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103732,7 +103732,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103755,7 +103755,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103780,7 +103780,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103804,7 +103804,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103827,7 +103827,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103850,7 +103850,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103873,7 +103873,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103895,7 +103895,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103917,7 +103917,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103939,7 +103939,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103960,7 +103960,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -103981,7 +103981,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104002,7 +104002,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104025,7 +104025,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104050,7 +104050,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104074,7 +104074,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104097,7 +104097,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104120,7 +104120,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104143,7 +104143,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104165,7 +104165,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104187,7 +104187,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104209,7 +104209,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104230,7 +104230,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104251,7 +104251,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104272,7 +104272,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104295,7 +104295,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104320,7 +104320,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104344,7 +104344,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104367,7 +104367,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104390,7 +104390,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104413,7 +104413,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104435,7 +104435,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104457,7 +104457,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104479,7 +104479,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104500,7 +104500,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104521,7 +104521,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104542,7 +104542,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104565,7 +104565,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104590,7 +104590,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104614,7 +104614,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104637,7 +104637,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104660,7 +104660,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104683,7 +104683,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104705,7 +104705,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104727,7 +104727,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104749,7 +104749,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104770,7 +104770,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104791,7 +104791,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104812,7 +104812,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104835,7 +104835,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104860,7 +104860,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104884,7 +104884,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104907,7 +104907,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104930,7 +104930,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104953,7 +104953,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104975,7 +104975,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -104997,7 +104997,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105019,7 +105019,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105040,7 +105040,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105061,7 +105061,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105082,7 +105082,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105105,7 +105105,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105130,7 +105130,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105154,7 +105154,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105177,7 +105177,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105200,7 +105200,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105223,7 +105223,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105245,7 +105245,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105267,7 +105267,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105289,7 +105289,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105310,7 +105310,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105331,7 +105331,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105352,7 +105352,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105375,7 +105375,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105400,7 +105400,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105424,7 +105424,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105447,7 +105447,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105470,7 +105470,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105493,7 +105493,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105515,7 +105515,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105537,7 +105537,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105559,7 +105559,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105580,7 +105580,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105601,7 +105601,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105622,7 +105622,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105645,7 +105645,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105670,7 +105670,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105694,7 +105694,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105717,7 +105717,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105740,7 +105740,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105763,7 +105763,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105785,7 +105785,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105807,7 +105807,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105829,7 +105829,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105850,7 +105850,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105871,7 +105871,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105892,7 +105892,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105915,7 +105915,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105940,7 +105940,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105964,7 +105964,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -105987,7 +105987,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106010,7 +106010,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106033,7 +106033,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106055,7 +106055,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106077,7 +106077,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106099,7 +106099,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106120,7 +106120,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106141,7 +106141,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106162,7 +106162,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106185,7 +106185,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106210,7 +106210,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106234,7 +106234,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106257,7 +106257,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106280,7 +106280,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106303,7 +106303,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106325,7 +106325,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106347,7 +106347,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106369,7 +106369,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106390,7 +106390,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106411,7 +106411,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106432,7 +106432,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106455,7 +106455,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106480,7 +106480,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106504,7 +106504,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106527,7 +106527,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106550,7 +106550,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106573,7 +106573,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106595,7 +106595,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106617,7 +106617,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106639,7 +106639,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106660,7 +106660,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106681,7 +106681,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106702,7 +106702,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106725,7 +106725,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106750,7 +106750,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106774,7 +106774,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106797,7 +106797,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106820,7 +106820,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106843,7 +106843,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106865,7 +106865,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106887,7 +106887,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106909,7 +106909,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106930,7 +106930,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106951,7 +106951,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106972,7 +106972,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -106995,7 +106995,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107020,7 +107020,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107044,7 +107044,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107067,7 +107067,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107090,7 +107090,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107113,7 +107113,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107135,7 +107135,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107157,7 +107157,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107179,7 +107179,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107200,7 +107200,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107221,7 +107221,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107242,7 +107242,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107265,7 +107265,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107290,7 +107290,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107314,7 +107314,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107337,7 +107337,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107360,7 +107360,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107383,7 +107383,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107405,7 +107405,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107427,7 +107427,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107449,7 +107449,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107470,7 +107470,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107491,7 +107491,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107512,7 +107512,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107535,7 +107535,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107560,7 +107560,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107584,7 +107584,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107607,7 +107607,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107630,7 +107630,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107653,7 +107653,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107675,7 +107675,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107697,7 +107697,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107719,7 +107719,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107740,7 +107740,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107761,7 +107761,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107782,7 +107782,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107805,7 +107805,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107830,7 +107830,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107854,7 +107854,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107877,7 +107877,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107900,7 +107900,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107923,7 +107923,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107945,7 +107945,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107967,7 +107967,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -107989,7 +107989,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108010,7 +108010,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108031,7 +108031,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108052,7 +108052,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108075,7 +108075,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108100,7 +108100,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108124,7 +108124,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108147,7 +108147,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108170,7 +108170,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108193,7 +108193,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108215,7 +108215,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108237,7 +108237,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108259,7 +108259,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108280,7 +108280,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108301,7 +108301,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108322,7 +108322,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108345,7 +108345,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108370,7 +108370,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108394,7 +108394,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108417,7 +108417,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108440,7 +108440,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108463,7 +108463,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108485,7 +108485,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108507,7 +108507,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108529,7 +108529,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108550,7 +108550,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108571,7 +108571,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108592,7 +108592,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108615,7 +108615,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108640,7 +108640,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108664,7 +108664,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108687,7 +108687,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108710,7 +108710,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108733,7 +108733,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108755,7 +108755,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108777,7 +108777,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108799,7 +108799,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108820,7 +108820,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108841,7 +108841,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108862,7 +108862,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108885,7 +108885,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108910,7 +108910,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108934,7 +108934,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108957,7 +108957,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -108980,7 +108980,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109003,7 +109003,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109025,7 +109025,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109047,7 +109047,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109069,7 +109069,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109090,7 +109090,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109111,7 +109111,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109132,7 +109132,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109155,7 +109155,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109180,7 +109180,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109204,7 +109204,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109227,7 +109227,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109250,7 +109250,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109273,7 +109273,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109295,7 +109295,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109317,7 +109317,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109339,7 +109339,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109360,7 +109360,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109381,7 +109381,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109402,7 +109402,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109425,7 +109425,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109450,7 +109450,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109474,7 +109474,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109497,7 +109497,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109520,7 +109520,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109543,7 +109543,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109565,7 +109565,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109587,7 +109587,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109609,7 +109609,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109630,7 +109630,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109651,7 +109651,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109672,7 +109672,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109695,7 +109695,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109720,7 +109720,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109744,7 +109744,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109767,7 +109767,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109790,7 +109790,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109813,7 +109813,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109835,7 +109835,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109857,7 +109857,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109879,7 +109879,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109900,7 +109900,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109921,7 +109921,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109942,7 +109942,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109965,7 +109965,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -109990,7 +109990,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110014,7 +110014,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110037,7 +110037,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110060,7 +110060,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110083,7 +110083,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110105,7 +110105,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110127,7 +110127,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110149,7 +110149,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110170,7 +110170,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110191,7 +110191,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110212,7 +110212,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110235,7 +110235,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110260,7 +110260,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110284,7 +110284,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110307,7 +110307,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110330,7 +110330,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110353,7 +110353,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110375,7 +110375,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110397,7 +110397,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110419,7 +110419,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110440,7 +110440,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110461,7 +110461,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110482,7 +110482,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110505,7 +110505,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110530,7 +110530,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110554,7 +110554,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110577,7 +110577,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110600,7 +110600,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110623,7 +110623,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110645,7 +110645,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110667,7 +110667,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110689,7 +110689,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110710,7 +110710,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110731,7 +110731,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110752,7 +110752,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110775,7 +110775,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110800,7 +110800,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110824,7 +110824,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110847,7 +110847,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110870,7 +110870,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110893,7 +110893,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110915,7 +110915,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110937,7 +110937,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110959,7 +110959,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -110980,7 +110980,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111001,7 +111001,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111022,7 +111022,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111045,7 +111045,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111070,7 +111070,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111094,7 +111094,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111117,7 +111117,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111140,7 +111140,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111163,7 +111163,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111185,7 +111185,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111207,7 +111207,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111229,7 +111229,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111250,7 +111250,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111271,7 +111271,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111292,7 +111292,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111315,7 +111315,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111340,7 +111340,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111364,7 +111364,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111387,7 +111387,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111410,7 +111410,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111433,7 +111433,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111455,7 +111455,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111477,7 +111477,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111499,7 +111499,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111520,7 +111520,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111541,7 +111541,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111562,7 +111562,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111585,7 +111585,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111610,7 +111610,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111634,7 +111634,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111657,7 +111657,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111680,7 +111680,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111703,7 +111703,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111725,7 +111725,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111747,7 +111747,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111769,7 +111769,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111790,7 +111790,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111811,7 +111811,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111832,7 +111832,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111855,7 +111855,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111880,7 +111880,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111904,7 +111904,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111927,7 +111927,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111950,7 +111950,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111973,7 +111973,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -111995,7 +111995,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112017,7 +112017,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112039,7 +112039,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112060,7 +112060,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112081,7 +112081,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112102,7 +112102,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112125,7 +112125,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112150,7 +112150,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112174,7 +112174,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112197,7 +112197,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112220,7 +112220,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112243,7 +112243,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112265,7 +112265,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112287,7 +112287,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112309,7 +112309,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112330,7 +112330,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112351,7 +112351,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112372,7 +112372,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112395,7 +112395,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112420,7 +112420,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112444,7 +112444,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112467,7 +112467,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112490,7 +112490,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112513,7 +112513,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112535,7 +112535,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112557,7 +112557,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112579,7 +112579,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112600,7 +112600,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112621,7 +112621,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112642,7 +112642,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112665,7 +112665,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112690,7 +112690,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112714,7 +112714,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112737,7 +112737,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112760,7 +112760,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112783,7 +112783,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112805,7 +112805,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112827,7 +112827,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112849,7 +112849,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112870,7 +112870,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112891,7 +112891,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112912,7 +112912,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112935,7 +112935,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112960,7 +112960,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -112984,7 +112984,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113007,7 +113007,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113030,7 +113030,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113053,7 +113053,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113075,7 +113075,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113097,7 +113097,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113119,7 +113119,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113140,7 +113140,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113161,7 +113161,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113182,7 +113182,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113205,7 +113205,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113230,7 +113230,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113254,7 +113254,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113277,7 +113277,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113300,7 +113300,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113323,7 +113323,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113345,7 +113345,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113367,7 +113367,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113389,7 +113389,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113410,7 +113410,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113431,7 +113431,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113452,7 +113452,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113475,7 +113475,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113500,7 +113500,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113524,7 +113524,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113547,7 +113547,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113570,7 +113570,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113593,7 +113593,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113615,7 +113615,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113637,7 +113637,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113659,7 +113659,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113680,7 +113680,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113701,7 +113701,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113722,7 +113722,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113745,7 +113745,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113770,7 +113770,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113794,7 +113794,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113817,7 +113817,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113840,7 +113840,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113863,7 +113863,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113885,7 +113885,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113907,7 +113907,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113929,7 +113929,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113950,7 +113950,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113971,7 +113971,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -113992,7 +113992,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114015,7 +114015,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114040,7 +114040,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114064,7 +114064,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114087,7 +114087,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114110,7 +114110,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114133,7 +114133,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114155,7 +114155,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114177,7 +114177,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114199,7 +114199,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114220,7 +114220,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114241,7 +114241,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114262,7 +114262,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114285,7 +114285,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114310,7 +114310,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114334,7 +114334,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114357,7 +114357,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114380,7 +114380,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114403,7 +114403,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114425,7 +114425,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114447,7 +114447,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114469,7 +114469,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114490,7 +114490,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114511,7 +114511,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114532,7 +114532,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114555,7 +114555,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114580,7 +114580,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114604,7 +114604,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114627,7 +114627,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114650,7 +114650,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114673,7 +114673,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114695,7 +114695,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114717,7 +114717,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114739,7 +114739,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114760,7 +114760,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114781,7 +114781,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114802,7 +114802,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114825,7 +114825,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114850,7 +114850,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114874,7 +114874,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114897,7 +114897,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114920,7 +114920,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114943,7 +114943,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114965,7 +114965,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -114987,7 +114987,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115009,7 +115009,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115030,7 +115030,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115051,7 +115051,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115072,7 +115072,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115095,7 +115095,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115120,7 +115120,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115144,7 +115144,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115167,7 +115167,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115190,7 +115190,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115213,7 +115213,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115235,7 +115235,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115257,7 +115257,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115279,7 +115279,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115300,7 +115300,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115321,7 +115321,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115342,7 +115342,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115365,7 +115365,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115390,7 +115390,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115414,7 +115414,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115437,7 +115437,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115460,7 +115460,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115483,7 +115483,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115505,7 +115505,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115527,7 +115527,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115549,7 +115549,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115570,7 +115570,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115591,7 +115591,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115612,7 +115612,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115635,7 +115635,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115660,7 +115660,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115684,7 +115684,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115707,7 +115707,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115730,7 +115730,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115753,7 +115753,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115775,7 +115775,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115797,7 +115797,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115819,7 +115819,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115840,7 +115840,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115861,7 +115861,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115882,7 +115882,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115905,7 +115905,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115930,7 +115930,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115954,7 +115954,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -115977,7 +115977,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116000,7 +116000,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116023,7 +116023,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116045,7 +116045,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116067,7 +116067,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116089,7 +116089,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116110,7 +116110,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116131,7 +116131,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116152,7 +116152,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116175,7 +116175,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116200,7 +116200,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116224,7 +116224,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116247,7 +116247,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116270,7 +116270,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116293,7 +116293,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116315,7 +116315,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116337,7 +116337,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116359,7 +116359,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116380,7 +116380,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116401,7 +116401,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116422,7 +116422,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116445,7 +116445,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116470,7 +116470,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116494,7 +116494,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116517,7 +116517,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116540,7 +116540,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116563,7 +116563,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116585,7 +116585,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116607,7 +116607,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116629,7 +116629,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116650,7 +116650,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116671,7 +116671,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116692,7 +116692,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116715,7 +116715,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116740,7 +116740,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116764,7 +116764,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116787,7 +116787,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116810,7 +116810,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116833,7 +116833,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116855,7 +116855,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116877,7 +116877,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116899,7 +116899,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116920,7 +116920,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116941,7 +116941,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116962,7 +116962,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -116985,7 +116985,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117010,7 +117010,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117034,7 +117034,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117057,7 +117057,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117080,7 +117080,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117103,7 +117103,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117125,7 +117125,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117147,7 +117147,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117169,7 +117169,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117190,7 +117190,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117211,7 +117211,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117232,7 +117232,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117255,7 +117255,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117280,7 +117280,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117304,7 +117304,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117327,7 +117327,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117350,7 +117350,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117373,7 +117373,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117395,7 +117395,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117417,7 +117417,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117439,7 +117439,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117460,7 +117460,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117481,7 +117481,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117502,7 +117502,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117525,7 +117525,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117550,7 +117550,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117574,7 +117574,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117597,7 +117597,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117620,7 +117620,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117643,7 +117643,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117665,7 +117665,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117687,7 +117687,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117709,7 +117709,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117730,7 +117730,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117751,7 +117751,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117772,7 +117772,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117795,7 +117795,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117820,7 +117820,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117844,7 +117844,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117867,7 +117867,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117890,7 +117890,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117913,7 +117913,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117935,7 +117935,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117957,7 +117957,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -117979,7 +117979,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118000,7 +118000,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118021,7 +118021,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118042,7 +118042,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118065,7 +118065,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118090,7 +118090,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118114,7 +118114,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118137,7 +118137,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118160,7 +118160,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118183,7 +118183,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118205,7 +118205,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118227,7 +118227,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118249,7 +118249,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118270,7 +118270,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118291,7 +118291,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118312,7 +118312,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118335,7 +118335,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118360,7 +118360,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118384,7 +118384,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118407,7 +118407,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118430,7 +118430,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118453,7 +118453,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118475,7 +118475,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118497,7 +118497,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118519,7 +118519,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118540,7 +118540,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118561,7 +118561,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118582,7 +118582,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118605,7 +118605,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118630,7 +118630,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118654,7 +118654,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118677,7 +118677,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118700,7 +118700,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118723,7 +118723,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118745,7 +118745,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118767,7 +118767,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118789,7 +118789,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118810,7 +118810,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118831,7 +118831,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118852,7 +118852,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118875,7 +118875,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118900,7 +118900,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118924,7 +118924,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118947,7 +118947,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118970,7 +118970,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -118993,7 +118993,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119015,7 +119015,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119037,7 +119037,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119059,7 +119059,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119080,7 +119080,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119101,7 +119101,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119122,7 +119122,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119145,7 +119145,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119170,7 +119170,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119194,7 +119194,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119217,7 +119217,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119240,7 +119240,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119263,7 +119263,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119285,7 +119285,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119307,7 +119307,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119329,7 +119329,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119350,7 +119350,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119371,7 +119371,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119392,7 +119392,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119415,7 +119415,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119440,7 +119440,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119464,7 +119464,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119487,7 +119487,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119510,7 +119510,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119533,7 +119533,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119555,7 +119555,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119577,7 +119577,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119599,7 +119599,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119620,7 +119620,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119641,7 +119641,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119662,7 +119662,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119685,7 +119685,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119710,7 +119710,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119734,7 +119734,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119757,7 +119757,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119780,7 +119780,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119803,7 +119803,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119825,7 +119825,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119847,7 +119847,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119869,7 +119869,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119890,7 +119890,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119911,7 +119911,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119932,7 +119932,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119955,7 +119955,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -119980,7 +119980,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120004,7 +120004,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120027,7 +120027,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120050,7 +120050,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120073,7 +120073,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120095,7 +120095,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120117,7 +120117,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120139,7 +120139,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120160,7 +120160,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120181,7 +120181,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120202,7 +120202,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120225,7 +120225,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120250,7 +120250,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120274,7 +120274,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120297,7 +120297,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120320,7 +120320,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120343,7 +120343,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120365,7 +120365,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120387,7 +120387,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120409,7 +120409,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120430,7 +120430,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120451,7 +120451,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120472,7 +120472,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120495,7 +120495,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120520,7 +120520,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120544,7 +120544,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120567,7 +120567,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120590,7 +120590,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120613,7 +120613,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120635,7 +120635,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120657,7 +120657,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120679,7 +120679,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120700,7 +120700,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120721,7 +120721,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120747,7 +120747,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120768,7 +120768,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120789,7 +120789,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120810,7 +120810,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120831,7 +120831,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120852,7 +120852,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120873,7 +120873,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120894,7 +120894,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120917,7 +120917,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120942,7 +120942,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120966,7 +120966,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -120989,7 +120989,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121012,7 +121012,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121035,7 +121035,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121057,7 +121057,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121079,7 +121079,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121101,7 +121101,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121122,7 +121122,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121143,7 +121143,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121166,7 +121166,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121191,7 +121191,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121215,7 +121215,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121238,7 +121238,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121261,7 +121261,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121284,7 +121284,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121306,7 +121306,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121328,7 +121328,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121350,7 +121350,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121371,7 +121371,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121392,7 +121392,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121413,7 +121413,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121436,7 +121436,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121461,7 +121461,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121485,7 +121485,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121508,7 +121508,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121531,7 +121531,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121554,7 +121554,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121576,7 +121576,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121598,7 +121598,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121620,7 +121620,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121641,7 +121641,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121662,7 +121662,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121683,7 +121683,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121706,7 +121706,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121731,7 +121731,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121755,7 +121755,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121778,7 +121778,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121801,7 +121801,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121824,7 +121824,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121846,7 +121846,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121868,7 +121868,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121890,7 +121890,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121911,7 +121911,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121932,7 +121932,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121953,7 +121953,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -121976,7 +121976,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122001,7 +122001,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122025,7 +122025,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122048,7 +122048,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122071,7 +122071,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122094,7 +122094,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122116,7 +122116,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122138,7 +122138,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122160,7 +122160,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122181,7 +122181,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122202,7 +122202,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122223,7 +122223,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122246,7 +122246,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122271,7 +122271,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122295,7 +122295,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122318,7 +122318,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122341,7 +122341,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122364,7 +122364,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122386,7 +122386,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122408,7 +122408,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122430,7 +122430,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122451,7 +122451,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122472,7 +122472,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122493,7 +122493,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122516,7 +122516,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122541,7 +122541,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122565,7 +122565,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122588,7 +122588,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122611,7 +122611,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122634,7 +122634,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122656,7 +122656,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122678,7 +122678,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122700,7 +122700,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122721,7 +122721,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122742,7 +122742,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122763,7 +122763,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122786,7 +122786,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122811,7 +122811,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122835,7 +122835,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122858,7 +122858,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122881,7 +122881,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122904,7 +122904,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122926,7 +122926,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122948,7 +122948,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122970,7 +122970,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -122991,7 +122991,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123012,7 +123012,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123033,7 +123033,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123056,7 +123056,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123081,7 +123081,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123105,7 +123105,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123128,7 +123128,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123151,7 +123151,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123174,7 +123174,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123196,7 +123196,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123218,7 +123218,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123240,7 +123240,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123261,7 +123261,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123282,7 +123282,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123303,7 +123303,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123326,7 +123326,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123351,7 +123351,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123375,7 +123375,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123398,7 +123398,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123421,7 +123421,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123444,7 +123444,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123466,7 +123466,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123488,7 +123488,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123510,7 +123510,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123531,7 +123531,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123552,7 +123552,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123573,7 +123573,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123596,7 +123596,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123621,7 +123621,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123645,7 +123645,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123668,7 +123668,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123691,7 +123691,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123714,7 +123714,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123736,7 +123736,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123758,7 +123758,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123780,7 +123780,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123801,7 +123801,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123822,7 +123822,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123843,7 +123843,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123866,7 +123866,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123891,7 +123891,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123915,7 +123915,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123938,7 +123938,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123961,7 +123961,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -123984,7 +123984,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124006,7 +124006,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124028,7 +124028,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124050,7 +124050,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124071,7 +124071,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124092,7 +124092,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124113,7 +124113,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124136,7 +124136,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124161,7 +124161,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124185,7 +124185,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124208,7 +124208,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124231,7 +124231,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124254,7 +124254,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124276,7 +124276,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124298,7 +124298,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124320,7 +124320,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124341,7 +124341,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124362,7 +124362,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124383,7 +124383,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124406,7 +124406,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124431,7 +124431,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124455,7 +124455,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124478,7 +124478,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124501,7 +124501,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124524,7 +124524,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124546,7 +124546,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124568,7 +124568,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124590,7 +124590,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124611,7 +124611,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124632,7 +124632,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124653,7 +124653,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124676,7 +124676,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124701,7 +124701,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124725,7 +124725,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124748,7 +124748,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124771,7 +124771,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124794,7 +124794,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124816,7 +124816,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124838,7 +124838,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124860,7 +124860,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124881,7 +124881,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124902,7 +124902,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124923,7 +124923,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124946,7 +124946,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124971,7 +124971,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -124995,7 +124995,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125018,7 +125018,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125041,7 +125041,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125064,7 +125064,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125086,7 +125086,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125108,7 +125108,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125130,7 +125130,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125151,7 +125151,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125172,7 +125172,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125193,7 +125193,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125216,7 +125216,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125241,7 +125241,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125265,7 +125265,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125288,7 +125288,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125311,7 +125311,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125334,7 +125334,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125356,7 +125356,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125378,7 +125378,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125400,7 +125400,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125421,7 +125421,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125442,7 +125442,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125463,7 +125463,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125486,7 +125486,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125511,7 +125511,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125535,7 +125535,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125558,7 +125558,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125581,7 +125581,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125604,7 +125604,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125626,7 +125626,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125648,7 +125648,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125670,7 +125670,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125691,7 +125691,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125712,7 +125712,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125733,7 +125733,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125756,7 +125756,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125781,7 +125781,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125805,7 +125805,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125828,7 +125828,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125851,7 +125851,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125874,7 +125874,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125896,7 +125896,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125918,7 +125918,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125940,7 +125940,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125961,7 +125961,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -125982,7 +125982,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126003,7 +126003,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126026,7 +126026,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126051,7 +126051,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126075,7 +126075,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126098,7 +126098,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126121,7 +126121,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126144,7 +126144,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126166,7 +126166,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126188,7 +126188,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126210,7 +126210,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126231,7 +126231,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126252,7 +126252,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126273,7 +126273,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126296,7 +126296,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126321,7 +126321,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126345,7 +126345,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126368,7 +126368,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126391,7 +126391,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126414,7 +126414,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126436,7 +126436,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126458,7 +126458,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126480,7 +126480,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126501,7 +126501,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126522,7 +126522,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126543,7 +126543,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126566,7 +126566,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126591,7 +126591,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126615,7 +126615,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126638,7 +126638,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126661,7 +126661,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126684,7 +126684,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126706,7 +126706,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126728,7 +126728,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126750,7 +126750,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126771,7 +126771,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126792,7 +126792,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126813,7 +126813,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126836,7 +126836,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126861,7 +126861,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126885,7 +126885,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126908,7 +126908,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126931,7 +126931,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126954,7 +126954,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126976,7 +126976,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -126998,7 +126998,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127020,7 +127020,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127041,7 +127041,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127062,7 +127062,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127083,7 +127083,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127106,7 +127106,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127131,7 +127131,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127155,7 +127155,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127178,7 +127178,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127201,7 +127201,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127224,7 +127224,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127246,7 +127246,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127268,7 +127268,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127290,7 +127290,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127311,7 +127311,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127332,7 +127332,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127353,7 +127353,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127379,7 +127379,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127402,7 +127402,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127427,7 +127427,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127451,7 +127451,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127474,7 +127474,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127497,7 +127497,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127520,7 +127520,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127542,7 +127542,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127564,7 +127564,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127586,7 +127586,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127607,7 +127607,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127628,7 +127628,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127649,7 +127649,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127672,7 +127672,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127697,7 +127697,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127721,7 +127721,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127744,7 +127744,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127767,7 +127767,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127790,7 +127790,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127812,7 +127812,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127834,7 +127834,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127856,7 +127856,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127877,7 +127877,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127898,7 +127898,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127919,7 +127919,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127942,7 +127942,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127967,7 +127967,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -127991,7 +127991,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128014,7 +128014,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128037,7 +128037,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128060,7 +128060,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128082,7 +128082,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128104,7 +128104,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128126,7 +128126,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128147,7 +128147,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128168,7 +128168,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128189,7 +128189,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128212,7 +128212,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128237,7 +128237,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128261,7 +128261,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128284,7 +128284,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128307,7 +128307,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128330,7 +128330,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128352,7 +128352,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128374,7 +128374,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128396,7 +128396,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128417,7 +128417,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128438,7 +128438,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128459,7 +128459,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128482,7 +128482,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128507,7 +128507,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128531,7 +128531,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128554,7 +128554,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128577,7 +128577,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128600,7 +128600,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128622,7 +128622,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128644,7 +128644,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128666,7 +128666,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128687,7 +128687,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128708,7 +128708,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128729,7 +128729,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128752,7 +128752,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128777,7 +128777,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128801,7 +128801,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128824,7 +128824,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128847,7 +128847,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128870,7 +128870,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128892,7 +128892,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128914,7 +128914,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128936,7 +128936,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128957,7 +128957,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128978,7 +128978,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -128999,7 +128999,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129022,7 +129022,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129047,7 +129047,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129071,7 +129071,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129094,7 +129094,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129117,7 +129117,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129140,7 +129140,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129162,7 +129162,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129184,7 +129184,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129206,7 +129206,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129227,7 +129227,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129248,7 +129248,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129269,7 +129269,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129292,7 +129292,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129317,7 +129317,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129341,7 +129341,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129364,7 +129364,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129387,7 +129387,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129410,7 +129410,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129432,7 +129432,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129454,7 +129454,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129476,7 +129476,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129497,7 +129497,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129518,7 +129518,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129539,7 +129539,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129562,7 +129562,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129587,7 +129587,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129611,7 +129611,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129634,7 +129634,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129657,7 +129657,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129680,7 +129680,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129702,7 +129702,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129724,7 +129724,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129746,7 +129746,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129767,7 +129767,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129788,7 +129788,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129809,7 +129809,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129832,7 +129832,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129857,7 +129857,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129881,7 +129881,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129904,7 +129904,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129927,7 +129927,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129950,7 +129950,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129972,7 +129972,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -129994,7 +129994,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130016,7 +130016,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130037,7 +130037,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130058,7 +130058,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130079,7 +130079,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130102,7 +130102,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130127,7 +130127,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130151,7 +130151,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130174,7 +130174,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130197,7 +130197,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130220,7 +130220,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130242,7 +130242,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130264,7 +130264,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130286,7 +130286,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130307,7 +130307,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130328,7 +130328,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130349,7 +130349,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130372,7 +130372,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130397,7 +130397,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130421,7 +130421,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130444,7 +130444,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130467,7 +130467,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130490,7 +130490,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130512,7 +130512,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130534,7 +130534,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130556,7 +130556,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130577,7 +130577,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130598,7 +130598,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130619,7 +130619,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130642,7 +130642,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130667,7 +130667,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130691,7 +130691,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130714,7 +130714,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130737,7 +130737,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130760,7 +130760,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130782,7 +130782,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130804,7 +130804,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130826,7 +130826,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130847,7 +130847,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130868,7 +130868,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130889,7 +130889,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130912,7 +130912,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130937,7 +130937,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130961,7 +130961,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -130984,7 +130984,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131007,7 +131007,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131030,7 +131030,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131052,7 +131052,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131074,7 +131074,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131096,7 +131096,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131117,7 +131117,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131138,7 +131138,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131159,7 +131159,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131182,7 +131182,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131207,7 +131207,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131231,7 +131231,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131254,7 +131254,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131277,7 +131277,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131300,7 +131300,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131322,7 +131322,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131344,7 +131344,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131366,7 +131366,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131387,7 +131387,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131408,7 +131408,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131429,7 +131429,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131452,7 +131452,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131477,7 +131477,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131501,7 +131501,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131524,7 +131524,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131547,7 +131547,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131570,7 +131570,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131592,7 +131592,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131614,7 +131614,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131636,7 +131636,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131657,7 +131657,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131678,7 +131678,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131699,7 +131699,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131722,7 +131722,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131747,7 +131747,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131771,7 +131771,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131794,7 +131794,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131817,7 +131817,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131840,7 +131840,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131862,7 +131862,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131884,7 +131884,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131906,7 +131906,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131927,7 +131927,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131948,7 +131948,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131969,7 +131969,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -131992,7 +131992,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132017,7 +132017,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132041,7 +132041,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132064,7 +132064,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132087,7 +132087,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132110,7 +132110,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132132,7 +132132,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132154,7 +132154,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132176,7 +132176,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132197,7 +132197,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132218,7 +132218,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132239,7 +132239,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132262,7 +132262,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132287,7 +132287,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132311,7 +132311,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132334,7 +132334,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132357,7 +132357,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132380,7 +132380,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132402,7 +132402,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132424,7 +132424,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132446,7 +132446,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132467,7 +132467,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132488,7 +132488,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132509,7 +132509,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132532,7 +132532,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132557,7 +132557,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132581,7 +132581,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132604,7 +132604,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132627,7 +132627,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132650,7 +132650,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132672,7 +132672,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132694,7 +132694,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132716,7 +132716,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132737,7 +132737,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132758,7 +132758,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132779,7 +132779,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132802,7 +132802,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132827,7 +132827,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132851,7 +132851,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132874,7 +132874,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132897,7 +132897,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132920,7 +132920,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132942,7 +132942,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132964,7 +132964,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -132986,7 +132986,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133007,7 +133007,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133028,7 +133028,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133049,7 +133049,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133072,7 +133072,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133097,7 +133097,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133121,7 +133121,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133144,7 +133144,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133167,7 +133167,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133190,7 +133190,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133212,7 +133212,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133234,7 +133234,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133256,7 +133256,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133277,7 +133277,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133298,7 +133298,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133319,7 +133319,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133342,7 +133342,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133367,7 +133367,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133391,7 +133391,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133414,7 +133414,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133437,7 +133437,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133460,7 +133460,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133482,7 +133482,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133504,7 +133504,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133526,7 +133526,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133547,7 +133547,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133568,7 +133568,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133589,7 +133589,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133612,7 +133612,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133637,7 +133637,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133661,7 +133661,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133684,7 +133684,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133707,7 +133707,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133730,7 +133730,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133752,7 +133752,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133774,7 +133774,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133796,7 +133796,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133817,7 +133817,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133838,7 +133838,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133859,7 +133859,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133882,7 +133882,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133907,7 +133907,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133931,7 +133931,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133954,7 +133954,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -133977,7 +133977,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134000,7 +134000,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134022,7 +134022,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134044,7 +134044,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134066,7 +134066,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134087,7 +134087,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134108,7 +134108,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134129,7 +134129,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134152,7 +134152,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134177,7 +134177,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134201,7 +134201,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134224,7 +134224,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134247,7 +134247,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134270,7 +134270,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134292,7 +134292,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134314,7 +134314,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134336,7 +134336,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134357,7 +134357,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134378,7 +134378,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134399,7 +134399,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134422,7 +134422,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134447,7 +134447,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134471,7 +134471,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134494,7 +134494,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134517,7 +134517,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134540,7 +134540,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134562,7 +134562,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134584,7 +134584,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134606,7 +134606,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134627,7 +134627,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134648,7 +134648,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134669,7 +134669,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134692,7 +134692,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134717,7 +134717,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134741,7 +134741,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134764,7 +134764,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134787,7 +134787,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134810,7 +134810,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134832,7 +134832,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134854,7 +134854,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134876,7 +134876,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134897,7 +134897,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134918,7 +134918,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134939,7 +134939,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134962,7 +134962,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -134987,7 +134987,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135011,7 +135011,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135034,7 +135034,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135057,7 +135057,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135080,7 +135080,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135102,7 +135102,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135124,7 +135124,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135146,7 +135146,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135167,7 +135167,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135188,7 +135188,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135209,7 +135209,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135232,7 +135232,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135257,7 +135257,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135281,7 +135281,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135304,7 +135304,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135327,7 +135327,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135350,7 +135350,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135372,7 +135372,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135394,7 +135394,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135416,7 +135416,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135437,7 +135437,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135458,7 +135458,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135479,7 +135479,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135502,7 +135502,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135527,7 +135527,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135551,7 +135551,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135574,7 +135574,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135597,7 +135597,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135620,7 +135620,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135642,7 +135642,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135664,7 +135664,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135686,7 +135686,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135707,7 +135707,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135728,7 +135728,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135749,7 +135749,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135772,7 +135772,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135797,7 +135797,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135821,7 +135821,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135844,7 +135844,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135867,7 +135867,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135890,7 +135890,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135912,7 +135912,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135934,7 +135934,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135956,7 +135956,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135977,7 +135977,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -135998,7 +135998,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136019,7 +136019,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136042,7 +136042,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136067,7 +136067,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136091,7 +136091,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136114,7 +136114,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136137,7 +136137,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136160,7 +136160,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136182,7 +136182,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136204,7 +136204,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136226,7 +136226,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136247,7 +136247,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136268,7 +136268,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136289,7 +136289,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136312,7 +136312,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136337,7 +136337,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136361,7 +136361,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136384,7 +136384,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136407,7 +136407,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136430,7 +136430,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136452,7 +136452,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136474,7 +136474,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136496,7 +136496,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136517,7 +136517,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136538,7 +136538,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136559,7 +136559,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136582,7 +136582,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136607,7 +136607,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136631,7 +136631,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136654,7 +136654,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136677,7 +136677,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136700,7 +136700,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136722,7 +136722,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136744,7 +136744,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136766,7 +136766,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136787,7 +136787,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136808,7 +136808,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136829,7 +136829,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136852,7 +136852,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136877,7 +136877,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136901,7 +136901,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136924,7 +136924,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136947,7 +136947,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136970,7 +136970,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -136992,7 +136992,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137014,7 +137014,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137036,7 +137036,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137057,7 +137057,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137078,7 +137078,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137099,7 +137099,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137122,7 +137122,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137147,7 +137147,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137171,7 +137171,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137194,7 +137194,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137217,7 +137217,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137240,7 +137240,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137262,7 +137262,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137284,7 +137284,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137306,7 +137306,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137327,7 +137327,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137348,7 +137348,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137369,7 +137369,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137392,7 +137392,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137417,7 +137417,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137441,7 +137441,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137464,7 +137464,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137487,7 +137487,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137510,7 +137510,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137532,7 +137532,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137554,7 +137554,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137576,7 +137576,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137597,7 +137597,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137618,7 +137618,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137639,7 +137639,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137662,7 +137662,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137687,7 +137687,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137711,7 +137711,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137734,7 +137734,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137757,7 +137757,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137780,7 +137780,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137802,7 +137802,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137824,7 +137824,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137846,7 +137846,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137867,7 +137867,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137888,7 +137888,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137909,7 +137909,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137932,7 +137932,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137957,7 +137957,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -137981,7 +137981,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138004,7 +138004,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138027,7 +138027,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138050,7 +138050,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138072,7 +138072,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138094,7 +138094,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138116,7 +138116,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138137,7 +138137,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138158,7 +138158,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138179,7 +138179,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138202,7 +138202,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138227,7 +138227,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138251,7 +138251,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138274,7 +138274,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138297,7 +138297,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138320,7 +138320,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138342,7 +138342,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138364,7 +138364,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138386,7 +138386,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138407,7 +138407,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138428,7 +138428,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138449,7 +138449,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138472,7 +138472,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138497,7 +138497,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138521,7 +138521,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138544,7 +138544,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138567,7 +138567,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138590,7 +138590,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138612,7 +138612,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138634,7 +138634,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138656,7 +138656,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138677,7 +138677,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138698,7 +138698,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138719,7 +138719,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138742,7 +138742,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138767,7 +138767,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138791,7 +138791,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138814,7 +138814,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138837,7 +138837,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138860,7 +138860,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138882,7 +138882,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138904,7 +138904,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138926,7 +138926,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138947,7 +138947,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138968,7 +138968,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -138989,7 +138989,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139012,7 +139012,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139037,7 +139037,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139061,7 +139061,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139084,7 +139084,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139107,7 +139107,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139130,7 +139130,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139152,7 +139152,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139174,7 +139174,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139196,7 +139196,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139217,7 +139217,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139238,7 +139238,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139259,7 +139259,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139282,7 +139282,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139307,7 +139307,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139331,7 +139331,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139354,7 +139354,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139377,7 +139377,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139400,7 +139400,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139422,7 +139422,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139444,7 +139444,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139466,7 +139466,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139487,7 +139487,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139508,7 +139508,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139529,7 +139529,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139552,7 +139552,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139577,7 +139577,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139601,7 +139601,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139624,7 +139624,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139647,7 +139647,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139670,7 +139670,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139692,7 +139692,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139714,7 +139714,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139736,7 +139736,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139757,7 +139757,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139778,7 +139778,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139799,7 +139799,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139822,7 +139822,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139847,7 +139847,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139871,7 +139871,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139894,7 +139894,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139917,7 +139917,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139940,7 +139940,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139962,7 +139962,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -139984,7 +139984,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140006,7 +140006,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140027,7 +140027,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140048,7 +140048,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140069,7 +140069,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140092,7 +140092,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140117,7 +140117,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140141,7 +140141,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140164,7 +140164,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140187,7 +140187,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140210,7 +140210,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140232,7 +140232,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140254,7 +140254,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140276,7 +140276,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140297,7 +140297,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140318,7 +140318,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140339,7 +140339,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140362,7 +140362,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140387,7 +140387,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140411,7 +140411,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140434,7 +140434,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140457,7 +140457,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140480,7 +140480,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140502,7 +140502,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140524,7 +140524,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140546,7 +140546,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140567,7 +140567,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140588,7 +140588,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140609,7 +140609,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140632,7 +140632,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140657,7 +140657,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140681,7 +140681,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140704,7 +140704,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140727,7 +140727,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140750,7 +140750,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140772,7 +140772,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140794,7 +140794,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140816,7 +140816,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140837,7 +140837,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140858,7 +140858,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140884,7 +140884,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140907,7 +140907,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140932,7 +140932,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140956,7 +140956,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -140979,7 +140979,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141002,7 +141002,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141025,7 +141025,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141047,7 +141047,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141069,7 +141069,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141091,7 +141091,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141112,7 +141112,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141133,7 +141133,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141154,7 +141154,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141177,7 +141177,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141202,7 +141202,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141226,7 +141226,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141249,7 +141249,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141272,7 +141272,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141295,7 +141295,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141317,7 +141317,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141339,7 +141339,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141361,7 +141361,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141382,7 +141382,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141403,7 +141403,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141424,7 +141424,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141447,7 +141447,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141472,7 +141472,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141496,7 +141496,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141519,7 +141519,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141542,7 +141542,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141565,7 +141565,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141587,7 +141587,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141609,7 +141609,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141631,7 +141631,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141652,7 +141652,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141673,7 +141673,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141694,7 +141694,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141717,7 +141717,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141742,7 +141742,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141766,7 +141766,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141789,7 +141789,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141812,7 +141812,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141835,7 +141835,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141857,7 +141857,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141879,7 +141879,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141901,7 +141901,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141922,7 +141922,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141943,7 +141943,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141964,7 +141964,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -141987,7 +141987,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142012,7 +142012,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142036,7 +142036,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142059,7 +142059,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142082,7 +142082,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142105,7 +142105,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142127,7 +142127,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142149,7 +142149,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142171,7 +142171,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142192,7 +142192,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142213,7 +142213,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142234,7 +142234,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142257,7 +142257,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142282,7 +142282,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142306,7 +142306,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142329,7 +142329,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142352,7 +142352,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142375,7 +142375,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142397,7 +142397,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142419,7 +142419,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142441,7 +142441,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142462,7 +142462,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142483,7 +142483,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142504,7 +142504,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142527,7 +142527,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142552,7 +142552,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142576,7 +142576,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142599,7 +142599,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142622,7 +142622,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142645,7 +142645,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142667,7 +142667,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142689,7 +142689,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142711,7 +142711,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142732,7 +142732,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142753,7 +142753,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142774,7 +142774,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142797,7 +142797,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142822,7 +142822,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142846,7 +142846,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142869,7 +142869,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142892,7 +142892,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142915,7 +142915,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142937,7 +142937,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142959,7 +142959,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -142981,7 +142981,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143002,7 +143002,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143023,7 +143023,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143044,7 +143044,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143067,7 +143067,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143092,7 +143092,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143116,7 +143116,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143139,7 +143139,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143162,7 +143162,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143185,7 +143185,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143207,7 +143207,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143229,7 +143229,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143251,7 +143251,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143272,7 +143272,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143293,7 +143293,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143314,7 +143314,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143337,7 +143337,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143362,7 +143362,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143386,7 +143386,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143409,7 +143409,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143432,7 +143432,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143455,7 +143455,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143477,7 +143477,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143499,7 +143499,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143521,7 +143521,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143542,7 +143542,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143563,7 +143563,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143584,7 +143584,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143607,7 +143607,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143632,7 +143632,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143656,7 +143656,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143679,7 +143679,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143702,7 +143702,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143725,7 +143725,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143747,7 +143747,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143769,7 +143769,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143791,7 +143791,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143812,7 +143812,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143833,7 +143833,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143854,7 +143854,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143877,7 +143877,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143902,7 +143902,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143926,7 +143926,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143949,7 +143949,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143972,7 +143972,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -143995,7 +143995,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144017,7 +144017,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144039,7 +144039,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144061,7 +144061,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144082,7 +144082,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144103,7 +144103,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144124,7 +144124,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144147,7 +144147,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144172,7 +144172,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144196,7 +144196,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144219,7 +144219,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144242,7 +144242,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144265,7 +144265,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144287,7 +144287,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144309,7 +144309,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144331,7 +144331,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144352,7 +144352,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144373,7 +144373,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144394,7 +144394,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144417,7 +144417,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144442,7 +144442,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144466,7 +144466,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144489,7 +144489,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144512,7 +144512,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144535,7 +144535,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144557,7 +144557,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144579,7 +144579,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144601,7 +144601,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144622,7 +144622,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144643,7 +144643,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144664,7 +144664,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144687,7 +144687,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144712,7 +144712,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144736,7 +144736,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144759,7 +144759,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144782,7 +144782,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144805,7 +144805,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144827,7 +144827,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144849,7 +144849,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144871,7 +144871,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144892,7 +144892,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144913,7 +144913,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144934,7 +144934,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144957,7 +144957,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -144982,7 +144982,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145006,7 +145006,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145029,7 +145029,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145052,7 +145052,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145075,7 +145075,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145097,7 +145097,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145119,7 +145119,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145141,7 +145141,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145162,7 +145162,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145183,7 +145183,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145204,7 +145204,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145227,7 +145227,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145252,7 +145252,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145276,7 +145276,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145299,7 +145299,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145322,7 +145322,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145345,7 +145345,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145367,7 +145367,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145389,7 +145389,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145411,7 +145411,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145432,7 +145432,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145453,7 +145453,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145479,7 +145479,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145502,7 +145502,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145527,7 +145527,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145551,7 +145551,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145574,7 +145574,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145597,7 +145597,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145620,7 +145620,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145642,7 +145642,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145664,7 +145664,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145686,7 +145686,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145707,7 +145707,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145728,7 +145728,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145749,7 +145749,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145772,7 +145772,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145797,7 +145797,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145821,7 +145821,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145844,7 +145844,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145867,7 +145867,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145890,7 +145890,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145912,7 +145912,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145934,7 +145934,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145956,7 +145956,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145977,7 +145977,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -145998,7 +145998,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146019,7 +146019,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146042,7 +146042,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146067,7 +146067,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146091,7 +146091,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146114,7 +146114,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146137,7 +146137,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146160,7 +146160,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146182,7 +146182,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146204,7 +146204,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146226,7 +146226,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146247,7 +146247,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146268,7 +146268,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146289,7 +146289,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146312,7 +146312,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146337,7 +146337,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146361,7 +146361,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146384,7 +146384,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146407,7 +146407,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146430,7 +146430,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146452,7 +146452,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146474,7 +146474,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146496,7 +146496,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146517,7 +146517,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146538,7 +146538,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146559,7 +146559,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146582,7 +146582,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146607,7 +146607,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146631,7 +146631,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146654,7 +146654,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146677,7 +146677,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146700,7 +146700,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146722,7 +146722,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146744,7 +146744,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146766,7 +146766,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146787,7 +146787,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146808,7 +146808,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146829,7 +146829,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146852,7 +146852,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146877,7 +146877,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146901,7 +146901,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146924,7 +146924,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146947,7 +146947,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146970,7 +146970,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -146992,7 +146992,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147014,7 +147014,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147036,7 +147036,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147057,7 +147057,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147078,7 +147078,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147099,7 +147099,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147122,7 +147122,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147147,7 +147147,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147171,7 +147171,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147194,7 +147194,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147217,7 +147217,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147240,7 +147240,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147262,7 +147262,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147284,7 +147284,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147306,7 +147306,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147327,7 +147327,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147348,7 +147348,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147369,7 +147369,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147392,7 +147392,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147417,7 +147417,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147441,7 +147441,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147464,7 +147464,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147487,7 +147487,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147510,7 +147510,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147532,7 +147532,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147554,7 +147554,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147576,7 +147576,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147597,7 +147597,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147618,7 +147618,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147639,7 +147639,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147662,7 +147662,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147687,7 +147687,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147711,7 +147711,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147734,7 +147734,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147757,7 +147757,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147780,7 +147780,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147802,7 +147802,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147824,7 +147824,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147846,7 +147846,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147867,7 +147867,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147888,7 +147888,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147909,7 +147909,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147932,7 +147932,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147957,7 +147957,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -147981,7 +147981,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148004,7 +148004,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148027,7 +148027,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148050,7 +148050,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148072,7 +148072,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148094,7 +148094,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148116,7 +148116,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148137,7 +148137,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148158,7 +148158,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148179,7 +148179,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148202,7 +148202,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148227,7 +148227,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148251,7 +148251,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148274,7 +148274,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148297,7 +148297,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148320,7 +148320,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148342,7 +148342,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148364,7 +148364,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148386,7 +148386,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148407,7 +148407,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148428,7 +148428,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148449,7 +148449,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148472,7 +148472,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148497,7 +148497,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148521,7 +148521,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148544,7 +148544,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148567,7 +148567,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148590,7 +148590,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148612,7 +148612,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148634,7 +148634,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148656,7 +148656,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148677,7 +148677,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148698,7 +148698,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148719,7 +148719,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148742,7 +148742,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148767,7 +148767,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148791,7 +148791,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148814,7 +148814,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148837,7 +148837,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148860,7 +148860,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148882,7 +148882,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148904,7 +148904,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148926,7 +148926,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148947,7 +148947,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148968,7 +148968,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -148989,7 +148989,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149012,7 +149012,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149037,7 +149037,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149061,7 +149061,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149084,7 +149084,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149107,7 +149107,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149130,7 +149130,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149152,7 +149152,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149174,7 +149174,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149196,7 +149196,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149217,7 +149217,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149238,7 +149238,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149259,7 +149259,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149282,7 +149282,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149307,7 +149307,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149331,7 +149331,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149354,7 +149354,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149377,7 +149377,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149400,7 +149400,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149422,7 +149422,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149444,7 +149444,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149466,7 +149466,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149487,7 +149487,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149508,7 +149508,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149529,7 +149529,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149552,7 +149552,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149577,7 +149577,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149601,7 +149601,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149624,7 +149624,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149647,7 +149647,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149670,7 +149670,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149692,7 +149692,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149714,7 +149714,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149736,7 +149736,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149757,7 +149757,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149778,7 +149778,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149799,7 +149799,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149822,7 +149822,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149847,7 +149847,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149871,7 +149871,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149894,7 +149894,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149917,7 +149917,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149940,7 +149940,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149962,7 +149962,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -149984,7 +149984,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150006,7 +150006,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150027,7 +150027,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150048,7 +150048,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150069,7 +150069,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150092,7 +150092,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150117,7 +150117,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150141,7 +150141,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150164,7 +150164,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150187,7 +150187,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150210,7 +150210,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150232,7 +150232,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150254,7 +150254,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150276,7 +150276,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150297,7 +150297,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150318,7 +150318,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150339,7 +150339,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150362,7 +150362,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150387,7 +150387,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150411,7 +150411,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150434,7 +150434,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150457,7 +150457,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150480,7 +150480,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150502,7 +150502,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150524,7 +150524,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150546,7 +150546,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150567,7 +150567,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150588,7 +150588,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150609,7 +150609,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150632,7 +150632,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150657,7 +150657,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150681,7 +150681,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150704,7 +150704,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150727,7 +150727,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150750,7 +150750,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150772,7 +150772,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150794,7 +150794,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150816,7 +150816,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150837,7 +150837,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150858,7 +150858,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150879,7 +150879,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150902,7 +150902,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150927,7 +150927,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150951,7 +150951,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150974,7 +150974,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -150997,7 +150997,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151020,7 +151020,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151042,7 +151042,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151064,7 +151064,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151086,7 +151086,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151107,7 +151107,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151128,7 +151128,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151149,7 +151149,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151172,7 +151172,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151197,7 +151197,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151221,7 +151221,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151244,7 +151244,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151267,7 +151267,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151290,7 +151290,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151312,7 +151312,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151334,7 +151334,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151356,7 +151356,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151377,7 +151377,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151398,7 +151398,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151419,7 +151419,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151442,7 +151442,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151467,7 +151467,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151491,7 +151491,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151514,7 +151514,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151537,7 +151537,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151560,7 +151560,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151582,7 +151582,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151604,7 +151604,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151626,7 +151626,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151647,7 +151647,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151668,7 +151668,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151689,7 +151689,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151712,7 +151712,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151737,7 +151737,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151761,7 +151761,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151784,7 +151784,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151807,7 +151807,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151830,7 +151830,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151852,7 +151852,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151874,7 +151874,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151896,7 +151896,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151917,7 +151917,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151938,7 +151938,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151959,7 +151959,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -151982,7 +151982,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152007,7 +152007,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152031,7 +152031,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152054,7 +152054,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152077,7 +152077,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152100,7 +152100,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152122,7 +152122,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152144,7 +152144,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152166,7 +152166,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152187,7 +152187,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152208,7 +152208,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152229,7 +152229,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152252,7 +152252,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152277,7 +152277,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152301,7 +152301,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152324,7 +152324,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152347,7 +152347,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152370,7 +152370,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152392,7 +152392,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152414,7 +152414,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152436,7 +152436,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152457,7 +152457,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152478,7 +152478,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152499,7 +152499,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152522,7 +152522,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152547,7 +152547,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152571,7 +152571,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152594,7 +152594,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152617,7 +152617,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152640,7 +152640,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152662,7 +152662,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152684,7 +152684,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152706,7 +152706,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152727,7 +152727,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152748,7 +152748,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152769,7 +152769,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152792,7 +152792,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152817,7 +152817,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152841,7 +152841,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152864,7 +152864,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152887,7 +152887,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152910,7 +152910,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152932,7 +152932,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152954,7 +152954,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152976,7 +152976,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -152997,7 +152997,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153018,7 +153018,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153039,7 +153039,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153062,7 +153062,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153087,7 +153087,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153111,7 +153111,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153134,7 +153134,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153157,7 +153157,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153180,7 +153180,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153202,7 +153202,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153224,7 +153224,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153246,7 +153246,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153267,7 +153267,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153288,7 +153288,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153309,7 +153309,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153332,7 +153332,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153357,7 +153357,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153381,7 +153381,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153404,7 +153404,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153427,7 +153427,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153450,7 +153450,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153472,7 +153472,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153494,7 +153494,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153516,7 +153516,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153537,7 +153537,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153558,7 +153558,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153579,7 +153579,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153602,7 +153602,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153627,7 +153627,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153651,7 +153651,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153674,7 +153674,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153697,7 +153697,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153720,7 +153720,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153742,7 +153742,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153764,7 +153764,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153786,7 +153786,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153807,7 +153807,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153828,7 +153828,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153849,7 +153849,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153872,7 +153872,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153897,7 +153897,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153921,7 +153921,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153944,7 +153944,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153967,7 +153967,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -153990,7 +153990,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154012,7 +154012,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154034,7 +154034,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154056,7 +154056,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154077,7 +154077,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154098,7 +154098,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154119,7 +154119,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154142,7 +154142,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154167,7 +154167,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154191,7 +154191,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154214,7 +154214,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154237,7 +154237,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154260,7 +154260,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154282,7 +154282,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154304,7 +154304,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154326,7 +154326,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154347,7 +154347,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154368,7 +154368,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154389,7 +154389,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154412,7 +154412,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154437,7 +154437,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154461,7 +154461,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154484,7 +154484,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154507,7 +154507,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154530,7 +154530,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154552,7 +154552,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154574,7 +154574,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154596,7 +154596,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154617,7 +154617,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154638,7 +154638,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154659,7 +154659,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154682,7 +154682,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154707,7 +154707,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154731,7 +154731,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154754,7 +154754,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154777,7 +154777,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154800,7 +154800,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154822,7 +154822,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154844,7 +154844,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154866,7 +154866,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154887,7 +154887,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154908,7 +154908,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154934,7 +154934,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154955,7 +154955,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154976,7 +154976,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -154997,7 +154997,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155018,7 +155018,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155039,7 +155039,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155060,7 +155060,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155081,7 +155081,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155102,7 +155102,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155128,7 +155128,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155151,7 +155151,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155176,7 +155176,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155200,7 +155200,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155223,7 +155223,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155246,7 +155246,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155269,7 +155269,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155291,7 +155291,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155313,7 +155313,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155335,7 +155335,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155356,7 +155356,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155377,7 +155377,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155398,7 +155398,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155421,7 +155421,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155446,7 +155446,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155470,7 +155470,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155493,7 +155493,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155516,7 +155516,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155539,7 +155539,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155561,7 +155561,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155583,7 +155583,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155605,7 +155605,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155626,7 +155626,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155647,7 +155647,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155668,7 +155668,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155691,7 +155691,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155716,7 +155716,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155740,7 +155740,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155763,7 +155763,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155786,7 +155786,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155809,7 +155809,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155831,7 +155831,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155853,7 +155853,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155875,7 +155875,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155896,7 +155896,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155917,7 +155917,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155938,7 +155938,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155961,7 +155961,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -155986,7 +155986,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156010,7 +156010,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156033,7 +156033,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156056,7 +156056,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156079,7 +156079,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156101,7 +156101,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156123,7 +156123,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156145,7 +156145,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156166,7 +156166,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156187,7 +156187,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156208,7 +156208,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156231,7 +156231,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156256,7 +156256,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156280,7 +156280,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156303,7 +156303,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156326,7 +156326,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156349,7 +156349,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156371,7 +156371,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156393,7 +156393,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156415,7 +156415,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156436,7 +156436,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156457,7 +156457,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156478,7 +156478,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156501,7 +156501,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156526,7 +156526,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156550,7 +156550,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156573,7 +156573,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156596,7 +156596,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156619,7 +156619,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156641,7 +156641,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156663,7 +156663,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156685,7 +156685,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156706,7 +156706,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156727,7 +156727,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156748,7 +156748,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156771,7 +156771,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156796,7 +156796,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156820,7 +156820,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156843,7 +156843,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156866,7 +156866,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156889,7 +156889,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156911,7 +156911,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156933,7 +156933,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156955,7 +156955,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156976,7 +156976,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -156997,7 +156997,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157018,7 +157018,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157041,7 +157041,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157066,7 +157066,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157090,7 +157090,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157113,7 +157113,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157136,7 +157136,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157159,7 +157159,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157181,7 +157181,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157203,7 +157203,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157225,7 +157225,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157246,7 +157246,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157267,7 +157267,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157288,7 +157288,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157311,7 +157311,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157336,7 +157336,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157360,7 +157360,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157383,7 +157383,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157406,7 +157406,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157429,7 +157429,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157451,7 +157451,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157473,7 +157473,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157495,7 +157495,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157516,7 +157516,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157537,7 +157537,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157558,7 +157558,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157581,7 +157581,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157606,7 +157606,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157630,7 +157630,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157653,7 +157653,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157676,7 +157676,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157699,7 +157699,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157721,7 +157721,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157743,7 +157743,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157765,7 +157765,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157786,7 +157786,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157807,7 +157807,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157828,7 +157828,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157851,7 +157851,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157876,7 +157876,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157900,7 +157900,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157923,7 +157923,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157946,7 +157946,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157969,7 +157969,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -157991,7 +157991,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158013,7 +158013,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158035,7 +158035,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158056,7 +158056,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158077,7 +158077,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158098,7 +158098,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158121,7 +158121,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158146,7 +158146,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158170,7 +158170,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158193,7 +158193,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158216,7 +158216,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158239,7 +158239,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158261,7 +158261,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158283,7 +158283,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158305,7 +158305,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158326,7 +158326,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158347,7 +158347,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158368,7 +158368,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158391,7 +158391,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158416,7 +158416,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158440,7 +158440,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158463,7 +158463,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158486,7 +158486,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158509,7 +158509,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158531,7 +158531,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158553,7 +158553,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158575,7 +158575,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158596,7 +158596,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158617,7 +158617,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158638,7 +158638,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158661,7 +158661,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158686,7 +158686,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158710,7 +158710,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158733,7 +158733,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158756,7 +158756,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158779,7 +158779,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158801,7 +158801,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158823,7 +158823,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158845,7 +158845,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158866,7 +158866,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158887,7 +158887,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158908,7 +158908,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158931,7 +158931,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158956,7 +158956,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -158980,7 +158980,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159003,7 +159003,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159026,7 +159026,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159049,7 +159049,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159071,7 +159071,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159093,7 +159093,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159115,7 +159115,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159136,7 +159136,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159157,7 +159157,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159178,7 +159178,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159201,7 +159201,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159226,7 +159226,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159250,7 +159250,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159273,7 +159273,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159296,7 +159296,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159319,7 +159319,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159341,7 +159341,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159363,7 +159363,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159385,7 +159385,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159406,7 +159406,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159427,7 +159427,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159448,7 +159448,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159471,7 +159471,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159496,7 +159496,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159520,7 +159520,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159543,7 +159543,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159566,7 +159566,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159589,7 +159589,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159611,7 +159611,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159633,7 +159633,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159655,7 +159655,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159676,7 +159676,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159697,7 +159697,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159718,7 +159718,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159741,7 +159741,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159766,7 +159766,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159790,7 +159790,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159813,7 +159813,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159836,7 +159836,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159859,7 +159859,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159881,7 +159881,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159903,7 +159903,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159925,7 +159925,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159946,7 +159946,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159967,7 +159967,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -159988,7 +159988,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160011,7 +160011,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160036,7 +160036,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160060,7 +160060,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160083,7 +160083,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160106,7 +160106,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160129,7 +160129,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160151,7 +160151,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160173,7 +160173,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160195,7 +160195,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160216,7 +160216,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160237,7 +160237,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160258,7 +160258,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160281,7 +160281,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160306,7 +160306,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160330,7 +160330,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160353,7 +160353,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160376,7 +160376,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160399,7 +160399,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160421,7 +160421,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160443,7 +160443,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160465,7 +160465,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160486,7 +160486,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160507,7 +160507,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160528,7 +160528,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160551,7 +160551,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160576,7 +160576,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160600,7 +160600,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160623,7 +160623,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160646,7 +160646,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160669,7 +160669,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160691,7 +160691,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160713,7 +160713,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160735,7 +160735,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160756,7 +160756,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160777,7 +160777,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160798,7 +160798,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160821,7 +160821,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160846,7 +160846,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160870,7 +160870,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160893,7 +160893,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160916,7 +160916,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160939,7 +160939,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160961,7 +160961,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -160983,7 +160983,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161005,7 +161005,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161026,7 +161026,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161047,7 +161047,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161068,7 +161068,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161091,7 +161091,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161116,7 +161116,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161140,7 +161140,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161163,7 +161163,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161186,7 +161186,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161209,7 +161209,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161231,7 +161231,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161253,7 +161253,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161275,7 +161275,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161296,7 +161296,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161317,7 +161317,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161338,7 +161338,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161361,7 +161361,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161386,7 +161386,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161410,7 +161410,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161433,7 +161433,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161456,7 +161456,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161479,7 +161479,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161501,7 +161501,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161523,7 +161523,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161545,7 +161545,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161566,7 +161566,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161587,7 +161587,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161608,7 +161608,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161631,7 +161631,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161656,7 +161656,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161680,7 +161680,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161703,7 +161703,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161726,7 +161726,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161749,7 +161749,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161771,7 +161771,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161793,7 +161793,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161815,7 +161815,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161836,7 +161836,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161857,7 +161857,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161878,7 +161878,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161901,7 +161901,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161926,7 +161926,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161950,7 +161950,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161973,7 +161973,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -161996,7 +161996,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162019,7 +162019,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162041,7 +162041,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162063,7 +162063,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162085,7 +162085,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162106,7 +162106,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162127,7 +162127,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162148,7 +162148,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162171,7 +162171,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162196,7 +162196,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162220,7 +162220,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162243,7 +162243,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162266,7 +162266,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162289,7 +162289,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162311,7 +162311,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162333,7 +162333,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162355,7 +162355,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162376,7 +162376,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162397,7 +162397,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162418,7 +162418,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162441,7 +162441,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162466,7 +162466,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162490,7 +162490,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162513,7 +162513,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162536,7 +162536,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162559,7 +162559,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162581,7 +162581,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162603,7 +162603,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162625,7 +162625,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162646,7 +162646,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162667,7 +162667,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162688,7 +162688,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162711,7 +162711,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162736,7 +162736,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162760,7 +162760,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162783,7 +162783,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162806,7 +162806,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162829,7 +162829,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162851,7 +162851,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162873,7 +162873,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162895,7 +162895,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162916,7 +162916,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162937,7 +162937,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162958,7 +162958,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -162981,7 +162981,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163006,7 +163006,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163030,7 +163030,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163053,7 +163053,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163076,7 +163076,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163099,7 +163099,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163121,7 +163121,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163143,7 +163143,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163165,7 +163165,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163186,7 +163186,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163207,7 +163207,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163228,7 +163228,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163251,7 +163251,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163276,7 +163276,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163300,7 +163300,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163323,7 +163323,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163346,7 +163346,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163369,7 +163369,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163391,7 +163391,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163413,7 +163413,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163435,7 +163435,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163456,7 +163456,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163477,7 +163477,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163498,7 +163498,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163521,7 +163521,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163546,7 +163546,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163570,7 +163570,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163593,7 +163593,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163616,7 +163616,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163639,7 +163639,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163661,7 +163661,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163683,7 +163683,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163705,7 +163705,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163726,7 +163726,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163747,7 +163747,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163768,7 +163768,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163791,7 +163791,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163816,7 +163816,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163840,7 +163840,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163863,7 +163863,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163886,7 +163886,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163909,7 +163909,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163931,7 +163931,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163953,7 +163953,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163975,7 +163975,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -163996,7 +163996,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164017,7 +164017,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164038,7 +164038,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164061,7 +164061,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164086,7 +164086,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164110,7 +164110,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164133,7 +164133,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164156,7 +164156,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164179,7 +164179,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164201,7 +164201,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164223,7 +164223,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164245,7 +164245,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164266,7 +164266,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164287,7 +164287,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164308,7 +164308,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164331,7 +164331,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164356,7 +164356,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164380,7 +164380,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164403,7 +164403,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164426,7 +164426,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164449,7 +164449,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164471,7 +164471,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164493,7 +164493,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164515,7 +164515,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164536,7 +164536,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164557,7 +164557,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164578,7 +164578,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164601,7 +164601,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164626,7 +164626,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164650,7 +164650,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164673,7 +164673,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164696,7 +164696,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164719,7 +164719,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164741,7 +164741,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164763,7 +164763,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164785,7 +164785,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164806,7 +164806,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164827,7 +164827,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164848,7 +164848,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164871,7 +164871,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164896,7 +164896,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164920,7 +164920,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164943,7 +164943,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164966,7 +164966,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -164989,7 +164989,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165011,7 +165011,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165033,7 +165033,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165055,7 +165055,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165076,7 +165076,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165097,7 +165097,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165118,7 +165118,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165141,7 +165141,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165166,7 +165166,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165190,7 +165190,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165213,7 +165213,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165236,7 +165236,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165259,7 +165259,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165281,7 +165281,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165303,7 +165303,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165325,7 +165325,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165346,7 +165346,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165367,7 +165367,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165388,7 +165388,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165411,7 +165411,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165436,7 +165436,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165460,7 +165460,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165483,7 +165483,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165506,7 +165506,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165529,7 +165529,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165551,7 +165551,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165573,7 +165573,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165595,7 +165595,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165616,7 +165616,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165637,7 +165637,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165658,7 +165658,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165681,7 +165681,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165706,7 +165706,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165730,7 +165730,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165753,7 +165753,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165776,7 +165776,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165799,7 +165799,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165821,7 +165821,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165843,7 +165843,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165865,7 +165865,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165886,7 +165886,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165907,7 +165907,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165928,7 +165928,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165951,7 +165951,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -165976,7 +165976,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166000,7 +166000,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166023,7 +166023,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166046,7 +166046,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166069,7 +166069,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166091,7 +166091,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166113,7 +166113,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166135,7 +166135,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166156,7 +166156,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166177,7 +166177,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166198,7 +166198,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166221,7 +166221,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166246,7 +166246,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166270,7 +166270,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166293,7 +166293,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166316,7 +166316,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166339,7 +166339,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166361,7 +166361,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166383,7 +166383,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166405,7 +166405,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166426,7 +166426,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166447,7 +166447,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166468,7 +166468,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166491,7 +166491,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166516,7 +166516,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166540,7 +166540,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166563,7 +166563,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166586,7 +166586,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166609,7 +166609,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166631,7 +166631,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166653,7 +166653,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166675,7 +166675,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166696,7 +166696,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166717,7 +166717,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166738,7 +166738,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166761,7 +166761,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166786,7 +166786,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166810,7 +166810,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166833,7 +166833,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166856,7 +166856,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166879,7 +166879,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166901,7 +166901,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166923,7 +166923,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166945,7 +166945,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166966,7 +166966,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -166987,7 +166987,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167008,7 +167008,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167031,7 +167031,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167056,7 +167056,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167080,7 +167080,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167103,7 +167103,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167126,7 +167126,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167149,7 +167149,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167171,7 +167171,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167193,7 +167193,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167215,7 +167215,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167236,7 +167236,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167257,7 +167257,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167278,7 +167278,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167301,7 +167301,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167326,7 +167326,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167350,7 +167350,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167373,7 +167373,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167396,7 +167396,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167419,7 +167419,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167441,7 +167441,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167463,7 +167463,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167485,7 +167485,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167506,7 +167506,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167527,7 +167527,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167548,7 +167548,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167571,7 +167571,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167596,7 +167596,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167620,7 +167620,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167643,7 +167643,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167666,7 +167666,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167689,7 +167689,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167711,7 +167711,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167733,7 +167733,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167755,7 +167755,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167776,7 +167776,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167797,7 +167797,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167818,7 +167818,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167841,7 +167841,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167866,7 +167866,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167890,7 +167890,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167913,7 +167913,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167936,7 +167936,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167959,7 +167959,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -167981,7 +167981,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168003,7 +168003,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168025,7 +168025,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168046,7 +168046,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168067,7 +168067,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168088,7 +168088,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168111,7 +168111,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168136,7 +168136,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168160,7 +168160,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168183,7 +168183,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168206,7 +168206,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168229,7 +168229,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168251,7 +168251,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168273,7 +168273,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168295,7 +168295,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168316,7 +168316,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168337,7 +168337,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168358,7 +168358,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168381,7 +168381,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168406,7 +168406,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168430,7 +168430,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168453,7 +168453,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168476,7 +168476,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168499,7 +168499,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168521,7 +168521,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168543,7 +168543,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168565,7 +168565,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168586,7 +168586,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168607,7 +168607,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168628,7 +168628,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168651,7 +168651,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168676,7 +168676,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168700,7 +168700,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168723,7 +168723,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168746,7 +168746,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168769,7 +168769,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168791,7 +168791,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168813,7 +168813,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168835,7 +168835,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168856,7 +168856,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168877,7 +168877,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168898,7 +168898,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168921,7 +168921,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168946,7 +168946,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168970,7 +168970,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -168993,7 +168993,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169016,7 +169016,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169039,7 +169039,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169061,7 +169061,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169083,7 +169083,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169105,7 +169105,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169126,7 +169126,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169147,7 +169147,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169168,7 +169168,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169191,7 +169191,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169216,7 +169216,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169240,7 +169240,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169263,7 +169263,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169286,7 +169286,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169309,7 +169309,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169331,7 +169331,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169353,7 +169353,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169375,7 +169375,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169396,7 +169396,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169417,7 +169417,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169438,7 +169438,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169461,7 +169461,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169486,7 +169486,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169510,7 +169510,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169533,7 +169533,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169556,7 +169556,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169579,7 +169579,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169601,7 +169601,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169623,7 +169623,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169645,7 +169645,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169666,7 +169666,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169687,7 +169687,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169708,7 +169708,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169731,7 +169731,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169756,7 +169756,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169780,7 +169780,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169803,7 +169803,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169826,7 +169826,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169849,7 +169849,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169871,7 +169871,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169893,7 +169893,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169915,7 +169915,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169936,7 +169936,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169957,7 +169957,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -169978,7 +169978,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170001,7 +170001,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170026,7 +170026,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170050,7 +170050,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170073,7 +170073,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170096,7 +170096,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170119,7 +170119,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170141,7 +170141,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170163,7 +170163,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170185,7 +170185,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170206,7 +170206,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170227,7 +170227,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170248,7 +170248,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170271,7 +170271,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170296,7 +170296,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170320,7 +170320,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170343,7 +170343,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170366,7 +170366,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170389,7 +170389,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170411,7 +170411,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170433,7 +170433,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170455,7 +170455,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170476,7 +170476,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170497,7 +170497,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170518,7 +170518,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170541,7 +170541,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170566,7 +170566,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170590,7 +170590,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170613,7 +170613,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170636,7 +170636,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170659,7 +170659,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170681,7 +170681,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170703,7 +170703,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170725,7 +170725,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170746,7 +170746,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170767,7 +170767,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170788,7 +170788,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170811,7 +170811,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170836,7 +170836,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170860,7 +170860,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170883,7 +170883,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170906,7 +170906,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170929,7 +170929,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170951,7 +170951,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170973,7 +170973,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -170995,7 +170995,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171016,7 +171016,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171037,7 +171037,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171058,7 +171058,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171081,7 +171081,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171106,7 +171106,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171130,7 +171130,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171153,7 +171153,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171176,7 +171176,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171199,7 +171199,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171221,7 +171221,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171243,7 +171243,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171265,7 +171265,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171286,7 +171286,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171307,7 +171307,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171328,7 +171328,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171351,7 +171351,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171376,7 +171376,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171400,7 +171400,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171423,7 +171423,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171446,7 +171446,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171469,7 +171469,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171491,7 +171491,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171513,7 +171513,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171535,7 +171535,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171556,7 +171556,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171577,7 +171577,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171603,7 +171603,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171626,7 +171626,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171651,7 +171651,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171675,7 +171675,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171698,7 +171698,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171721,7 +171721,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171744,7 +171744,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171766,7 +171766,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171788,7 +171788,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171810,7 +171810,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171831,7 +171831,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171852,7 +171852,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171873,7 +171873,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171896,7 +171896,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171921,7 +171921,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171945,7 +171945,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171968,7 +171968,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -171991,7 +171991,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172014,7 +172014,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172036,7 +172036,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172058,7 +172058,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172080,7 +172080,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172101,7 +172101,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172122,7 +172122,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172143,7 +172143,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172166,7 +172166,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172191,7 +172191,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172215,7 +172215,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172238,7 +172238,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172261,7 +172261,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172284,7 +172284,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172306,7 +172306,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172328,7 +172328,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172350,7 +172350,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172371,7 +172371,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172392,7 +172392,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172413,7 +172413,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172436,7 +172436,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172461,7 +172461,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172485,7 +172485,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172508,7 +172508,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172531,7 +172531,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172554,7 +172554,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172576,7 +172576,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172598,7 +172598,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172620,7 +172620,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172641,7 +172641,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172662,7 +172662,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172683,7 +172683,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172706,7 +172706,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172731,7 +172731,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172755,7 +172755,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172778,7 +172778,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172801,7 +172801,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172824,7 +172824,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172846,7 +172846,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172868,7 +172868,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172890,7 +172890,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172911,7 +172911,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172932,7 +172932,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172953,7 +172953,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -172976,7 +172976,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173001,7 +173001,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173025,7 +173025,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173048,7 +173048,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173071,7 +173071,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173094,7 +173094,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173116,7 +173116,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173138,7 +173138,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173160,7 +173160,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173181,7 +173181,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173202,7 +173202,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173223,7 +173223,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173246,7 +173246,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173271,7 +173271,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173295,7 +173295,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173318,7 +173318,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173341,7 +173341,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173364,7 +173364,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173386,7 +173386,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173408,7 +173408,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173430,7 +173430,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173451,7 +173451,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173472,7 +173472,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173493,7 +173493,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173516,7 +173516,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173541,7 +173541,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173565,7 +173565,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173588,7 +173588,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173611,7 +173611,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173634,7 +173634,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173656,7 +173656,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173678,7 +173678,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173700,7 +173700,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173721,7 +173721,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173742,7 +173742,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173763,7 +173763,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173786,7 +173786,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173811,7 +173811,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173835,7 +173835,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173858,7 +173858,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173881,7 +173881,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173904,7 +173904,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173926,7 +173926,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173948,7 +173948,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173970,7 +173970,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -173991,7 +173991,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174012,7 +174012,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174038,7 +174038,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174061,7 +174061,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174086,7 +174086,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174110,7 +174110,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174133,7 +174133,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174156,7 +174156,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174179,7 +174179,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174201,7 +174201,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174223,7 +174223,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174245,7 +174245,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174266,7 +174266,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174287,7 +174287,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174308,7 +174308,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174331,7 +174331,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174356,7 +174356,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174380,7 +174380,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174403,7 +174403,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174426,7 +174426,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174449,7 +174449,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174471,7 +174471,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174493,7 +174493,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174515,7 +174515,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174536,7 +174536,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174557,7 +174557,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174578,7 +174578,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174601,7 +174601,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174626,7 +174626,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174650,7 +174650,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174673,7 +174673,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174696,7 +174696,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174719,7 +174719,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174741,7 +174741,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174763,7 +174763,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174785,7 +174785,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174806,7 +174806,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174827,7 +174827,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174848,7 +174848,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174871,7 +174871,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174896,7 +174896,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174920,7 +174920,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174943,7 +174943,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174966,7 +174966,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -174989,7 +174989,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175011,7 +175011,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175033,7 +175033,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175055,7 +175055,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175076,7 +175076,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175097,7 +175097,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175118,7 +175118,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175141,7 +175141,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175166,7 +175166,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175190,7 +175190,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175213,7 +175213,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175236,7 +175236,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175259,7 +175259,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175281,7 +175281,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175303,7 +175303,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175325,7 +175325,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175346,7 +175346,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175367,7 +175367,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175388,7 +175388,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175411,7 +175411,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175436,7 +175436,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175460,7 +175460,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175483,7 +175483,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175506,7 +175506,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175529,7 +175529,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175551,7 +175551,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175573,7 +175573,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175595,7 +175595,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175616,7 +175616,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175637,7 +175637,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175658,7 +175658,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175681,7 +175681,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175706,7 +175706,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175730,7 +175730,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175753,7 +175753,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175776,7 +175776,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175799,7 +175799,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175821,7 +175821,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175843,7 +175843,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175865,7 +175865,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175886,7 +175886,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175907,7 +175907,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175928,7 +175928,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175951,7 +175951,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -175976,7 +175976,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176000,7 +176000,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176023,7 +176023,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176046,7 +176046,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176069,7 +176069,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176091,7 +176091,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176113,7 +176113,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176135,7 +176135,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176156,7 +176156,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176177,7 +176177,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176203,7 +176203,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176224,7 +176224,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176245,7 +176245,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176266,7 +176266,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176292,7 +176292,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176313,7 +176313,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176336,7 +176336,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176361,7 +176361,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176385,7 +176385,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176408,7 +176408,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176431,7 +176431,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176454,7 +176454,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176476,7 +176476,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176498,7 +176498,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176520,7 +176520,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176541,7 +176541,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176562,7 +176562,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176583,7 +176583,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176604,7 +176604,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176627,7 +176627,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176652,7 +176652,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176676,7 +176676,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176699,7 +176699,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176722,7 +176722,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176745,7 +176745,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176767,7 +176767,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176789,7 +176789,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176811,7 +176811,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176832,7 +176832,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176853,7 +176853,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176874,7 +176874,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176897,7 +176897,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176922,7 +176922,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176946,7 +176946,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176969,7 +176969,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -176992,7 +176992,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177015,7 +177015,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177037,7 +177037,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177059,7 +177059,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177081,7 +177081,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177102,7 +177102,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177123,7 +177123,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177146,7 +177146,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177171,7 +177171,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177195,7 +177195,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177218,7 +177218,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177241,7 +177241,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177264,7 +177264,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177286,7 +177286,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177308,7 +177308,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177330,7 +177330,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177351,7 +177351,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177372,7 +177372,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177393,7 +177393,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177414,7 +177414,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177437,7 +177437,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177462,7 +177462,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177486,7 +177486,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177509,7 +177509,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177532,7 +177532,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177555,7 +177555,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177577,7 +177577,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177599,7 +177599,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177621,7 +177621,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177642,7 +177642,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177663,7 +177663,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177686,7 +177686,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177711,7 +177711,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177735,7 +177735,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177758,7 +177758,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177781,7 +177781,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177804,7 +177804,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177826,7 +177826,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177848,7 +177848,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177870,7 +177870,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177891,7 +177891,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177912,7 +177912,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177933,7 +177933,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177956,7 +177956,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -177981,7 +177981,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178005,7 +178005,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178028,7 +178028,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178051,7 +178051,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178074,7 +178074,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178096,7 +178096,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178118,7 +178118,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178140,7 +178140,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178161,7 +178161,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178182,7 +178182,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178203,7 +178203,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178226,7 +178226,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178251,7 +178251,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178275,7 +178275,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178298,7 +178298,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178321,7 +178321,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178344,7 +178344,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178366,7 +178366,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178388,7 +178388,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178410,7 +178410,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178431,7 +178431,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178457,7 +178457,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178478,7 +178478,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178501,7 +178501,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178526,7 +178526,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178550,7 +178550,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178573,7 +178573,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178596,7 +178596,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178619,7 +178619,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178641,7 +178641,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178663,7 +178663,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178685,7 +178685,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178706,7 +178706,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178727,7 +178727,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178753,7 +178753,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178774,7 +178774,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178797,7 +178797,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178822,7 +178822,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178846,7 +178846,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178869,7 +178869,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178892,7 +178892,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178915,7 +178915,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178937,7 +178937,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178959,7 +178959,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -178981,7 +178981,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179002,7 +179002,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179023,7 +179023,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179049,7 +179049,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179070,7 +179070,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179091,7 +179091,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179117,7 +179117,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179140,7 +179140,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179165,7 +179165,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179189,7 +179189,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179212,7 +179212,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179235,7 +179235,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179258,7 +179258,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179280,7 +179280,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179302,7 +179302,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179324,7 +179324,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179345,7 +179345,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179366,7 +179366,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179387,7 +179387,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179410,7 +179410,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179435,7 +179435,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179459,7 +179459,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179482,7 +179482,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179505,7 +179505,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179528,7 +179528,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179550,7 +179550,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179572,7 +179572,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179594,7 +179594,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179615,7 +179615,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179636,7 +179636,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179657,7 +179657,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179680,7 +179680,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179705,7 +179705,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179729,7 +179729,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179752,7 +179752,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179775,7 +179775,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179798,7 +179798,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179820,7 +179820,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179842,7 +179842,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179864,7 +179864,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179885,7 +179885,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179906,7 +179906,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179927,7 +179927,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179950,7 +179950,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179975,7 +179975,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -179999,7 +179999,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180022,7 +180022,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180045,7 +180045,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180068,7 +180068,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180090,7 +180090,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180112,7 +180112,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180134,7 +180134,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180155,7 +180155,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180176,7 +180176,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180197,7 +180197,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180220,7 +180220,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180245,7 +180245,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180269,7 +180269,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180292,7 +180292,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180315,7 +180315,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180338,7 +180338,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180360,7 +180360,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180382,7 +180382,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180404,7 +180404,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180425,7 +180425,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180446,7 +180446,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180467,7 +180467,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180490,7 +180490,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180515,7 +180515,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180539,7 +180539,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180562,7 +180562,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180585,7 +180585,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180608,7 +180608,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180630,7 +180630,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180652,7 +180652,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180674,7 +180674,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180695,7 +180695,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180716,7 +180716,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180737,7 +180737,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180760,7 +180760,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180785,7 +180785,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180809,7 +180809,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180832,7 +180832,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180855,7 +180855,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180878,7 +180878,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180900,7 +180900,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180922,7 +180922,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180944,7 +180944,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180965,7 +180965,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -180986,7 +180986,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181007,7 +181007,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181030,7 +181030,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181055,7 +181055,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181079,7 +181079,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181102,7 +181102,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181125,7 +181125,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181148,7 +181148,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181170,7 +181170,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181192,7 +181192,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181214,7 +181214,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181235,7 +181235,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181256,7 +181256,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181277,7 +181277,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181300,7 +181300,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181325,7 +181325,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181349,7 +181349,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181372,7 +181372,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181395,7 +181395,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181418,7 +181418,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181440,7 +181440,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181462,7 +181462,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181484,7 +181484,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181505,7 +181505,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181526,7 +181526,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181552,7 +181552,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181575,7 +181575,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181600,7 +181600,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181624,7 +181624,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181647,7 +181647,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181670,7 +181670,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181693,7 +181693,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181715,7 +181715,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181737,7 +181737,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181759,7 +181759,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181780,7 +181780,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181801,7 +181801,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181822,7 +181822,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181845,7 +181845,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181870,7 +181870,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181894,7 +181894,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181917,7 +181917,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181940,7 +181940,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181963,7 +181963,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -181985,7 +181985,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182007,7 +182007,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182029,7 +182029,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182050,7 +182050,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182071,7 +182071,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182092,7 +182092,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182115,7 +182115,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182140,7 +182140,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182164,7 +182164,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182187,7 +182187,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182210,7 +182210,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182233,7 +182233,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182255,7 +182255,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182277,7 +182277,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182299,7 +182299,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182320,7 +182320,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182341,7 +182341,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182362,7 +182362,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182385,7 +182385,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182410,7 +182410,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182434,7 +182434,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182457,7 +182457,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182480,7 +182480,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182503,7 +182503,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182525,7 +182525,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182547,7 +182547,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182569,7 +182569,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182590,7 +182590,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182611,7 +182611,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182632,7 +182632,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182655,7 +182655,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182680,7 +182680,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182704,7 +182704,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182727,7 +182727,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182750,7 +182750,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182773,7 +182773,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182795,7 +182795,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182817,7 +182817,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182839,7 +182839,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182860,7 +182860,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182881,7 +182881,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182902,7 +182902,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182925,7 +182925,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182950,7 +182950,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182974,7 +182974,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -182997,7 +182997,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183020,7 +183020,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183043,7 +183043,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183065,7 +183065,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183087,7 +183087,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183109,7 +183109,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183130,7 +183130,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183151,7 +183151,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183172,7 +183172,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183195,7 +183195,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183220,7 +183220,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183244,7 +183244,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183267,7 +183267,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183290,7 +183290,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183313,7 +183313,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183335,7 +183335,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183357,7 +183357,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183379,7 +183379,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183400,7 +183400,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183421,7 +183421,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183442,7 +183442,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183465,7 +183465,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183490,7 +183490,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183514,7 +183514,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183537,7 +183537,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183560,7 +183560,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183583,7 +183583,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183605,7 +183605,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183627,7 +183627,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183649,7 +183649,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183670,7 +183670,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183691,7 +183691,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183712,7 +183712,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183735,7 +183735,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183760,7 +183760,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183784,7 +183784,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183807,7 +183807,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183830,7 +183830,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183853,7 +183853,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183875,7 +183875,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183897,7 +183897,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183919,7 +183919,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183940,7 +183940,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183961,7 +183961,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -183982,7 +183982,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184005,7 +184005,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184030,7 +184030,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184054,7 +184054,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184077,7 +184077,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184100,7 +184100,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184123,7 +184123,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184145,7 +184145,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184167,7 +184167,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184189,7 +184189,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184210,7 +184210,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184231,7 +184231,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184252,7 +184252,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184275,7 +184275,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184300,7 +184300,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184324,7 +184324,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184347,7 +184347,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184370,7 +184370,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184393,7 +184393,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184415,7 +184415,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184437,7 +184437,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184459,7 +184459,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184480,7 +184480,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184501,7 +184501,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184522,7 +184522,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184545,7 +184545,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184570,7 +184570,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184594,7 +184594,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184617,7 +184617,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184640,7 +184640,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184663,7 +184663,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184685,7 +184685,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184707,7 +184707,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184729,7 +184729,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184750,7 +184750,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184771,7 +184771,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184792,7 +184792,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184815,7 +184815,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184840,7 +184840,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184864,7 +184864,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184887,7 +184887,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184910,7 +184910,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184933,7 +184933,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184955,7 +184955,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184977,7 +184977,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -184999,7 +184999,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185020,7 +185020,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185041,7 +185041,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185062,7 +185062,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185085,7 +185085,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185110,7 +185110,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185134,7 +185134,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185157,7 +185157,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185180,7 +185180,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185203,7 +185203,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185225,7 +185225,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185247,7 +185247,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185269,7 +185269,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185290,7 +185290,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185311,7 +185311,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185332,7 +185332,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185355,7 +185355,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185380,7 +185380,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185404,7 +185404,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185427,7 +185427,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185450,7 +185450,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185473,7 +185473,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185495,7 +185495,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185517,7 +185517,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185539,7 +185539,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185560,7 +185560,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185581,7 +185581,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185602,7 +185602,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185625,7 +185625,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185650,7 +185650,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185674,7 +185674,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185697,7 +185697,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185720,7 +185720,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185743,7 +185743,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185765,7 +185765,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185787,7 +185787,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185809,7 +185809,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185830,7 +185830,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185851,7 +185851,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185872,7 +185872,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185895,7 +185895,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185920,7 +185920,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185944,7 +185944,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185967,7 +185967,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -185990,7 +185990,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186013,7 +186013,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186035,7 +186035,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186057,7 +186057,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186079,7 +186079,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186100,7 +186100,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186121,7 +186121,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186142,7 +186142,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186165,7 +186165,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186190,7 +186190,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186214,7 +186214,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186237,7 +186237,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186260,7 +186260,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186283,7 +186283,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186305,7 +186305,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186327,7 +186327,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186349,7 +186349,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186370,7 +186370,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186391,7 +186391,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186412,7 +186412,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186435,7 +186435,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186460,7 +186460,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186484,7 +186484,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186507,7 +186507,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186530,7 +186530,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186553,7 +186553,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186575,7 +186575,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186597,7 +186597,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186619,7 +186619,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186640,7 +186640,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186661,7 +186661,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186682,7 +186682,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186705,7 +186705,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186730,7 +186730,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186754,7 +186754,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186777,7 +186777,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186800,7 +186800,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186823,7 +186823,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186845,7 +186845,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186867,7 +186867,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186889,7 +186889,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186910,7 +186910,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186931,7 +186931,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186952,7 +186952,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -186975,7 +186975,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187000,7 +187000,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187024,7 +187024,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187047,7 +187047,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187070,7 +187070,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187093,7 +187093,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187115,7 +187115,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187137,7 +187137,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187159,7 +187159,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187180,7 +187180,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187201,7 +187201,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187222,7 +187222,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187245,7 +187245,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187270,7 +187270,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187294,7 +187294,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187317,7 +187317,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187340,7 +187340,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187363,7 +187363,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187385,7 +187385,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187407,7 +187407,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187429,7 +187429,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187450,7 +187450,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187471,7 +187471,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187492,7 +187492,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187515,7 +187515,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187540,7 +187540,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187564,7 +187564,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187587,7 +187587,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187610,7 +187610,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187633,7 +187633,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187655,7 +187655,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187677,7 +187677,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187699,7 +187699,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187720,7 +187720,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187741,7 +187741,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187762,7 +187762,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187785,7 +187785,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187810,7 +187810,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187834,7 +187834,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187857,7 +187857,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187880,7 +187880,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187903,7 +187903,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187925,7 +187925,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187947,7 +187947,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187969,7 +187969,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -187990,7 +187990,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188011,7 +188011,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188032,7 +188032,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188055,7 +188055,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188080,7 +188080,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188104,7 +188104,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188127,7 +188127,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188150,7 +188150,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188173,7 +188173,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188195,7 +188195,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188217,7 +188217,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188239,7 +188239,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188260,7 +188260,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188281,7 +188281,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188302,7 +188302,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188325,7 +188325,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188350,7 +188350,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188374,7 +188374,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188397,7 +188397,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188420,7 +188420,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188443,7 +188443,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188465,7 +188465,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188487,7 +188487,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188509,7 +188509,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188530,7 +188530,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188551,7 +188551,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188572,7 +188572,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188595,7 +188595,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188620,7 +188620,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188644,7 +188644,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188667,7 +188667,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188690,7 +188690,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188713,7 +188713,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188735,7 +188735,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188757,7 +188757,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188779,7 +188779,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188800,7 +188800,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188821,7 +188821,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188842,7 +188842,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188865,7 +188865,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188890,7 +188890,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188914,7 +188914,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188937,7 +188937,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188960,7 +188960,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -188983,7 +188983,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189005,7 +189005,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189027,7 +189027,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189049,7 +189049,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189070,7 +189070,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189091,7 +189091,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189112,7 +189112,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189135,7 +189135,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189160,7 +189160,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189184,7 +189184,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189207,7 +189207,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189230,7 +189230,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189253,7 +189253,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189275,7 +189275,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189297,7 +189297,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189319,7 +189319,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189340,7 +189340,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189361,7 +189361,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189382,7 +189382,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189405,7 +189405,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189430,7 +189430,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189454,7 +189454,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189477,7 +189477,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189500,7 +189500,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189523,7 +189523,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189545,7 +189545,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189567,7 +189567,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189589,7 +189589,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189610,7 +189610,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189631,7 +189631,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189652,7 +189652,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189675,7 +189675,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189700,7 +189700,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189724,7 +189724,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189747,7 +189747,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189770,7 +189770,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189793,7 +189793,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189815,7 +189815,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189837,7 +189837,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189859,7 +189859,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189880,7 +189880,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189901,7 +189901,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189922,7 +189922,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189945,7 +189945,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189970,7 +189970,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -189994,7 +189994,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190017,7 +190017,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190040,7 +190040,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190063,7 +190063,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190085,7 +190085,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190107,7 +190107,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190129,7 +190129,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190150,7 +190150,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190171,7 +190171,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190192,7 +190192,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190215,7 +190215,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190240,7 +190240,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190264,7 +190264,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190287,7 +190287,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190310,7 +190310,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190333,7 +190333,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190355,7 +190355,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190377,7 +190377,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190399,7 +190399,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190420,7 +190420,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190441,7 +190441,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190462,7 +190462,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190485,7 +190485,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190510,7 +190510,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190534,7 +190534,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190557,7 +190557,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190580,7 +190580,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190603,7 +190603,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190625,7 +190625,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190647,7 +190647,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190669,7 +190669,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190690,7 +190690,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190711,7 +190711,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190732,7 +190732,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190755,7 +190755,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190780,7 +190780,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190804,7 +190804,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190827,7 +190827,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190850,7 +190850,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190873,7 +190873,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190895,7 +190895,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190917,7 +190917,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190939,7 +190939,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190960,7 +190960,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -190981,7 +190981,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191002,7 +191002,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191025,7 +191025,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191050,7 +191050,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191074,7 +191074,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191097,7 +191097,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191120,7 +191120,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191143,7 +191143,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191165,7 +191165,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191187,7 +191187,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191209,7 +191209,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191230,7 +191230,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191251,7 +191251,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191272,7 +191272,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191295,7 +191295,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191320,7 +191320,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191344,7 +191344,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191367,7 +191367,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191390,7 +191390,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191413,7 +191413,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191435,7 +191435,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191457,7 +191457,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191479,7 +191479,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191500,7 +191500,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191521,7 +191521,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191542,7 +191542,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191565,7 +191565,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191590,7 +191590,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191614,7 +191614,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191637,7 +191637,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191660,7 +191660,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191683,7 +191683,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191705,7 +191705,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191727,7 +191727,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191749,7 +191749,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191770,7 +191770,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191791,7 +191791,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191812,7 +191812,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191835,7 +191835,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191860,7 +191860,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191884,7 +191884,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191907,7 +191907,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191930,7 +191930,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191953,7 +191953,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191975,7 +191975,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -191997,7 +191997,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192019,7 +192019,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192040,7 +192040,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192061,7 +192061,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192082,7 +192082,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192105,7 +192105,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192130,7 +192130,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192154,7 +192154,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192177,7 +192177,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192200,7 +192200,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192223,7 +192223,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192245,7 +192245,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192267,7 +192267,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192289,7 +192289,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192310,7 +192310,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192331,7 +192331,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192352,7 +192352,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192375,7 +192375,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192400,7 +192400,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192424,7 +192424,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192447,7 +192447,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192470,7 +192470,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192493,7 +192493,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192515,7 +192515,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192537,7 +192537,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192559,7 +192559,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192580,7 +192580,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192601,7 +192601,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192627,7 +192627,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192650,7 +192650,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192675,7 +192675,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192699,7 +192699,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192722,7 +192722,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192745,7 +192745,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192768,7 +192768,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192790,7 +192790,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192812,7 +192812,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192834,7 +192834,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192855,7 +192855,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192876,7 +192876,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192899,7 +192899,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192924,7 +192924,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192948,7 +192948,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192971,7 +192971,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -192994,7 +192994,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193017,7 +193017,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193039,7 +193039,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193061,7 +193061,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193083,7 +193083,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193104,7 +193104,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193125,7 +193125,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193151,7 +193151,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193177,7 +193177,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193200,7 +193200,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193223,7 +193223,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193246,7 +193246,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193269,7 +193269,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193292,7 +193292,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193315,7 +193315,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193338,7 +193338,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193359,7 +193359,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193382,7 +193382,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193405,7 +193405,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193431,7 +193431,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193457,7 +193457,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193478,7 +193478,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193499,7 +193499,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193513,14 +193513,14 @@ (action (diff extract.models.expected extract.models_dolmen.output))) (rule - (target cardinal.models_dolmen.output) - (deps (:input cardinal.models.smt2)) + (target cs-soundness.models.timeout_dolmen.output) + (deps (:input cs-soundness.models.timeout.smt2)) (package alt-ergo) (action (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 142) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193528,11 +193528,32 @@ --frontend dolmen %{input}))))))) (rule - (deps cardinal.models_dolmen.output) + (deps cs-soundness.models.timeout_dolmen.output) (alias runtest-quick) (package alt-ergo) (action - (diff cardinal.models.expected cardinal.models_dolmen.output)))) + (diff cs-soundness.models.timeout.expected cs-soundness.models.timeout_dolmen.output))) + (rule + (target cardinal.models.timeout_dolmen.output) + (deps (:input cardinal.models.timeout.smt2)) + (package alt-ergo) + (action + (chdir %{workspace_root} + (with-stdout-to %{target} + (ignore-stderr + (with-accepted-exit-codes (or 142) + (run %{bin:alt-ergo} + --timelimit=2 + --enable-assertions + --output=smtlib2 + --frontend dolmen + %{input}))))))) + (rule + (deps cardinal.models.timeout_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff cardinal.models.timeout.expected cardinal.models.timeout_dolmen.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -193546,7 +193567,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193567,7 +193588,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193588,7 +193609,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193614,7 +193635,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 1 + (with-accepted-exit-codes (or 1) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193640,7 +193661,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193661,7 +193682,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193687,7 +193708,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193713,7 +193734,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193734,7 +193755,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193760,7 +193781,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193783,7 +193804,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193808,7 +193829,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193832,7 +193853,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193855,7 +193876,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193878,7 +193899,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193901,7 +193922,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193923,7 +193944,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193945,7 +193966,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193967,7 +193988,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -193988,7 +194009,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194009,7 +194030,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194030,7 +194051,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194053,7 +194074,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194078,7 +194099,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194102,7 +194123,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194125,7 +194146,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194148,7 +194169,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194171,7 +194192,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194193,7 +194214,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194215,7 +194236,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194237,7 +194258,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194258,7 +194279,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194279,7 +194300,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194300,7 +194321,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194323,7 +194344,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194348,7 +194369,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194372,7 +194393,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194395,7 +194416,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194418,7 +194439,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194441,7 +194462,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194463,7 +194484,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194485,7 +194506,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194507,7 +194528,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194528,7 +194549,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194549,7 +194570,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194570,7 +194591,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194593,7 +194614,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194618,7 +194639,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194642,7 +194663,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194665,7 +194686,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194688,7 +194709,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194711,7 +194732,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194733,7 +194754,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194755,7 +194776,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194777,7 +194798,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194798,7 +194819,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194819,7 +194840,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194840,7 +194861,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194863,7 +194884,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194888,7 +194909,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194912,7 +194933,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194935,7 +194956,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194958,7 +194979,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -194981,7 +195002,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195003,7 +195024,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195025,7 +195046,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195047,7 +195068,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195068,7 +195089,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195089,7 +195110,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195110,7 +195131,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195133,7 +195154,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195158,7 +195179,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195182,7 +195203,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195205,7 +195226,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195228,7 +195249,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195251,7 +195272,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195273,7 +195294,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195295,7 +195316,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195317,7 +195338,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195338,7 +195359,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195359,7 +195380,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195380,7 +195401,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195403,7 +195424,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195428,7 +195449,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195452,7 +195473,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195475,7 +195496,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195498,7 +195519,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195521,7 +195542,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195543,7 +195564,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195565,7 +195586,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195587,7 +195608,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195608,7 +195629,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195629,7 +195650,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195650,7 +195671,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195673,7 +195694,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195698,7 +195719,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195722,7 +195743,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195745,7 +195766,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195768,7 +195789,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195791,7 +195812,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195813,7 +195834,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195835,7 +195856,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195857,7 +195878,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195878,7 +195899,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195899,7 +195920,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195925,7 +195946,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195948,7 +195969,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195973,7 +195994,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -195997,7 +196018,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196020,7 +196041,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196043,7 +196064,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196066,7 +196087,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196088,7 +196109,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196110,7 +196131,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196132,7 +196153,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196153,7 +196174,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196174,7 +196195,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196195,7 +196216,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196218,7 +196239,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196243,7 +196264,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196267,7 +196288,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196290,7 +196311,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196313,7 +196334,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196336,7 +196357,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196358,7 +196379,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196380,7 +196401,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196402,7 +196423,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196423,7 +196444,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196444,7 +196465,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196465,7 +196486,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196488,7 +196509,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196513,7 +196534,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196537,7 +196558,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196560,7 +196581,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196583,7 +196604,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196606,7 +196627,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196628,7 +196649,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196650,7 +196671,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196672,7 +196693,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196693,7 +196714,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196714,7 +196735,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196735,7 +196756,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196758,7 +196779,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196783,7 +196804,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196807,7 +196828,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196830,7 +196851,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196853,7 +196874,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196876,7 +196897,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196898,7 +196919,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196920,7 +196941,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196942,7 +196963,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196963,7 +196984,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -196984,7 +197005,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197005,7 +197026,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197028,7 +197049,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197053,7 +197074,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197077,7 +197098,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197100,7 +197121,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197123,7 +197144,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197146,7 +197167,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197168,7 +197189,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197190,7 +197211,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197212,7 +197233,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197233,7 +197254,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197254,7 +197275,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197275,7 +197296,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197298,7 +197319,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197323,7 +197344,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197347,7 +197368,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197370,7 +197391,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197393,7 +197414,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197416,7 +197437,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197438,7 +197459,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197460,7 +197481,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197482,7 +197503,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197503,7 +197524,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197524,7 +197545,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197545,7 +197566,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197568,7 +197589,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197593,7 +197614,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197617,7 +197638,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197640,7 +197661,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197663,7 +197684,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197686,7 +197707,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197708,7 +197729,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197730,7 +197751,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197752,7 +197773,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197773,7 +197794,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197794,7 +197815,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197815,7 +197836,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197838,7 +197859,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197863,7 +197884,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197887,7 +197908,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197910,7 +197931,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197933,7 +197954,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197956,7 +197977,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -197978,7 +197999,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198000,7 +198021,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198022,7 +198043,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198043,7 +198064,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198064,7 +198085,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198085,7 +198106,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198108,7 +198129,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198133,7 +198154,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198157,7 +198178,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198180,7 +198201,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198203,7 +198224,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198226,7 +198247,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198248,7 +198269,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198270,7 +198291,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198292,7 +198313,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198313,7 +198334,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198334,7 +198355,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198355,7 +198376,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198378,7 +198399,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198403,7 +198424,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198427,7 +198448,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198450,7 +198471,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198473,7 +198494,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198496,7 +198517,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198518,7 +198539,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198540,7 +198561,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198562,7 +198583,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198583,7 +198604,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198604,7 +198625,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198625,7 +198646,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198648,7 +198669,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198673,7 +198694,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198697,7 +198718,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198720,7 +198741,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198743,7 +198764,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198766,7 +198787,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198788,7 +198809,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198810,7 +198831,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198832,7 +198853,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198853,7 +198874,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198874,7 +198895,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198895,7 +198916,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198918,7 +198939,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198943,7 +198964,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198967,7 +198988,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -198990,7 +199011,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199013,7 +199034,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199036,7 +199057,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199058,7 +199079,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199080,7 +199101,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199102,7 +199123,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199123,7 +199144,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199144,7 +199165,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199165,7 +199186,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199188,7 +199209,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199213,7 +199234,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199237,7 +199258,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199260,7 +199281,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199283,7 +199304,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199306,7 +199327,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199328,7 +199349,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199350,7 +199371,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199372,7 +199393,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199393,7 +199414,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199414,7 +199435,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199435,7 +199456,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199458,7 +199479,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199483,7 +199504,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199507,7 +199528,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199530,7 +199551,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199553,7 +199574,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199576,7 +199597,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199598,7 +199619,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199620,7 +199641,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199642,7 +199663,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199663,7 +199684,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199684,7 +199705,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199705,7 +199726,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199728,7 +199749,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199753,7 +199774,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199777,7 +199798,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199800,7 +199821,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199823,7 +199844,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199846,7 +199867,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199868,7 +199889,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199890,7 +199911,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199912,7 +199933,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199933,7 +199954,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199954,7 +199975,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199975,7 +199996,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -199998,7 +200019,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200023,7 +200044,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200047,7 +200068,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200070,7 +200091,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200093,7 +200114,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200116,7 +200137,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200138,7 +200159,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200160,7 +200181,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200182,7 +200203,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200203,7 +200224,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200224,7 +200245,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200245,7 +200266,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200268,7 +200289,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200293,7 +200314,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200317,7 +200338,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200340,7 +200361,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200363,7 +200384,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200386,7 +200407,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200408,7 +200429,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200430,7 +200451,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200452,7 +200473,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200473,7 +200494,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200494,7 +200515,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200515,7 +200536,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200538,7 +200559,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200563,7 +200584,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200587,7 +200608,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200610,7 +200631,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200633,7 +200654,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200656,7 +200677,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200678,7 +200699,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200700,7 +200721,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200722,7 +200743,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200743,7 +200764,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200764,7 +200785,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200785,7 +200806,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200808,7 +200829,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200833,7 +200854,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200857,7 +200878,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200880,7 +200901,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200903,7 +200924,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200926,7 +200947,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200948,7 +200969,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200970,7 +200991,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -200992,7 +201013,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201013,7 +201034,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201034,7 +201055,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201055,7 +201076,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201078,7 +201099,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201103,7 +201124,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201127,7 +201148,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201150,7 +201171,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201173,7 +201194,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201196,7 +201217,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201218,7 +201239,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201240,7 +201261,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201262,7 +201283,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201283,7 +201304,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201304,7 +201325,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201325,7 +201346,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201348,7 +201369,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201373,7 +201394,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201397,7 +201418,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201420,7 +201441,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201443,7 +201464,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201466,7 +201487,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201488,7 +201509,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201510,7 +201531,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201532,7 +201553,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201553,7 +201574,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201574,7 +201595,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201595,7 +201616,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201618,7 +201639,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201643,7 +201664,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201667,7 +201688,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201690,7 +201711,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201713,7 +201734,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201736,7 +201757,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201758,7 +201779,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201780,7 +201801,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201802,7 +201823,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201823,7 +201844,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201844,7 +201865,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201865,7 +201886,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201888,7 +201909,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201913,7 +201934,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201937,7 +201958,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201960,7 +201981,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -201983,7 +202004,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202006,7 +202027,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202028,7 +202049,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202050,7 +202071,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202072,7 +202093,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202093,7 +202114,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202114,7 +202135,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202135,7 +202156,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202158,7 +202179,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202183,7 +202204,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202207,7 +202228,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202230,7 +202251,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202253,7 +202274,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202276,7 +202297,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202298,7 +202319,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202320,7 +202341,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202342,7 +202363,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202363,7 +202384,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202384,7 +202405,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202405,7 +202426,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202428,7 +202449,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202453,7 +202474,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202477,7 +202498,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202500,7 +202521,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202523,7 +202544,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202546,7 +202567,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202568,7 +202589,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202590,7 +202611,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202612,7 +202633,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202633,7 +202654,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202654,7 +202675,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202675,7 +202696,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202698,7 +202719,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202723,7 +202744,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202747,7 +202768,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202770,7 +202791,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202793,7 +202814,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202816,7 +202837,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202838,7 +202859,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202860,7 +202881,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202882,7 +202903,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202903,7 +202924,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202924,7 +202945,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202945,7 +202966,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202968,7 +202989,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -202993,7 +203014,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203017,7 +203038,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203040,7 +203061,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203063,7 +203084,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203086,7 +203107,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203108,7 +203129,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203130,7 +203151,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203152,7 +203173,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203173,7 +203194,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203194,7 +203215,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203215,7 +203236,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203238,7 +203259,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203263,7 +203284,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203287,7 +203308,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203310,7 +203331,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203333,7 +203354,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203356,7 +203377,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203378,7 +203399,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203400,7 +203421,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203422,7 +203443,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203443,7 +203464,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203464,7 +203485,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203485,7 +203506,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203508,7 +203529,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203533,7 +203554,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203557,7 +203578,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203580,7 +203601,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203603,7 +203624,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203626,7 +203647,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203648,7 +203669,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203670,7 +203691,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203692,7 +203713,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203713,7 +203734,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203734,7 +203755,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203755,7 +203776,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203778,7 +203799,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203803,7 +203824,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203827,7 +203848,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203850,7 +203871,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203873,7 +203894,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203896,7 +203917,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203918,7 +203939,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203940,7 +203961,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203962,7 +203983,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -203983,7 +204004,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204004,7 +204025,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204025,7 +204046,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204048,7 +204069,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204073,7 +204094,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204097,7 +204118,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204120,7 +204141,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204143,7 +204164,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204166,7 +204187,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204188,7 +204209,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204210,7 +204231,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204232,7 +204253,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204253,7 +204274,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204274,7 +204295,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204321,7 +204342,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204344,7 +204365,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204369,7 +204390,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204393,7 +204414,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204416,7 +204437,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204439,7 +204460,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204462,7 +204483,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204484,7 +204505,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204506,7 +204527,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204528,7 +204549,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204549,7 +204570,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204570,7 +204591,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204591,7 +204612,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204612,7 +204633,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 1 + (with-accepted-exit-codes (or 1) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204633,7 +204654,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204654,7 +204675,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 1 + (with-accepted-exit-codes (or 1) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204675,7 +204696,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204696,7 +204717,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204717,7 +204738,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 1 + (with-accepted-exit-codes (or 1) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204738,7 +204759,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 1 + (with-accepted-exit-codes (or 1) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204759,7 +204780,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204782,7 +204803,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204807,7 +204828,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204831,7 +204852,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204854,7 +204875,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204877,7 +204898,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204900,7 +204921,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204922,7 +204943,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204944,7 +204965,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204966,7 +204987,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -204987,7 +205008,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205008,7 +205029,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205029,7 +205050,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205050,7 +205071,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205076,7 +205097,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205099,7 +205120,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205124,7 +205145,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205148,7 +205169,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205171,7 +205192,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205194,7 +205215,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205217,7 +205238,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205239,7 +205260,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205261,7 +205282,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205283,7 +205304,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205304,7 +205325,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205325,7 +205346,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205346,7 +205367,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205369,7 +205390,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205394,7 +205415,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205418,7 +205439,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205441,7 +205462,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205464,7 +205485,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205487,7 +205508,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205509,7 +205530,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205531,7 +205552,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205553,7 +205574,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205574,7 +205595,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205595,7 +205616,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205616,7 +205637,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205639,7 +205660,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205664,7 +205685,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205688,7 +205709,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205711,7 +205732,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205734,7 +205755,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205757,7 +205778,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205779,7 +205800,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205801,7 +205822,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205823,7 +205844,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205844,7 +205865,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205865,7 +205886,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205886,7 +205907,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205909,7 +205930,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205934,7 +205955,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205958,7 +205979,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -205981,7 +206002,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206004,7 +206025,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206027,7 +206048,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206049,7 +206070,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206071,7 +206092,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206093,7 +206114,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206114,7 +206135,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206135,7 +206156,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206156,7 +206177,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206179,7 +206200,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206204,7 +206225,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206228,7 +206249,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206251,7 +206272,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206274,7 +206295,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206297,7 +206318,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206319,7 +206340,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206341,7 +206362,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206363,7 +206384,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206384,7 +206405,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206405,7 +206426,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206426,7 +206447,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206449,7 +206470,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206474,7 +206495,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206498,7 +206519,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206521,7 +206542,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206544,7 +206565,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206567,7 +206588,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206589,7 +206610,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206611,7 +206632,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206633,7 +206654,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206654,7 +206675,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206675,7 +206696,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206696,7 +206717,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206719,7 +206740,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206744,7 +206765,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206768,7 +206789,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206791,7 +206812,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206814,7 +206835,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206837,7 +206858,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206859,7 +206880,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206881,7 +206902,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206903,7 +206924,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206924,7 +206945,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206945,7 +206966,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206966,7 +206987,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -206989,7 +207010,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207014,7 +207035,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207038,7 +207059,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207061,7 +207082,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207084,7 +207105,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207107,7 +207128,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207129,7 +207150,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207151,7 +207172,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207173,7 +207194,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207194,7 +207215,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207215,7 +207236,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207236,7 +207257,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207259,7 +207280,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207284,7 +207305,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207308,7 +207329,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207331,7 +207352,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207354,7 +207375,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207377,7 +207398,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207399,7 +207420,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207421,7 +207442,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207443,7 +207464,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207464,7 +207485,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207485,7 +207506,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207506,7 +207527,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207529,7 +207550,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207554,7 +207575,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207578,7 +207599,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207601,7 +207622,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207624,7 +207645,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207647,7 +207668,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207669,7 +207690,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207691,7 +207712,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207713,7 +207734,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207734,7 +207755,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207755,7 +207776,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207776,7 +207797,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207799,7 +207820,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207824,7 +207845,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207848,7 +207869,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207871,7 +207892,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207894,7 +207915,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207917,7 +207938,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207939,7 +207960,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207961,7 +207982,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -207983,7 +208004,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208004,7 +208025,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208025,7 +208046,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208046,7 +208067,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208069,7 +208090,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208094,7 +208115,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208118,7 +208139,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208141,7 +208162,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208164,7 +208185,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208187,7 +208208,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208209,7 +208230,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208231,7 +208252,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208253,7 +208274,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208274,7 +208295,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208295,7 +208316,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208316,7 +208337,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208339,7 +208360,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208364,7 +208385,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208388,7 +208409,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208411,7 +208432,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208434,7 +208455,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208457,7 +208478,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208479,7 +208500,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208501,7 +208522,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208523,7 +208544,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208544,7 +208565,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208565,7 +208586,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208586,7 +208607,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208609,7 +208630,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208634,7 +208655,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208658,7 +208679,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208681,7 +208702,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208704,7 +208725,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208727,7 +208748,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208749,7 +208770,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208771,7 +208792,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208793,7 +208814,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208814,7 +208835,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208835,7 +208856,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208856,7 +208877,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208879,7 +208900,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208904,7 +208925,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208928,7 +208949,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208951,7 +208972,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208974,7 +208995,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -208997,7 +209018,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209019,7 +209040,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209041,7 +209062,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209063,7 +209084,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209084,7 +209105,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209105,7 +209126,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209126,7 +209147,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209149,7 +209170,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209174,7 +209195,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209198,7 +209219,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209221,7 +209242,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209244,7 +209265,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209267,7 +209288,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209289,7 +209310,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209311,7 +209332,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209333,7 +209354,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209354,7 +209375,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209375,7 +209396,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209396,7 +209417,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209419,7 +209440,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209444,7 +209465,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209468,7 +209489,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209491,7 +209512,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209514,7 +209535,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209537,7 +209558,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209559,7 +209580,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209581,7 +209602,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209603,7 +209624,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209624,7 +209645,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209645,7 +209666,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209666,7 +209687,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209689,7 +209710,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209714,7 +209735,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209738,7 +209759,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209761,7 +209782,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209784,7 +209805,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209807,7 +209828,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209829,7 +209850,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209851,7 +209872,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209873,7 +209894,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209894,7 +209915,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209915,7 +209936,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209936,7 +209957,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209959,7 +209980,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -209984,7 +210005,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210008,7 +210029,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210031,7 +210052,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210054,7 +210075,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210077,7 +210098,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210099,7 +210120,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210121,7 +210142,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210143,7 +210164,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210164,7 +210185,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210185,7 +210206,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210211,7 +210232,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210234,7 +210255,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210259,7 +210280,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210283,7 +210304,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210306,7 +210327,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210329,7 +210350,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210352,7 +210373,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210374,7 +210395,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210396,7 +210417,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210418,7 +210439,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210439,7 +210460,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210460,7 +210481,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210481,7 +210502,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210504,7 +210525,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210529,7 +210550,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210553,7 +210574,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210576,7 +210597,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210599,7 +210620,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210622,7 +210643,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210644,7 +210665,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210666,7 +210687,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210688,7 +210709,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210709,7 +210730,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210730,7 +210751,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210751,7 +210772,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210774,7 +210795,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210799,7 +210820,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210823,7 +210844,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210846,7 +210867,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210869,7 +210890,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210892,7 +210913,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210914,7 +210935,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210936,7 +210957,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210958,7 +210979,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -210979,7 +211000,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211000,7 +211021,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211021,7 +211042,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211044,7 +211065,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211069,7 +211090,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211093,7 +211114,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211116,7 +211137,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211139,7 +211160,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211162,7 +211183,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211184,7 +211205,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211206,7 +211227,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211228,7 +211249,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211249,7 +211270,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211270,7 +211291,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211291,7 +211312,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211314,7 +211335,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211339,7 +211360,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211363,7 +211384,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211386,7 +211407,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211409,7 +211430,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211432,7 +211453,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211454,7 +211475,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211476,7 +211497,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211498,7 +211519,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211519,7 +211540,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211540,7 +211561,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211561,7 +211582,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211584,7 +211605,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211609,7 +211630,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211633,7 +211654,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211656,7 +211677,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211679,7 +211700,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211702,7 +211723,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211724,7 +211745,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211746,7 +211767,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211768,7 +211789,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211789,7 +211810,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211810,7 +211831,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211831,7 +211852,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211854,7 +211875,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211879,7 +211900,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211903,7 +211924,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211926,7 +211947,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211949,7 +211970,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211972,7 +211993,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -211994,7 +212015,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212016,7 +212037,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212038,7 +212059,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212059,7 +212080,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212080,7 +212101,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212101,7 +212122,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212124,7 +212145,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212149,7 +212170,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212173,7 +212194,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212196,7 +212217,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212219,7 +212240,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212242,7 +212263,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212264,7 +212285,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212286,7 +212307,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212308,7 +212329,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212329,7 +212350,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212350,7 +212371,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212371,7 +212392,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212394,7 +212415,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212419,7 +212440,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212443,7 +212464,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212466,7 +212487,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212489,7 +212510,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212512,7 +212533,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212534,7 +212555,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212556,7 +212577,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212578,7 +212599,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212599,7 +212620,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212620,7 +212641,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212641,7 +212662,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212664,7 +212685,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212689,7 +212710,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212713,7 +212734,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212736,7 +212757,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212759,7 +212780,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212782,7 +212803,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212804,7 +212825,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212826,7 +212847,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212848,7 +212869,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212869,7 +212890,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212890,7 +212911,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212911,7 +212932,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212934,7 +212955,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212959,7 +212980,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -212983,7 +213004,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -213006,7 +213027,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -213029,7 +213050,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -213052,7 +213073,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -213074,7 +213095,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -213096,7 +213117,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -213118,7 +213139,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -213139,7 +213160,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -213160,7 +213181,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -213181,7 +213202,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -213204,7 +213225,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -213229,7 +213250,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -213253,7 +213274,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -213276,7 +213297,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -213299,7 +213320,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -213322,7 +213343,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -213344,7 +213365,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -213366,7 +213387,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -213388,7 +213409,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -213409,7 +213430,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions @@ -213430,7 +213451,7 @@ (chdir %{workspace_root} (with-stdout-to %{target} (ignore-stderr - (with-accepted-exit-codes 0 + (with-accepted-exit-codes (or 0) (run %{bin:alt-ergo} --timelimit=2 --enable-assertions diff --git a/tests/models/bitv/cardinal.models.expected b/tests/models/bitv/cardinal.models.expected deleted file mode 100644 index 6f99ff0f4..000000000 --- a/tests/models/bitv/cardinal.models.expected +++ /dev/null @@ -1,2 +0,0 @@ - -unsat diff --git a/tests/models/bitv/cardinal.models.smt2 b/tests/models/bitv/cardinal.models.smt2 deleted file mode 100644 index ed791412c..000000000 --- a/tests/models/bitv/cardinal.models.smt2 +++ /dev/null @@ -1,9 +0,0 @@ -(set-logic BV) -(set-option :produce-models true) - -; Without :produce-models we say 'unknown', not 'unsat' -(declare-const a (_ BitVec 1)) -(declare-const b (_ BitVec 1)) -(declare-const c (_ BitVec 1)) -(assert (distinct a b c)) -(check-sat) diff --git a/tests/models/bitv/cardinal.models.timeout.expected b/tests/models/bitv/cardinal.models.timeout.expected new file mode 100644 index 000000000..31c804d57 --- /dev/null +++ b/tests/models/bitv/cardinal.models.timeout.expected @@ -0,0 +1,3 @@ + +unknown +(error "timeout") diff --git a/tests/models/bitv/cardinal.models.timeout.smt2 b/tests/models/bitv/cardinal.models.timeout.smt2 new file mode 100644 index 000000000..04c0ab2f1 --- /dev/null +++ b/tests/models/bitv/cardinal.models.timeout.smt2 @@ -0,0 +1,11 @@ +(set-logic BV) +(set-option :produce-models true) + +; We used to be able to reply 'unsat' here, but using unsound reasoning. +; We should be able to reply 'unsat' again when we start propagating [distinct] +; constraints in the bit-vector domain +(declare-const a (_ BitVec 1)) +(declare-const b (_ BitVec 1)) +(declare-const c (_ BitVec 1)) +(assert (distinct a b c)) +(check-sat) diff --git a/tests/models/bitv/cs-soundness.models.timeout.expected b/tests/models/bitv/cs-soundness.models.timeout.expected new file mode 100644 index 000000000..31c804d57 --- /dev/null +++ b/tests/models/bitv/cs-soundness.models.timeout.expected @@ -0,0 +1,3 @@ + +unknown +(error "timeout") diff --git a/tests/models/bitv/cs-soundness.models.timeout.smt2 b/tests/models/bitv/cs-soundness.models.timeout.smt2 new file mode 100644 index 000000000..78d78ade5 --- /dev/null +++ b/tests/models/bitv/cs-soundness.models.timeout.smt2 @@ -0,0 +1,7 @@ +(set-logic QF_BV) +(set-option :produce-models true) +(set-info :status sat) +(declare-fun a () (_ BitVec 2)) +(assert (not (bvslt a #b01))) +(check-sat) +(get-model) diff --git a/tools/gentest.ml b/tools/gentest.ml index 0a86c7637..0cb84037c 100644 --- a/tools/gentest.ml +++ b/tools/gentest.ml @@ -112,7 +112,7 @@ module Test : sig exclude: string list; filters: string list option; compare_should_succeed: bool; - ae_should_succeed: bool; + accepted_exit_codes: int list; } type t = private { @@ -138,7 +138,7 @@ end = struct exclude: string list; filters: string list option; compare_should_succeed: bool; - ae_should_succeed: bool; + accepted_exit_codes: int list; } type t = { @@ -151,7 +151,7 @@ end = struct exclude = []; filters = None; compare_should_succeed = true; - ae_should_succeed = true; + accepted_exit_codes = [0]; } let make ~cmd ~pb_file ~params = {cmd; pb_file; params} @@ -178,9 +178,10 @@ end = struct pp_output tst in let accepted_ae_exit_code = - if tst.params.ae_should_succeed - then "0" - else "1" + Format.( + asprintf "@[<2>(or@ @[%a@]@])" + (pp_print_list pp_print_int) tst.params.accepted_exit_codes + ) in Format.fprintf fmt "\ @[\ @@ -244,7 +245,9 @@ end = struct | "fail" -> {acc with compare_should_succeed = false} | "err" -> - {acc with ae_should_succeed = false} + {acc with accepted_exit_codes = [1]} + | "timeout" -> + {acc with accepted_exit_codes = [142]} | "dolmen" -> { acc with exclude = "legacy" :: acc.exclude;