R
↳Dependency Pair Analysis
F(a, x) -> F(g(x), x)
F(a, x) -> G(x)
H(g(x)) -> H(a)
G(h(x)) -> G(x)
R
↳DPs
→DP Problem 1
↳Narrowing Transformation
F(a, x) -> F(g(x), x)
f(a, x) -> f(g(x), x)
h(g(x)) -> h(a)
h(h(x)) -> x
g(h(x)) -> g(x)
innermost
one new Dependency Pair is created:
F(a, x) -> F(g(x), x)
F(a, h(x'')) -> F(g(x''), h(x''))
R
↳DPs
→DP Problem 1
↳Nar
→DP Problem 2
↳Narrowing Transformation
F(a, h(x'')) -> F(g(x''), h(x''))
f(a, x) -> f(g(x), x)
h(g(x)) -> h(a)
h(h(x)) -> x
g(h(x)) -> g(x)
innermost
three new Dependency Pairs are created:
F(a, h(x'')) -> F(g(x''), h(x''))
F(a, h(h(x'))) -> F(g(x'), h(h(x')))
F(a, h(g(x'))) -> F(g(g(x')), h(a))
F(a, h(h(x'))) -> F(g(h(x')), x')