R
↳Dependency Pair Analysis
NOT(and(x, y)) -> OR(not(x), not(y))
NOT(and(x, y)) -> NOT(x)
NOT(and(x, y)) -> NOT(y)
NOT(or(x, y)) -> AND(not(x), not(y))
NOT(or(x, y)) -> NOT(x)
NOT(or(x, y)) -> NOT(y)
R
↳DPs
→DP Problem 1
↳Argument Filtering and Ordering
NOT(or(x, y)) -> NOT(y)
NOT(or(x, y)) -> NOT(x)
NOT(and(x, y)) -> NOT(y)
NOT(and(x, y)) -> NOT(x)
or(x, x) -> x
and(x, x) -> x
not(not(x)) -> x
not(and(x, y)) -> or(not(x), not(y))
not(or(x, y)) -> and(not(x), not(y))
innermost
NOT(or(x, y)) -> NOT(y)
NOT(or(x, y)) -> NOT(x)
POL(and(x1, x2)) = x1 + x2 POL(NOT(x1)) = x1 POL(or(x1, x2)) = 1 + x1 + x2
NOT(x1) -> NOT(x1)
or(x1, x2) -> or(x1, x2)
and(x1, x2) -> and(x1, x2)
R
↳DPs
→DP Problem 1
↳AFS
→DP Problem 2
↳Argument Filtering and Ordering
NOT(and(x, y)) -> NOT(y)
NOT(and(x, y)) -> NOT(x)
or(x, x) -> x
and(x, x) -> x
not(not(x)) -> x
not(and(x, y)) -> or(not(x), not(y))
not(or(x, y)) -> and(not(x), not(y))
innermost
NOT(and(x, y)) -> NOT(y)
NOT(and(x, y)) -> NOT(x)
POL(and(x1, x2)) = 1 + x1 + x2 POL(NOT(x1)) = x1
NOT(x1) -> NOT(x1)
and(x1, x2) -> and(x1, x2)
R
↳DPs
→DP Problem 1
↳AFS
→DP Problem 2
↳AFS
...
→DP Problem 3
↳Dependency Graph
or(x, x) -> x
and(x, x) -> x
not(not(x)) -> x
not(and(x, y)) -> or(not(x), not(y))
not(or(x, y)) -> and(not(x), not(y))
innermost