/export/starexec/sandbox/solver/bin/starexec_run_HigherOrder /export/starexec/sandbox/benchmark/theBenchmark.xml /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- MAYBE We consider the system theBenchmark. Alphabet: cons : [] --> a -> alist -> alist map : [] --> a -> a -> alist -> alist nil : [] --> alist o : [] --> a -> a -> a -> a -> a -> a xap : [] --> a -> a -> a -> a Rules: map (/\x.xap f x) nil => nil map (/\x.xap f x) (cons y z) => cons (xap f y) (map (/\u.xap f u) z) map (/\x.xap f x) (map (/\y.xap g y) z) => map (o (/\u.xap f u) (/\v.xap g v)) z o (/\x.f x) (/\y.g y) z => f (g z) xap f x => f x 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: cons : [a * alist] --> alist map : [a -> a * alist] --> alist nil : [] --> alist o : [a -> a * a -> a] --> a -> a xap : [a -> a * a] --> a ~AP1 : [a -> a * a] --> a Rules: map(/\x.xap(F, x), nil) => nil map(/\x.xap(F, x), cons(X, Y)) => cons(xap(F, X), map(/\y.xap(F, y), Y)) map(/\x.xap(F, x), map(/\y.xap(G, y), X)) => map(o(/\z.xap(F, z), /\u.xap(G, u)), X) o(/\x.~AP1(F, x), /\y.~AP1(G, y)) X => ~AP1(F, ~AP1(G, X)) xap(F, X) => ~AP1(F, X) o(/\x.o(F, G) x, /\y.~AP1(H, y)) X => o(F, G) ~AP1(H, X) o(/\x.xap(F, x), /\y.~AP1(G, y)) X => xap(F, ~AP1(G, X)) o(/\x.~AP1(F, x), /\y.o(G, H) y) X => ~AP1(F, o(G, H) X) o(/\x.~AP1(F, x), /\y.xap(G, y)) X => ~AP1(F, xap(G, X)) o(/\x.o(F, G) x, /\y.o(H, I) y) X => o(F, G) (o(H, I) X) o(/\x.o(F, G) x, /\y.xap(H, y)) X => o(F, G) xap(H, X) o(/\x.xap(F, x), /\y.o(G, H) y) X => xap(F, o(G, H) X) o(/\x.xap(F, x), /\y.xap(G, y)) X => xap(F, xap(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.