R
↳Dependency Pair Analysis
PURGE(.(x, y)) -> PURGE(remove(x, y))
PURGE(.(x, y)) -> REMOVE(x, y)
REMOVE(x, .(y, z)) -> REMOVE(x, z)
R
↳DPs
→DP Problem 1
↳Argument Filtering and Ordering
→DP Problem 2
↳AFS
REMOVE(x, .(y, z)) -> REMOVE(x, z)
purge(nil) -> nil
purge(.(x, y)) -> .(x, purge(remove(x, y)))
remove(x, nil) -> nil
remove(x, .(y, z)) -> if(=(x, y), remove(x, z), .(y, remove(x, z)))
innermost
REMOVE(x, .(y, z)) -> REMOVE(x, z)
POL(REMOVE(x1, x2)) = x1 + x2 POL(.(x1, x2)) = 1 + x1 + x2
REMOVE(x1, x2) -> REMOVE(x1, x2)
.(x1, x2) -> .(x1, x2)
R
↳DPs
→DP Problem 1
↳AFS
→DP Problem 3
↳Dependency Graph
→DP Problem 2
↳AFS
purge(nil) -> nil
purge(.(x, y)) -> .(x, purge(remove(x, y)))
remove(x, nil) -> nil
remove(x, .(y, z)) -> if(=(x, y), remove(x, z), .(y, remove(x, z)))
innermost
R
↳DPs
→DP Problem 1
↳AFS
→DP Problem 2
↳Argument Filtering and Ordering
PURGE(.(x, y)) -> PURGE(remove(x, y))
purge(nil) -> nil
purge(.(x, y)) -> .(x, purge(remove(x, y)))
remove(x, nil) -> nil
remove(x, .(y, z)) -> if(=(x, y), remove(x, z), .(y, remove(x, z)))
innermost
PURGE(.(x, y)) -> PURGE(remove(x, y))
remove(x, nil) -> nil
remove(x, .(y, z)) -> if(=(x, y), remove(x, z), .(y, remove(x, z)))
POL(remove(x1, x2)) = x1 + x2 POL(PURGE(x1)) = x1 POL(=(x1, x2)) = x1 + x2 POL(nil) = 0 POL(.(x1, x2)) = 1 + x1 + x2
PURGE(x1) -> PURGE(x1)
.(x1, x2) -> .(x1, x2)
remove(x1, x2) -> remove(x1, x2)
if(x1, x2, x3) -> x1
=(x1, x2) -> =(x1, x2)
R
↳DPs
→DP Problem 1
↳AFS
→DP Problem 2
↳AFS
→DP Problem 4
↳Dependency Graph
purge(nil) -> nil
purge(.(x, y)) -> .(x, purge(remove(x, y)))
remove(x, nil) -> nil
remove(x, .(y, z)) -> if(=(x, y), remove(x, z), .(y, remove(x, z)))
innermost