Term Rewriting System R:
[x, ys, f, xs]
app(app(app(consif, true), x), ys) -> app(app(cons, x), ys)
app(app(app(consif, false), x), ys) -> ys
app(app(filter, f), nil) -> nil
app(app(filter, f), app(app(cons, x), xs)) -> app(app(app(consif, app(f, x)), x), app(app(filter, f), xs))

Termination of R to be shown.



   R
Dependency Pair Analysis



R contains the following Dependency Pairs:

APP(app(app(consif, true), x), ys) -> APP(app(cons, x), ys)
APP(app(app(consif, true), x), ys) -> APP(cons, x)
APP(app(filter, f), app(app(cons, x), xs)) -> APP(app(app(consif, app(f, x)), x), app(app(filter, f), xs))
APP(app(filter, f), app(app(cons, x), xs)) -> APP(app(consif, app(f, x)), x)
APP(app(filter, f), app(app(cons, x), xs)) -> APP(consif, app(f, x))
APP(app(filter, f), app(app(cons, x), xs)) -> APP(f, x)
APP(app(filter, f), app(app(cons, x), xs)) -> APP(app(filter, f), xs)

Furthermore, R contains one SCC.


   R
DPs
       →DP Problem 1
Remaining Obligation(s)




The following remains to be proven:
Dependency Pairs:

APP(app(filter, f), app(app(cons, x), xs)) -> APP(app(filter, f), xs)
APP(app(filter, f), app(app(cons, x), xs)) -> APP(f, x)
APP(app(filter, f), app(app(cons, x), xs)) -> APP(app(consif, app(f, x)), x)
APP(app(filter, f), app(app(cons, x), xs)) -> APP(app(app(consif, app(f, x)), x), app(app(filter, f), xs))
APP(app(app(consif, true), x), ys) -> APP(app(cons, x), ys)


Rules:


app(app(app(consif, true), x), ys) -> app(app(cons, x), ys)
app(app(app(consif, false), x), ys) -> ys
app(app(filter, f), nil) -> nil
app(app(filter, f), app(app(cons, x), xs)) -> app(app(app(consif, app(f, x)), x), app(app(filter, f), xs))




Termination of R could not be shown.
Duration:
0:00 minutes