/export/starexec/sandbox/solver/bin/starexec_run_FirstOrder /export/starexec/sandbox/benchmark/theBenchmark.xml /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- MAYBE We consider the system theBenchmark. We are asked to determine termination of the following first-order TRS. !minus : [] --> o !plus : [] --> o !times : [] --> o 0 : [] --> o 1 : [] --> o D : [] --> o app : [o * o] --> o cons : [] --> o constant : [] --> o false : [] --> o filter : [] --> o filter2 : [] --> o map : [] --> o nil : [] --> o t : [] --> o true : [] --> o app(D, t) => 1 app(D, constant) => 0 app(D, app(app(!plus, X), Y)) => app(app(!plus, app(D, X)), app(D, Y)) app(D, app(app(!times, X), Y)) => app(app(!plus, app(app(!times, Y), app(D, X))), app(app(!times, X), app(D, Y))) app(D, app(app(!minus, X), Y)) => app(app(!minus, app(D, X)), app(D, Y)) app(app(map, X), nil) => nil app(app(map, X), app(app(cons, Y), Z)) => app(app(cons, app(X, Y)), app(app(map, X), Z)) app(app(filter, X), nil) => nil app(app(filter, X), app(app(cons, Y), Z)) => app(app(app(app(filter2, app(X, Y)), X), Y), Z) app(app(app(app(filter2, true), X), Y), Z) => app(app(cons, Y), app(app(filter, X), Z)) app(app(app(app(filter2, false), X), Y), Z) => app(app(filter, X), Z)