/export/starexec/sandbox2/solver/bin/starexec_run_FirstOrder /export/starexec/sandbox2/benchmark/theBenchmark.xml /export/starexec/sandbox2/output/output_files -------------------------------------------------------------------------------- MAYBE We consider the system theBenchmark. We are asked to determine termination of the following first-order TRS. app : [o * o] --> o append : [] --> o cons : [] --> o flatwith : [] --> o flatwithsub : [] --> o leaf : [] --> o nil : [] --> o node : [] --> o app(app(append, nil), X) => X app(app(append, app(app(cons, X), Y)), Z) => app(app(cons, X), app(app(append, Y), Z)) app(app(flatwith, X), app(leaf, Y)) => app(app(cons, app(X, Y)), nil) app(app(flatwith, X), app(node, Y)) => app(app(flatwithsub, X), Y) app(app(flatwithsub, X), nil) => nil app(app(flatwithsub, X), app(app(cons, Y), Z)) => app(app(append, app(app(flatwith, X), Y)), app(app(flatwithsub, X), Z))