/export/starexec/sandbox2/solver/bin/starexec_run_HigherOrder /export/starexec/sandbox2/benchmark/theBenchmark.xml /export/starexec/sandbox2/output/output_files -------------------------------------------------------------------------------- MAYBE We consider the system theBenchmark. Alphabet: 0 : [] --> N even : [] --> N -> N -> B false : [] --> B g : [] --> N -> B h : [] --> N -> N -> B -> N -> B not : [] --> B -> B rec : [] --> N -> N -> B -> N -> B -> B -> N -> B true : [] --> B Rules: rec f (i 0) => i g x => true h x f y => not (f y) not true => false not false => true even x y => rec h (g x) y Using the transformations described in [Kop11], this system can be brought in a form without leading free variables in the left-hand side, and where the left-hand side of a variable is always a functional term or application headed by a functional term. We now transform the resulting AFS into an AFSM by replacing all free variables by meta-variables (with arity 0). This leads to the following AFSM: Alphabet: 0 : [] --> N even : [N] --> N -> B false : [] --> B g : [] --> N -> B h : [] --> N -> N -> B -> N -> B not : [B] --> B rec : [N -> N -> B -> N -> B * B] --> N -> B true : [] --> B ~AP1 : [N -> B * N] --> B Rules: rec(F, ~AP1(G, 0)) => G g X => true h X F Y => not(~AP1(F, Y)) not(true) => false not(false) => true even(X) Y => rec(h, g X) Y rec(F, even(X) 0) => even(X) rec(F, g 0) => g rec(F, h X G 0) => h X G rec(F, rec(G, X) 0) => rec(G, X) ~AP1(F, X) => F X +++ Citations +++ [Kop11] C. Kop. Simplifying Algebraic Functional Systems. In Proceedings of CAI 2011, volume 6742 of LNCS. 201--215, Springer, 2011.