R
↳Dependency Pair Analysis
APP(app(plus, app(s, x)), y) -> APP(s, app(app(plus, x), y))
APP(app(plus, app(s, x)), y) -> APP(app(plus, x), y)
APP(app(plus, app(s, x)), y) -> APP(plus, x)
APP(app(times, app(s, x)), y) -> APP(app(plus, app(app(times, x), y)), y)
APP(app(times, app(s, x)), y) -> APP(plus, app(app(times, x), y))
APP(app(times, app(s, x)), y) -> APP(app(times, x), y)
APP(app(times, app(s, x)), y) -> APP(times, x)
APP(inc, xs) -> APP(app(map, app(plus, app(s, 0))), xs)
APP(inc, xs) -> APP(map, app(plus, app(s, 0)))
APP(inc, xs) -> APP(plus, app(s, 0))
APP(inc, xs) -> APP(s, 0)
APP(double, xs) -> APP(app(map, app(times, app(s, app(s, 0)))), xs)
APP(double, xs) -> APP(map, app(times, app(s, app(s, 0))))
APP(double, xs) -> APP(times, app(s, app(s, 0)))
APP(double, xs) -> APP(s, app(s, 0))
APP(double, xs) -> APP(s, 0)
APP(app(map, f), app(app(cons, x), xs)) -> APP(app(cons, app(f, x)), app(app(map, f), xs))
APP(app(map, f), app(app(cons, x), xs)) -> APP(cons, app(f, x))
APP(app(map, f), app(app(cons, x), xs)) -> APP(f, x)
APP(app(map, f), app(app(cons, x), xs)) -> APP(app(map, f), xs)
R
↳DPs
→DP Problem 1
↳Remaining Obligation(s)
APP(app(map, f), app(app(cons, x), xs)) -> APP(app(map, f), xs)
APP(app(map, f), app(app(cons, x), xs)) -> APP(f, x)
APP(app(map, f), app(app(cons, x), xs)) -> APP(app(cons, app(f, x)), app(app(map, f), xs))
APP(double, xs) -> APP(app(map, app(times, app(s, app(s, 0)))), xs)
APP(inc, xs) -> APP(app(map, app(plus, app(s, 0))), xs)
APP(app(times, app(s, x)), y) -> APP(app(times, x), y)
APP(app(times, app(s, x)), y) -> APP(app(plus, app(app(times, x), y)), y)
APP(app(plus, app(s, x)), y) -> APP(app(plus, x), y)
app(app(plus, 0), y) -> y
app(app(plus, app(s, x)), y) -> app(s, app(app(plus, x), y))
app(app(times, 0), y) -> 0
app(app(times, app(s, x)), y) -> app(app(plus, app(app(times, x), y)), y)
app(inc, xs) -> app(app(map, app(plus, app(s, 0))), xs)
app(double, xs) -> app(app(map, app(times, app(s, app(s, 0)))), xs)
app(app(map, f), nil) -> nil
app(app(map, f), app(app(cons, x), xs)) -> app(app(cons, app(f, x)), app(app(map, f), xs))