R
↳Dependency Pair Analysis
ODD(s(x)) -> NOT(odd(x))
ODD(s(x)) -> ODD(x)
+'(x, s(y)) -> +'(x, y)
+'(s(x), y) -> +'(x, y)
R
↳DPs
→DP Problem 1
↳Argument Filtering and Ordering
→DP Problem 2
↳AFS
ODD(s(x)) -> ODD(x)
not(true) -> false
not(false) -> true
odd(0) -> false
odd(s(x)) -> not(odd(x))
+(x, 0) -> x
+(x, s(y)) -> s(+(x, y))
+(s(x), y) -> s(+(x, y))
innermost
ODD(s(x)) -> ODD(x)
ODD(x1) -> ODD(x1)
s(x1) -> s(x1)
R
↳DPs
→DP Problem 1
↳AFS
→DP Problem 3
↳Dependency Graph
→DP Problem 2
↳AFS
not(true) -> false
not(false) -> true
odd(0) -> false
odd(s(x)) -> not(odd(x))
+(x, 0) -> x
+(x, s(y)) -> s(+(x, y))
+(s(x), y) -> s(+(x, y))
innermost
R
↳DPs
→DP Problem 1
↳AFS
→DP Problem 2
↳Argument Filtering and Ordering
+'(s(x), y) -> +'(x, y)
+'(x, s(y)) -> +'(x, y)
not(true) -> false
not(false) -> true
odd(0) -> false
odd(s(x)) -> not(odd(x))
+(x, 0) -> x
+(x, s(y)) -> s(+(x, y))
+(s(x), y) -> s(+(x, y))
innermost
+'(s(x), y) -> +'(x, y)
+'(x, s(y)) -> +'(x, y)
+'(x1, x2) -> +'(x1, x2)
s(x1) -> s(x1)
R
↳DPs
→DP Problem 1
↳AFS
→DP Problem 2
↳AFS
→DP Problem 4
↳Dependency Graph
not(true) -> false
not(false) -> true
odd(0) -> false
odd(s(x)) -> not(odd(x))
+(x, 0) -> x
+(x, s(y)) -> s(+(x, y))
+(s(x), y) -> s(+(x, y))
innermost