Term Rewriting System R:
[x, y]
active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)

Innermost Termination of R to be shown.



   R
Dependency Pair Analysis



R contains the following Dependency Pairs:

ACTIVE(f(x)) -> F(active(x))
ACTIVE(f(x)) -> ACTIVE(x)
TOP(active(c)) -> TOP(mark(c))
TOP(mark(x)) -> TOP(check(x))
TOP(mark(x)) -> CHECK(x)
TOP(found(x)) -> TOP(active(x))
TOP(found(x)) -> ACTIVE(x)
CHECK(f(x)) -> F(check(x))
CHECK(f(x)) -> CHECK(x)
CHECK(x) -> START(match(f(X), x))
CHECK(x) -> MATCH(f(X), x)
CHECK(x) -> F(X)
MATCH(f(x), f(y)) -> F(match(x, y))
MATCH(f(x), f(y)) -> MATCH(x, y)
MATCH(X, x) -> PROPER(x)
PROPER(f(x)) -> F(proper(x))
PROPER(f(x)) -> PROPER(x)
F(ok(x)) -> F(x)
F(found(x)) -> F(x)
F(mark(x)) -> F(x)

Furthermore, R contains six SCCs.


   R
DPs
       →DP Problem 1
Forward Instantiation Transformation
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pairs:

F(mark(x)) -> F(x)
F(found(x)) -> F(x)
F(ok(x)) -> F(x)


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

F(ok(x)) -> F(x)
three new Dependency Pairs are created:

F(ok(ok(x''))) -> F(ok(x''))
F(ok(found(x''))) -> F(found(x''))
F(ok(mark(x''))) -> F(mark(x''))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
           →DP Problem 7
Forward Instantiation Transformation
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pairs:

F(ok(mark(x''))) -> F(mark(x''))
F(ok(found(x''))) -> F(found(x''))
F(ok(ok(x''))) -> F(ok(x''))
F(found(x)) -> F(x)
F(mark(x)) -> F(x)


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

F(found(x)) -> F(x)
five new Dependency Pairs are created:

F(found(found(x''))) -> F(found(x''))
F(found(mark(x''))) -> F(mark(x''))
F(found(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(found(ok(found(x'''')))) -> F(ok(found(x'''')))
F(found(ok(mark(x'''')))) -> F(ok(mark(x'''')))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
           →DP Problem 7
FwdInst
             ...
               →DP Problem 8
Forward Instantiation Transformation
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pairs:

F(found(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(found(ok(found(x'''')))) -> F(ok(found(x'''')))
F(found(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(found(mark(x''))) -> F(mark(x''))
F(found(found(x''))) -> F(found(x''))
F(ok(found(x''))) -> F(found(x''))
F(ok(ok(x''))) -> F(ok(x''))
F(mark(x)) -> F(x)
F(ok(mark(x''))) -> F(mark(x''))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

F(mark(x)) -> F(x)
nine new Dependency Pairs are created:

F(mark(mark(x''))) -> F(mark(x''))
F(mark(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(ok(found(x'''')))) -> F(ok(found(x'''')))
F(mark(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(mark(found(found(x'''')))) -> F(found(found(x'''')))
F(mark(found(mark(x'''')))) -> F(found(mark(x'''')))
F(mark(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(mark(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
           →DP Problem 7
FwdInst
             ...
               →DP Problem 9
Forward Instantiation Transformation
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pairs:

F(mark(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(ok(found(x'''')))) -> F(ok(found(x'''')))
F(mark(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(found(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(found(mark(x'''')))) -> F(found(mark(x'''')))
F(mark(found(found(x'''')))) -> F(found(found(x'''')))
F(mark(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(mark(ok(found(x'''')))) -> F(ok(found(x'''')))
F(found(mark(x''))) -> F(mark(x''))
F(found(found(x''))) -> F(found(x''))
F(ok(found(x''))) -> F(found(x''))
F(ok(ok(x''))) -> F(ok(x''))
F(mark(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(mark(x''))) -> F(mark(x''))
F(ok(mark(x''))) -> F(mark(x''))
F(found(ok(mark(x'''')))) -> F(ok(mark(x'''')))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

F(ok(ok(x''))) -> F(ok(x''))
three new Dependency Pairs are created:

F(ok(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(ok(ok(found(x'''')))) -> F(ok(found(x'''')))
F(ok(ok(mark(x'''')))) -> F(ok(mark(x'''')))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
           →DP Problem 7
FwdInst
             ...
               →DP Problem 10
Forward Instantiation Transformation
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pairs:

F(found(ok(found(x'''')))) -> F(ok(found(x'''')))
F(mark(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(ok(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(found(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(found(mark(x'''')))) -> F(found(mark(x'''')))
F(mark(found(found(x'''')))) -> F(found(found(x'''')))
F(mark(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(mark(ok(found(x'''')))) -> F(ok(found(x'''')))
F(found(mark(x''))) -> F(mark(x''))
F(found(found(x''))) -> F(found(x''))
F(ok(found(x''))) -> F(found(x''))
F(ok(ok(found(x'''')))) -> F(ok(found(x'''')))
F(ok(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(mark(x''))) -> F(mark(x''))
F(ok(mark(x''))) -> F(mark(x''))
F(found(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(mark(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

F(ok(found(x''))) -> F(found(x''))
five new Dependency Pairs are created:

F(ok(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(found(mark(x'''')))) -> F(found(mark(x'''')))
F(ok(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(ok(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(ok(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
           →DP Problem 7
FwdInst
             ...
               →DP Problem 11
Forward Instantiation Transformation
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pairs:

F(mark(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(mark(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(mark(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(found(mark(x'''')))) -> F(found(mark(x'''')))
F(mark(found(found(x'''')))) -> F(found(found(x'''')))
F(mark(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(found(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(ok(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(ok(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(mark(ok(found(x'''')))) -> F(ok(found(x'''')))
F(ok(mark(x''))) -> F(mark(x''))
F(ok(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(found(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(ok(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(ok(found(mark(x'''')))) -> F(found(mark(x'''')))
F(ok(ok(found(x'''')))) -> F(ok(found(x'''')))
F(ok(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(mark(x''))) -> F(mark(x''))
F(found(mark(x''))) -> F(mark(x''))
F(found(found(x''))) -> F(found(x''))
F(ok(found(found(x'''')))) -> F(found(found(x'''')))
F(found(ok(found(x'''')))) -> F(ok(found(x'''')))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

F(ok(mark(x''))) -> F(mark(x''))
nine new Dependency Pairs are created:

F(ok(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(ok(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(ok(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(ok(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(ok(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(ok(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(ok(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(ok(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(ok(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
           →DP Problem 7
FwdInst
             ...
               →DP Problem 12
Forward Instantiation Transformation
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pairs:

F(ok(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(ok(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(ok(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(found(ok(found(x'''')))) -> F(ok(found(x'''')))
F(mark(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(ok(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(ok(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(found(mark(x'''')))) -> F(found(mark(x'''')))
F(ok(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(mark(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(ok(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(ok(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(ok(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(ok(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(found(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(ok(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(ok(found(mark(x'''')))) -> F(found(mark(x'''')))
F(mark(ok(found(x'''')))) -> F(ok(found(x'''')))
F(found(mark(x''))) -> F(mark(x''))
F(found(found(x''))) -> F(found(x''))
F(ok(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(ok(found(x'''')))) -> F(ok(found(x'''')))
F(ok(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(mark(x''))) -> F(mark(x''))
F(ok(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(mark(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

F(found(found(x''))) -> F(found(x''))
five new Dependency Pairs are created:

F(found(found(found(x'''')))) -> F(found(found(x'''')))
F(found(found(mark(x'''')))) -> F(found(mark(x'''')))
F(found(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(found(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(found(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
           →DP Problem 7
FwdInst
             ...
               →DP Problem 13
Forward Instantiation Transformation
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pairs:

F(mark(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(ok(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(ok(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(found(mark(x'''')))) -> F(found(mark(x'''')))
F(ok(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(found(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(ok(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(ok(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(found(ok(found(x'''')))) -> F(ok(found(x'''')))
F(found(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(found(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(ok(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(ok(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(ok(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(ok(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(found(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(ok(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(ok(found(mark(x'''')))) -> F(found(mark(x'''')))
F(mark(ok(found(x'''')))) -> F(ok(found(x'''')))
F(found(mark(x''))) -> F(mark(x''))
F(found(found(mark(x'''')))) -> F(found(mark(x'''')))
F(found(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(ok(found(x'''')))) -> F(ok(found(x'''')))
F(ok(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(mark(x''))) -> F(mark(x''))
F(ok(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(mark(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(ok(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

F(found(mark(x''))) -> F(mark(x''))
nine new Dependency Pairs are created:

F(found(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(found(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(found(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(found(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(found(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(found(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(found(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(found(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
           →DP Problem 7
FwdInst
             ...
               →DP Problem 14
Forward Instantiation Transformation
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pairs:

F(ok(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(ok(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(ok(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(ok(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(ok(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(found(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(found(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(found(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(found(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(found(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(mark(found(mark(x'''')))) -> F(found(mark(x'''')))
F(ok(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(found(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(found(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(found(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(ok(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(ok(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(ok(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(ok(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(ok(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(found(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(ok(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(ok(found(x'''')))) -> F(ok(found(x'''')))
F(found(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(found(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(ok(found(mark(x'''')))) -> F(found(mark(x'''')))
F(ok(ok(found(x'''')))) -> F(ok(found(x'''')))
F(ok(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(mark(x''))) -> F(mark(x''))
F(found(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(found(mark(x'''')))) -> F(found(mark(x'''')))
F(found(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(found(found(x'''')))) -> F(found(found(x'''')))
F(found(ok(found(x'''')))) -> F(ok(found(x'''')))
F(mark(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

F(found(ok(ok(x'''')))) -> F(ok(ok(x'''')))
three new Dependency Pairs are created:

F(found(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(found(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(found(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
           →DP Problem 7
FwdInst
             ...
               →DP Problem 15
Forward Instantiation Transformation
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pairs:

F(found(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(ok(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(ok(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(ok(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(ok(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(ok(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(found(ok(found(x'''')))) -> F(ok(found(x'''')))
F(mark(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(found(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(found(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(found(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(found(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(found(mark(x'''')))) -> F(found(mark(x'''')))
F(ok(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(ok(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(found(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))
F(found(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(found(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(found(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(ok(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(ok(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(ok(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(mark(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(found(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(ok(found(mark(x'''')))) -> F(found(mark(x'''')))
F(mark(ok(found(x'''')))) -> F(ok(found(x'''')))
F(found(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(found(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(found(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(found(mark(x'''')))) -> F(found(mark(x'''')))
F(found(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(ok(found(x'''')))) -> F(ok(found(x'''')))
F(ok(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(mark(x''))) -> F(mark(x''))
F(ok(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(ok(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

F(found(ok(found(x'''')))) -> F(ok(found(x'''')))
five new Dependency Pairs are created:

F(found(ok(found(found(x''''''))))) -> F(ok(found(found(x''''''))))
F(found(ok(found(mark(x''''''))))) -> F(ok(found(mark(x''''''))))
F(found(ok(found(ok(ok(x'''''''')))))) -> F(ok(found(ok(ok(x'''''''')))))
F(found(ok(found(ok(found(x'''''''')))))) -> F(ok(found(ok(found(x'''''''')))))
F(found(ok(found(ok(mark(x'''''''')))))) -> F(ok(found(ok(mark(x'''''''')))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
           →DP Problem 7
FwdInst
             ...
               →DP Problem 16
Forward Instantiation Transformation
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pairs:

F(found(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(ok(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(ok(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(ok(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(ok(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(ok(found(ok(mark(x'''''''')))))) -> F(ok(found(ok(mark(x'''''''')))))
F(ok(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(found(ok(found(ok(found(x'''''''')))))) -> F(ok(found(ok(found(x'''''''')))))
F(ok(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(found(ok(found(ok(ok(x'''''''')))))) -> F(ok(found(ok(ok(x'''''''')))))
F(found(ok(found(mark(x''''''))))) -> F(ok(found(mark(x''''''))))
F(found(ok(found(found(x''''''))))) -> F(ok(found(found(x''''''))))
F(mark(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(found(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(found(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(found(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(found(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(found(mark(x'''')))) -> F(found(mark(x'''')))
F(ok(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(ok(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(found(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))
F(found(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(found(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(found(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(ok(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(ok(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(ok(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(mark(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(found(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(ok(found(mark(x'''')))) -> F(found(mark(x'''')))
F(mark(ok(found(x'''')))) -> F(ok(found(x'''')))
F(found(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(found(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(found(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(found(mark(x'''')))) -> F(found(mark(x'''')))
F(found(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(ok(found(x'''')))) -> F(ok(found(x'''')))
F(ok(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(mark(x''))) -> F(mark(x''))
F(ok(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(found(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

F(found(ok(mark(x'''')))) -> F(ok(mark(x'''')))
nine new Dependency Pairs are created:

F(found(ok(mark(mark(x''''''))))) -> F(ok(mark(mark(x''''''))))
F(found(ok(mark(ok(ok(x'''''''')))))) -> F(ok(mark(ok(ok(x'''''''')))))
F(found(ok(mark(ok(found(x'''''''')))))) -> F(ok(mark(ok(found(x'''''''')))))
F(found(ok(mark(ok(mark(x'''''''')))))) -> F(ok(mark(ok(mark(x'''''''')))))
F(found(ok(mark(found(found(x'''''''')))))) -> F(ok(mark(found(found(x'''''''')))))
F(found(ok(mark(found(mark(x'''''''')))))) -> F(ok(mark(found(mark(x'''''''')))))
F(found(ok(mark(found(ok(ok(x''''''''''))))))) -> F(ok(mark(found(ok(ok(x''''''''''))))))
F(found(ok(mark(found(ok(found(x''''''''''))))))) -> F(ok(mark(found(ok(found(x''''''''''))))))
F(found(ok(mark(found(ok(mark(x''''''''''))))))) -> F(ok(mark(found(ok(mark(x''''''''''))))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
           →DP Problem 7
FwdInst
             ...
               →DP Problem 17
Forward Instantiation Transformation
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pairs:

F(found(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(mark(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(ok(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(found(ok(mark(found(ok(mark(x''''''''''))))))) -> F(ok(mark(found(ok(mark(x''''''''''))))))
F(ok(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(found(ok(mark(found(ok(found(x''''''''''))))))) -> F(ok(mark(found(ok(found(x''''''''''))))))
F(ok(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(found(ok(mark(found(ok(ok(x''''''''''))))))) -> F(ok(mark(found(ok(ok(x''''''''''))))))
F(ok(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(ok(found(ok(mark(x'''''''')))))) -> F(ok(found(ok(mark(x'''''''')))))
F(ok(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(found(ok(found(ok(found(x'''''''')))))) -> F(ok(found(ok(found(x'''''''')))))
F(found(ok(found(ok(ok(x'''''''')))))) -> F(ok(found(ok(ok(x'''''''')))))
F(found(ok(found(mark(x''''''))))) -> F(ok(found(mark(x''''''))))
F(mark(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(found(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(found(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(found(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(found(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(found(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(mark(found(mark(x'''')))) -> F(found(mark(x'''')))
F(ok(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(found(ok(mark(found(mark(x'''''''')))))) -> F(ok(mark(found(mark(x'''''''')))))
F(found(ok(mark(found(found(x'''''''')))))) -> F(ok(mark(found(found(x'''''''')))))
F(found(ok(mark(ok(mark(x'''''''')))))) -> F(ok(mark(ok(mark(x'''''''')))))
F(found(ok(mark(ok(found(x'''''''')))))) -> F(ok(mark(ok(found(x'''''''')))))
F(found(ok(mark(ok(ok(x'''''''')))))) -> F(ok(mark(ok(ok(x'''''''')))))
F(found(ok(mark(mark(x''''''))))) -> F(ok(mark(mark(x''''''))))
F(found(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(ok(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(ok(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(ok(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(ok(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(ok(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(found(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))
F(found(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(found(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(ok(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(ok(found(x'''')))) -> F(ok(found(x'''')))
F(found(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(found(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(ok(found(mark(x'''')))) -> F(found(mark(x'''')))
F(ok(ok(found(x'''')))) -> F(ok(found(x'''')))
F(ok(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(mark(x''))) -> F(mark(x''))
F(found(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(found(mark(x'''')))) -> F(found(mark(x'''')))
F(found(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(found(found(x'''')))) -> F(found(found(x'''')))
F(found(ok(found(found(x''''''))))) -> F(ok(found(found(x''''''))))
F(found(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

F(mark(mark(x''))) -> F(mark(x''))
nine new Dependency Pairs are created:

F(mark(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(mark(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(mark(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(mark(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(mark(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(mark(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
           →DP Problem 7
FwdInst
             ...
               →DP Problem 18
Forward Instantiation Transformation
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pairs:

F(mark(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(mark(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(mark(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(found(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(ok(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(found(ok(mark(found(ok(mark(x''''''''''))))))) -> F(ok(mark(found(ok(mark(x''''''''''))))))
F(ok(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(found(ok(mark(found(ok(found(x''''''''''))))))) -> F(ok(mark(found(ok(found(x''''''''''))))))
F(ok(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(found(ok(mark(found(ok(ok(x''''''''''))))))) -> F(ok(mark(found(ok(ok(x''''''''''))))))
F(found(ok(mark(found(mark(x'''''''')))))) -> F(ok(mark(found(mark(x'''''''')))))
F(found(ok(mark(found(found(x'''''''')))))) -> F(ok(mark(found(found(x'''''''')))))
F(found(ok(mark(ok(mark(x'''''''')))))) -> F(ok(mark(ok(mark(x'''''''')))))
F(found(ok(mark(ok(found(x'''''''')))))) -> F(ok(mark(ok(found(x'''''''')))))
F(found(ok(mark(ok(ok(x'''''''')))))) -> F(ok(mark(ok(ok(x'''''''')))))
F(ok(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(ok(found(ok(mark(x'''''''')))))) -> F(ok(found(ok(mark(x'''''''')))))
F(ok(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(found(ok(found(ok(found(x'''''''')))))) -> F(ok(found(ok(found(x'''''''')))))
F(ok(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(found(ok(found(ok(ok(x'''''''')))))) -> F(ok(found(ok(ok(x'''''''')))))
F(found(ok(found(mark(x''''''))))) -> F(ok(found(mark(x''''''))))
F(found(ok(found(found(x''''''))))) -> F(ok(found(found(x''''''))))
F(mark(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(found(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(found(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(found(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(found(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(found(mark(x'''')))) -> F(found(mark(x'''')))
F(ok(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(ok(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(found(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))
F(found(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(found(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(found(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(ok(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(ok(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(ok(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(mark(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(found(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(found(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(found(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(ok(found(mark(x'''')))) -> F(found(mark(x'''')))
F(mark(ok(found(x'''')))) -> F(ok(found(x'''')))
F(mark(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(found(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(found(mark(x'''')))) -> F(found(mark(x'''')))
F(found(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(ok(found(x'''')))) -> F(ok(found(x'''')))
F(ok(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(mark(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(ok(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(ok(mark(mark(x''''''))))) -> F(ok(mark(mark(x''''''))))
F(mark(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

F(mark(ok(ok(x'''')))) -> F(ok(ok(x'''')))
three new Dependency Pairs are created:

F(mark(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(mark(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(mark(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
           →DP Problem 7
FwdInst
             ...
               →DP Problem 19
Forward Instantiation Transformation
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pairs:

F(mark(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(mark(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(found(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(ok(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(found(ok(mark(found(ok(mark(x''''''''''))))))) -> F(ok(mark(found(ok(mark(x''''''''''))))))
F(ok(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(found(ok(mark(found(ok(found(x''''''''''))))))) -> F(ok(mark(found(ok(found(x''''''''''))))))
F(ok(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(found(ok(mark(found(ok(ok(x''''''''''))))))) -> F(ok(mark(found(ok(ok(x''''''''''))))))
F(found(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(mark(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(found(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(found(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(found(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(found(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(found(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(found(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(mark(found(mark(x'''')))) -> F(found(mark(x'''')))
F(ok(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(found(ok(mark(found(mark(x'''''''')))))) -> F(ok(mark(found(mark(x'''''''')))))
F(found(ok(mark(found(found(x'''''''')))))) -> F(ok(mark(found(found(x'''''''')))))
F(found(ok(mark(ok(mark(x'''''''')))))) -> F(ok(mark(ok(mark(x'''''''')))))
F(found(ok(mark(ok(found(x'''''''')))))) -> F(ok(mark(ok(found(x'''''''')))))
F(found(ok(mark(ok(ok(x'''''''')))))) -> F(ok(mark(ok(ok(x'''''''')))))
F(ok(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(ok(found(ok(mark(x'''''''')))))) -> F(ok(found(ok(mark(x'''''''')))))
F(ok(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(found(ok(found(ok(found(x'''''''')))))) -> F(ok(found(ok(found(x'''''''')))))
F(ok(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(found(ok(found(ok(ok(x'''''''')))))) -> F(ok(found(ok(ok(x'''''''')))))
F(found(ok(found(mark(x''''''))))) -> F(ok(found(mark(x''''''))))
F(found(ok(found(found(x''''''))))) -> F(ok(found(found(x''''''))))
F(found(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(found(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))
F(found(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(found(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(found(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(ok(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(ok(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(ok(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(ok(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(mark(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))
F(mark(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(found(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(ok(found(mark(x'''')))) -> F(found(mark(x'''')))
F(mark(ok(found(x'''')))) -> F(ok(found(x'''')))
F(mark(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(found(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(found(mark(x'''')))) -> F(found(mark(x'''')))
F(found(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(ok(found(x'''')))) -> F(ok(found(x'''')))
F(ok(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(mark(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(mark(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(ok(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(ok(mark(mark(x''''''))))) -> F(ok(mark(mark(x''''''))))
F(mark(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(mark(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

F(mark(ok(found(x'''')))) -> F(ok(found(x'''')))
five new Dependency Pairs are created:

F(mark(ok(found(found(x''''''))))) -> F(ok(found(found(x''''''))))
F(mark(ok(found(mark(x''''''))))) -> F(ok(found(mark(x''''''))))
F(mark(ok(found(ok(ok(x'''''''')))))) -> F(ok(found(ok(ok(x'''''''')))))
F(mark(ok(found(ok(found(x'''''''')))))) -> F(ok(found(ok(found(x'''''''')))))
F(mark(ok(found(ok(mark(x'''''''')))))) -> F(ok(found(ok(mark(x'''''''')))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
           →DP Problem 7
FwdInst
             ...
               →DP Problem 20
Forward Instantiation Transformation
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pairs:

F(mark(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(mark(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(mark(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(ok(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(found(ok(mark(found(ok(mark(x''''''''''))))))) -> F(ok(mark(found(ok(mark(x''''''''''))))))
F(ok(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(found(ok(mark(found(ok(found(x''''''''''))))))) -> F(ok(mark(found(ok(found(x''''''''''))))))
F(ok(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(found(ok(mark(found(ok(ok(x''''''''''))))))) -> F(ok(mark(found(ok(ok(x''''''''''))))))
F(mark(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(found(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(found(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(found(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(found(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(found(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(found(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(mark(found(mark(x'''')))) -> F(found(mark(x'''')))
F(ok(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(found(ok(mark(found(mark(x'''''''')))))) -> F(ok(mark(found(mark(x'''''''')))))
F(found(ok(mark(found(found(x'''''''')))))) -> F(ok(mark(found(found(x'''''''')))))
F(found(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(found(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(ok(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(found(ok(mark(ok(mark(x'''''''')))))) -> F(ok(mark(ok(mark(x'''''''')))))
F(mark(ok(found(ok(mark(x'''''''')))))) -> F(ok(found(ok(mark(x'''''''')))))
F(ok(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(found(ok(mark(ok(found(x'''''''')))))) -> F(ok(mark(ok(found(x'''''''')))))
F(ok(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(found(ok(mark(ok(ok(x'''''''')))))) -> F(ok(mark(ok(ok(x'''''''')))))
F(found(ok(mark(mark(x''''''))))) -> F(ok(mark(mark(x''''''))))
F(ok(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(ok(found(ok(mark(x'''''''')))))) -> F(ok(found(ok(mark(x'''''''')))))
F(found(ok(found(ok(found(x'''''''')))))) -> F(ok(found(ok(found(x'''''''')))))
F(found(ok(found(ok(ok(x'''''''')))))) -> F(ok(found(ok(ok(x'''''''')))))
F(found(ok(found(mark(x''''''))))) -> F(ok(found(mark(x''''''))))
F(ok(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(mark(ok(found(ok(found(x'''''''')))))) -> F(ok(found(ok(found(x'''''''')))))
F(found(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))
F(found(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(found(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(ok(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(ok(found(ok(ok(x'''''''')))))) -> F(ok(found(ok(ok(x'''''''')))))
F(mark(ok(found(mark(x''''''))))) -> F(ok(found(mark(x''''''))))
F(mark(ok(found(found(x''''''))))) -> F(ok(found(found(x''''''))))
F(mark(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(ok(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(ok(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(mark(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))
F(mark(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(found(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(ok(found(mark(x'''')))) -> F(found(mark(x'''')))
F(ok(ok(found(x'''')))) -> F(ok(found(x'''')))
F(ok(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(mark(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(mark(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(found(mark(x'''')))) -> F(found(mark(x'''')))
F(found(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(found(found(x'''')))) -> F(found(found(x'''')))
F(found(ok(found(found(x''''''))))) -> F(ok(found(found(x''''''))))
F(mark(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(mark(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

F(mark(ok(mark(x'''')))) -> F(ok(mark(x'''')))
nine new Dependency Pairs are created:

F(mark(ok(mark(mark(x''''''))))) -> F(ok(mark(mark(x''''''))))
F(mark(ok(mark(ok(ok(x'''''''')))))) -> F(ok(mark(ok(ok(x'''''''')))))
F(mark(ok(mark(ok(found(x'''''''')))))) -> F(ok(mark(ok(found(x'''''''')))))
F(mark(ok(mark(ok(mark(x'''''''')))))) -> F(ok(mark(ok(mark(x'''''''')))))
F(mark(ok(mark(found(found(x'''''''')))))) -> F(ok(mark(found(found(x'''''''')))))
F(mark(ok(mark(found(mark(x'''''''')))))) -> F(ok(mark(found(mark(x'''''''')))))
F(mark(ok(mark(found(ok(ok(x''''''''''))))))) -> F(ok(mark(found(ok(ok(x''''''''''))))))
F(mark(ok(mark(found(ok(found(x''''''''''))))))) -> F(ok(mark(found(ok(found(x''''''''''))))))
F(mark(ok(mark(found(ok(mark(x''''''''''))))))) -> F(ok(mark(found(ok(mark(x''''''''''))))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
           →DP Problem 7
FwdInst
             ...
               →DP Problem 21
Forward Instantiation Transformation
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pairs:

F(mark(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(mark(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(found(ok(mark(found(ok(mark(x''''''''''))))))) -> F(ok(mark(found(ok(mark(x''''''''''))))))
F(found(ok(mark(found(ok(found(x''''''''''))))))) -> F(ok(mark(found(ok(found(x''''''''''))))))
F(found(ok(mark(found(ok(ok(x''''''''''))))))) -> F(ok(mark(found(ok(ok(x''''''''''))))))
F(found(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(found(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(found(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(found(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(found(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(ok(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(mark(ok(mark(found(ok(mark(x''''''''''))))))) -> F(ok(mark(found(ok(mark(x''''''''''))))))
F(mark(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(ok(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(ok(mark(found(ok(found(x''''''''''))))))) -> F(ok(mark(found(ok(found(x''''''''''))))))
F(mark(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(ok(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(ok(mark(found(ok(ok(x''''''''''))))))) -> F(ok(mark(found(ok(ok(x''''''''''))))))
F(mark(ok(mark(found(mark(x'''''''')))))) -> F(ok(mark(found(mark(x'''''''')))))
F(found(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(mark(ok(found(ok(mark(x'''''''')))))) -> F(ok(found(ok(mark(x'''''''')))))
F(found(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(mark(found(mark(x'''')))) -> F(found(mark(x'''')))
F(ok(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(found(ok(mark(found(mark(x'''''''')))))) -> F(ok(mark(found(mark(x'''''''')))))
F(found(ok(mark(found(found(x'''''''')))))) -> F(ok(mark(found(found(x'''''''')))))
F(found(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(found(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(ok(mark(found(found(x'''''''')))))) -> F(ok(mark(found(found(x'''''''')))))
F(mark(ok(mark(ok(mark(x'''''''')))))) -> F(ok(mark(ok(mark(x'''''''')))))
F(mark(ok(mark(ok(found(x'''''''')))))) -> F(ok(mark(ok(found(x'''''''')))))
F(mark(ok(mark(ok(ok(x'''''''')))))) -> F(ok(mark(ok(ok(x'''''''')))))
F(mark(ok(mark(mark(x''''''))))) -> F(ok(mark(mark(x''''''))))
F(ok(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(found(ok(mark(ok(mark(x'''''''')))))) -> F(ok(mark(ok(mark(x'''''''')))))
F(found(ok(mark(ok(found(x'''''''')))))) -> F(ok(mark(ok(found(x'''''''')))))
F(found(ok(mark(ok(ok(x'''''''')))))) -> F(ok(mark(ok(ok(x'''''''')))))
F(ok(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(ok(found(ok(mark(x'''''''')))))) -> F(ok(found(ok(mark(x'''''''')))))
F(found(ok(found(ok(found(x'''''''')))))) -> F(ok(found(ok(found(x'''''''')))))
F(found(ok(found(ok(ok(x'''''''')))))) -> F(ok(found(ok(ok(x'''''''')))))
F(found(ok(found(mark(x''''''))))) -> F(ok(found(mark(x''''''))))
F(found(ok(found(found(x''''''))))) -> F(ok(found(found(x''''''))))
F(ok(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(mark(ok(found(ok(found(x'''''''')))))) -> F(ok(found(ok(found(x'''''''')))))
F(found(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))
F(found(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(found(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(ok(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(ok(found(ok(ok(x'''''''')))))) -> F(ok(found(ok(ok(x'''''''')))))
F(ok(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(ok(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(ok(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(mark(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))
F(mark(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(found(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(ok(found(mark(x'''')))) -> F(found(mark(x'''')))
F(mark(ok(found(mark(x''''''))))) -> F(ok(found(mark(x''''''))))
F(mark(ok(found(found(x''''''))))) -> F(ok(found(found(x''''''))))
F(mark(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(found(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(found(mark(x'''')))) -> F(found(mark(x'''')))
F(found(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(ok(found(x'''')))) -> F(ok(found(x'''')))
F(ok(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(mark(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(mark(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(ok(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(ok(mark(mark(x''''''))))) -> F(ok(mark(mark(x''''''))))
F(mark(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(mark(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

F(mark(found(found(x'''')))) -> F(found(found(x'''')))
five new Dependency Pairs are created:

F(mark(found(found(found(x''''''))))) -> F(found(found(found(x''''''))))
F(mark(found(found(mark(x''''''))))) -> F(found(found(mark(x''''''))))
F(mark(found(found(ok(ok(x'''''''')))))) -> F(found(found(ok(ok(x'''''''')))))
F(mark(found(found(ok(found(x'''''''')))))) -> F(found(found(ok(found(x'''''''')))))
F(mark(found(found(ok(mark(x'''''''')))))) -> F(found(found(ok(mark(x'''''''')))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
           →DP Problem 7
FwdInst
             ...
               →DP Problem 22
Forward Instantiation Transformation
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pairs:

F(mark(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(mark(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(mark(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(found(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(found(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(found(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(found(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(found(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(found(ok(mark(found(ok(mark(x''''''''''))))))) -> F(ok(mark(found(ok(mark(x''''''''''))))))
F(found(ok(mark(found(ok(found(x''''''''''))))))) -> F(ok(mark(found(ok(found(x''''''''''))))))
F(found(ok(mark(found(ok(ok(x''''''''''))))))) -> F(ok(mark(found(ok(ok(x''''''''''))))))
F(mark(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(ok(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(mark(ok(mark(found(ok(mark(x''''''''''))))))) -> F(ok(mark(found(ok(mark(x''''''''''))))))
F(ok(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(ok(mark(found(ok(found(x''''''''''))))))) -> F(ok(mark(found(ok(found(x''''''''''))))))
F(mark(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(ok(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(ok(mark(found(ok(ok(x''''''''''))))))) -> F(ok(mark(found(ok(ok(x''''''''''))))))
F(mark(ok(mark(found(mark(x'''''''')))))) -> F(ok(mark(found(mark(x'''''''')))))
F(found(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(found(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(mark(found(mark(x'''')))) -> F(found(mark(x'''')))
F(ok(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(found(ok(mark(found(mark(x'''''''')))))) -> F(ok(mark(found(mark(x'''''''')))))
F(found(ok(mark(found(found(x'''''''')))))) -> F(ok(mark(found(found(x'''''''')))))
F(found(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(mark(found(found(ok(mark(x'''''''')))))) -> F(found(found(ok(mark(x'''''''')))))
F(found(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(mark(found(found(ok(found(x'''''''')))))) -> F(found(found(ok(found(x'''''''')))))
F(found(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(found(found(ok(ok(x'''''''')))))) -> F(found(found(ok(ok(x'''''''')))))
F(mark(found(found(mark(x''''''))))) -> F(found(found(mark(x''''''))))
F(mark(found(found(found(x''''''))))) -> F(found(found(found(x''''''))))
F(ok(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(ok(mark(found(found(x'''''''')))))) -> F(ok(mark(found(found(x'''''''')))))
F(mark(ok(mark(ok(mark(x'''''''')))))) -> F(ok(mark(ok(mark(x'''''''')))))
F(mark(ok(mark(ok(found(x'''''''')))))) -> F(ok(mark(ok(found(x'''''''')))))
F(mark(ok(mark(ok(ok(x'''''''')))))) -> F(ok(mark(ok(ok(x'''''''')))))
F(mark(ok(mark(mark(x''''''))))) -> F(ok(mark(mark(x''''''))))
F(ok(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(found(ok(mark(ok(mark(x'''''''')))))) -> F(ok(mark(ok(mark(x'''''''')))))
F(mark(ok(found(ok(mark(x'''''''')))))) -> F(ok(found(ok(mark(x'''''''')))))
F(ok(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(found(ok(mark(ok(found(x'''''''')))))) -> F(ok(mark(ok(found(x'''''''')))))
F(ok(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(found(ok(mark(ok(ok(x'''''''')))))) -> F(ok(mark(ok(ok(x'''''''')))))
F(found(ok(mark(mark(x''''''))))) -> F(ok(mark(mark(x''''''))))
F(ok(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(ok(found(ok(mark(x'''''''')))))) -> F(ok(found(ok(mark(x'''''''')))))
F(found(ok(found(ok(found(x'''''''')))))) -> F(ok(found(ok(found(x'''''''')))))
F(found(ok(found(ok(ok(x'''''''')))))) -> F(ok(found(ok(ok(x'''''''')))))
F(found(ok(found(mark(x''''''))))) -> F(ok(found(mark(x''''''))))
F(ok(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(mark(ok(found(ok(found(x'''''''')))))) -> F(ok(found(ok(found(x'''''''')))))
F(found(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))
F(found(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(found(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(ok(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(ok(found(ok(ok(x'''''''')))))) -> F(ok(found(ok(ok(x'''''''')))))
F(mark(ok(found(mark(x''''''))))) -> F(ok(found(mark(x''''''))))
F(mark(ok(found(found(x''''''))))) -> F(ok(found(found(x''''''))))
F(mark(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(ok(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(ok(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(mark(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))
F(mark(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(found(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(ok(found(mark(x'''')))) -> F(found(mark(x'''')))
F(ok(ok(found(x'''')))) -> F(ok(found(x'''')))
F(ok(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(mark(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(mark(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(found(mark(x'''')))) -> F(found(mark(x'''')))
F(found(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(found(found(x'''')))) -> F(found(found(x'''')))
F(found(ok(found(found(x''''''))))) -> F(ok(found(found(x''''''))))
F(mark(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(mark(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

F(mark(found(mark(x'''')))) -> F(found(mark(x'''')))
nine new Dependency Pairs are created:

F(mark(found(mark(mark(x''''''))))) -> F(found(mark(mark(x''''''))))
F(mark(found(mark(ok(ok(x'''''''')))))) -> F(found(mark(ok(ok(x'''''''')))))
F(mark(found(mark(ok(found(x'''''''')))))) -> F(found(mark(ok(found(x'''''''')))))
F(mark(found(mark(ok(mark(x'''''''')))))) -> F(found(mark(ok(mark(x'''''''')))))
F(mark(found(mark(found(found(x'''''''')))))) -> F(found(mark(found(found(x'''''''')))))
F(mark(found(mark(found(mark(x'''''''')))))) -> F(found(mark(found(mark(x'''''''')))))
F(mark(found(mark(found(ok(ok(x''''''''''))))))) -> F(found(mark(found(ok(ok(x''''''''''))))))
F(mark(found(mark(found(ok(found(x''''''''''))))))) -> F(found(mark(found(ok(found(x''''''''''))))))
F(mark(found(mark(found(ok(mark(x''''''''''))))))) -> F(found(mark(found(ok(mark(x''''''''''))))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
           →DP Problem 7
FwdInst
             ...
               →DP Problem 23
Forward Instantiation Transformation
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pairs:

F(mark(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(mark(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(found(ok(mark(found(ok(mark(x''''''''''))))))) -> F(ok(mark(found(ok(mark(x''''''''''))))))
F(found(ok(mark(found(ok(found(x''''''''''))))))) -> F(ok(mark(found(ok(found(x''''''''''))))))
F(found(ok(mark(found(ok(ok(x''''''''''))))))) -> F(ok(mark(found(ok(ok(x''''''''''))))))
F(found(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(mark(found(mark(found(ok(mark(x''''''''''))))))) -> F(found(mark(found(ok(mark(x''''''''''))))))
F(found(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(found(mark(found(ok(found(x''''''''''))))))) -> F(found(mark(found(ok(found(x''''''''''))))))
F(found(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(found(mark(found(ok(ok(x''''''''''))))))) -> F(found(mark(found(ok(ok(x''''''''''))))))
F(found(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(mark(found(mark(found(mark(x'''''''')))))) -> F(found(mark(found(mark(x'''''''')))))
F(found(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(found(mark(found(found(x'''''''')))))) -> F(found(mark(found(found(x'''''''')))))
F(ok(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(mark(ok(mark(found(ok(mark(x''''''''''))))))) -> F(ok(mark(found(ok(mark(x''''''''''))))))
F(mark(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(ok(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(ok(mark(found(ok(found(x''''''''''))))))) -> F(ok(mark(found(ok(found(x''''''''''))))))
F(mark(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(ok(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(ok(mark(found(ok(ok(x''''''''''))))))) -> F(ok(mark(found(ok(ok(x''''''''''))))))
F(mark(ok(mark(found(mark(x'''''''')))))) -> F(ok(mark(found(mark(x'''''''')))))
F(found(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(mark(found(mark(ok(mark(x'''''''')))))) -> F(found(mark(ok(mark(x'''''''')))))
F(mark(ok(found(ok(mark(x'''''''')))))) -> F(ok(found(ok(mark(x'''''''')))))
F(found(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(mark(found(mark(ok(found(x'''''''')))))) -> F(found(mark(ok(found(x'''''''')))))
F(mark(found(mark(ok(ok(x'''''''')))))) -> F(found(mark(ok(ok(x'''''''')))))
F(mark(found(mark(mark(x''''''))))) -> F(found(mark(mark(x''''''))))
F(ok(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(found(ok(mark(found(mark(x'''''''')))))) -> F(ok(mark(found(mark(x'''''''')))))
F(found(ok(mark(found(found(x'''''''')))))) -> F(ok(mark(found(found(x'''''''')))))
F(found(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(mark(found(found(ok(mark(x'''''''')))))) -> F(found(found(ok(mark(x'''''''')))))
F(found(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(mark(found(found(ok(found(x'''''''')))))) -> F(found(found(ok(found(x'''''''')))))
F(found(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(found(found(ok(ok(x'''''''')))))) -> F(found(found(ok(ok(x'''''''')))))
F(mark(found(found(mark(x''''''))))) -> F(found(found(mark(x''''''))))
F(mark(found(found(found(x''''''))))) -> F(found(found(found(x''''''))))
F(ok(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(ok(mark(found(found(x'''''''')))))) -> F(ok(mark(found(found(x'''''''')))))
F(mark(ok(mark(ok(mark(x'''''''')))))) -> F(ok(mark(ok(mark(x'''''''')))))
F(mark(ok(mark(ok(found(x'''''''')))))) -> F(ok(mark(ok(found(x'''''''')))))
F(mark(ok(mark(ok(ok(x'''''''')))))) -> F(ok(mark(ok(ok(x'''''''')))))
F(mark(ok(mark(mark(x''''''))))) -> F(ok(mark(mark(x''''''))))
F(ok(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(found(ok(mark(ok(mark(x'''''''')))))) -> F(ok(mark(ok(mark(x'''''''')))))
F(found(ok(mark(ok(found(x'''''''')))))) -> F(ok(mark(ok(found(x'''''''')))))
F(found(ok(mark(ok(ok(x'''''''')))))) -> F(ok(mark(ok(ok(x'''''''')))))
F(ok(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(ok(found(ok(mark(x'''''''')))))) -> F(ok(found(ok(mark(x'''''''')))))
F(found(ok(found(ok(found(x'''''''')))))) -> F(ok(found(ok(found(x'''''''')))))
F(found(ok(found(ok(ok(x'''''''')))))) -> F(ok(found(ok(ok(x'''''''')))))
F(found(ok(found(mark(x''''''))))) -> F(ok(found(mark(x''''''))))
F(found(ok(found(found(x''''''))))) -> F(ok(found(found(x''''''))))
F(ok(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(mark(ok(found(ok(found(x'''''''')))))) -> F(ok(found(ok(found(x'''''''')))))
F(found(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))
F(found(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(found(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(ok(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(ok(found(ok(ok(x'''''''')))))) -> F(ok(found(ok(ok(x'''''''')))))
F(ok(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(ok(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(ok(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(mark(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))
F(mark(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(found(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(ok(found(mark(x'''')))) -> F(found(mark(x'''')))
F(mark(ok(found(mark(x''''''))))) -> F(ok(found(mark(x''''''))))
F(mark(ok(found(found(x''''''))))) -> F(ok(found(found(x''''''))))
F(mark(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(found(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(found(mark(x'''')))) -> F(found(mark(x'''')))
F(found(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(ok(found(x'''')))) -> F(ok(found(x'''')))
F(ok(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(mark(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(mark(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(ok(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(ok(mark(mark(x''''''))))) -> F(ok(mark(mark(x''''''))))
F(mark(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(mark(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

F(mark(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
three new Dependency Pairs are created:

F(mark(found(ok(ok(ok(x'''''''')))))) -> F(found(ok(ok(ok(x'''''''')))))
F(mark(found(ok(ok(found(x'''''''')))))) -> F(found(ok(ok(found(x'''''''')))))
F(mark(found(ok(ok(mark(x'''''''')))))) -> F(found(ok(ok(mark(x'''''''')))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
           →DP Problem 7
FwdInst
             ...
               →DP Problem 24
Forward Instantiation Transformation
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pairs:

F(mark(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(mark(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(mark(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(found(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(mark(found(mark(found(ok(mark(x''''''''''))))))) -> F(found(mark(found(ok(mark(x''''''''''))))))
F(found(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(found(mark(found(ok(found(x''''''''''))))))) -> F(found(mark(found(ok(found(x''''''''''))))))
F(found(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(found(mark(found(ok(ok(x''''''''''))))))) -> F(found(mark(found(ok(ok(x''''''''''))))))
F(found(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(mark(found(mark(found(mark(x'''''''')))))) -> F(found(mark(found(mark(x'''''''')))))
F(found(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(found(mark(found(found(x'''''''')))))) -> F(found(mark(found(found(x'''''''')))))
F(found(ok(mark(found(ok(mark(x''''''''''))))))) -> F(ok(mark(found(ok(mark(x''''''''''))))))
F(found(ok(mark(found(ok(found(x''''''''''))))))) -> F(ok(mark(found(ok(found(x''''''''''))))))
F(found(ok(mark(found(ok(ok(x''''''''''))))))) -> F(ok(mark(found(ok(ok(x''''''''''))))))
F(mark(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(ok(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(mark(ok(mark(found(ok(mark(x''''''''''))))))) -> F(ok(mark(found(ok(mark(x''''''''''))))))
F(ok(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(ok(mark(found(ok(found(x''''''''''))))))) -> F(ok(mark(found(ok(found(x''''''''''))))))
F(mark(found(ok(ok(mark(x'''''''')))))) -> F(found(ok(ok(mark(x'''''''')))))
F(mark(found(ok(ok(found(x'''''''')))))) -> F(found(ok(ok(found(x'''''''')))))
F(mark(found(ok(ok(ok(x'''''''')))))) -> F(found(ok(ok(ok(x'''''''')))))
F(ok(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(ok(mark(found(ok(ok(x''''''''''))))))) -> F(ok(mark(found(ok(ok(x''''''''''))))))
F(mark(ok(mark(found(mark(x'''''''')))))) -> F(ok(mark(found(mark(x'''''''')))))
F(found(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(mark(found(mark(ok(mark(x'''''''')))))) -> F(found(mark(ok(mark(x'''''''')))))
F(found(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(mark(found(mark(ok(found(x'''''''')))))) -> F(found(mark(ok(found(x'''''''')))))
F(mark(found(mark(ok(ok(x'''''''')))))) -> F(found(mark(ok(ok(x'''''''')))))
F(mark(found(mark(mark(x''''''))))) -> F(found(mark(mark(x''''''))))
F(ok(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(found(ok(mark(found(mark(x'''''''')))))) -> F(ok(mark(found(mark(x'''''''')))))
F(found(ok(mark(found(found(x'''''''')))))) -> F(ok(mark(found(found(x'''''''')))))
F(found(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(mark(found(found(ok(mark(x'''''''')))))) -> F(found(found(ok(mark(x'''''''')))))
F(found(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(mark(found(found(ok(found(x'''''''')))))) -> F(found(found(ok(found(x'''''''')))))
F(found(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(found(found(ok(ok(x'''''''')))))) -> F(found(found(ok(ok(x'''''''')))))
F(mark(found(found(mark(x''''''))))) -> F(found(found(mark(x''''''))))
F(mark(found(found(found(x''''''))))) -> F(found(found(found(x''''''))))
F(ok(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(ok(mark(found(found(x'''''''')))))) -> F(ok(mark(found(found(x'''''''')))))
F(mark(ok(mark(ok(mark(x'''''''')))))) -> F(ok(mark(ok(mark(x'''''''')))))
F(mark(ok(mark(ok(found(x'''''''')))))) -> F(ok(mark(ok(found(x'''''''')))))
F(mark(ok(mark(ok(ok(x'''''''')))))) -> F(ok(mark(ok(ok(x'''''''')))))
F(mark(ok(mark(mark(x''''''))))) -> F(ok(mark(mark(x''''''))))
F(ok(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(found(ok(mark(ok(mark(x'''''''')))))) -> F(ok(mark(ok(mark(x'''''''')))))
F(mark(ok(found(ok(mark(x'''''''')))))) -> F(ok(found(ok(mark(x'''''''')))))
F(ok(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(found(ok(mark(ok(found(x'''''''')))))) -> F(ok(mark(ok(found(x'''''''')))))
F(ok(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(found(ok(mark(ok(ok(x'''''''')))))) -> F(ok(mark(ok(ok(x'''''''')))))
F(found(ok(mark(mark(x''''''))))) -> F(ok(mark(mark(x''''''))))
F(ok(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(ok(found(ok(mark(x'''''''')))))) -> F(ok(found(ok(mark(x'''''''')))))
F(found(ok(found(ok(found(x'''''''')))))) -> F(ok(found(ok(found(x'''''''')))))
F(found(ok(found(ok(ok(x'''''''')))))) -> F(ok(found(ok(ok(x'''''''')))))
F(found(ok(found(mark(x''''''))))) -> F(ok(found(mark(x''''''))))
F(ok(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(mark(ok(found(ok(found(x'''''''')))))) -> F(ok(found(ok(found(x'''''''')))))
F(found(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))
F(found(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(found(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(ok(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(ok(found(ok(ok(x'''''''')))))) -> F(ok(found(ok(ok(x'''''''')))))
F(mark(ok(found(mark(x''''''))))) -> F(ok(found(mark(x''''''))))
F(mark(ok(found(found(x''''''))))) -> F(ok(found(found(x''''''))))
F(mark(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(ok(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(ok(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(mark(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))
F(mark(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(found(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(ok(found(mark(x'''')))) -> F(found(mark(x'''')))
F(ok(ok(found(x'''')))) -> F(ok(found(x'''')))
F(ok(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(mark(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(mark(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(found(mark(x'''')))) -> F(found(mark(x'''')))
F(found(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(found(found(x'''')))) -> F(found(found(x'''')))
F(found(ok(found(found(x''''''))))) -> F(ok(found(found(x''''''))))
F(mark(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(mark(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

F(mark(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
five new Dependency Pairs are created:

F(mark(found(ok(found(found(x'''''''')))))) -> F(found(ok(found(found(x'''''''')))))
F(mark(found(ok(found(mark(x'''''''')))))) -> F(found(ok(found(mark(x'''''''')))))
F(mark(found(ok(found(ok(ok(x''''''''''))))))) -> F(found(ok(found(ok(ok(x''''''''''))))))
F(mark(found(ok(found(ok(found(x''''''''''))))))) -> F(found(ok(found(ok(found(x''''''''''))))))
F(mark(found(ok(found(ok(mark(x''''''''''))))))) -> F(found(ok(found(ok(mark(x''''''''''))))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
           →DP Problem 7
FwdInst
             ...
               →DP Problem 25
Forward Instantiation Transformation
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pairs:

F(mark(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(mark(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(found(ok(mark(found(ok(mark(x''''''''''))))))) -> F(ok(mark(found(ok(mark(x''''''''''))))))
F(found(ok(mark(found(ok(found(x''''''''''))))))) -> F(ok(mark(found(ok(found(x''''''''''))))))
F(found(ok(mark(found(ok(ok(x''''''''''))))))) -> F(ok(mark(found(ok(ok(x''''''''''))))))
F(found(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(mark(found(mark(found(ok(mark(x''''''''''))))))) -> F(found(mark(found(ok(mark(x''''''''''))))))
F(found(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(found(mark(found(ok(found(x''''''''''))))))) -> F(found(mark(found(ok(found(x''''''''''))))))
F(found(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(found(mark(found(ok(ok(x''''''''''))))))) -> F(found(mark(found(ok(ok(x''''''''''))))))
F(found(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(mark(found(mark(found(mark(x'''''''')))))) -> F(found(mark(found(mark(x'''''''')))))
F(found(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(found(mark(found(found(x'''''''')))))) -> F(found(mark(found(found(x'''''''')))))
F(ok(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(mark(ok(mark(found(ok(mark(x''''''''''))))))) -> F(ok(mark(found(ok(mark(x''''''''''))))))
F(mark(found(ok(found(ok(mark(x''''''''''))))))) -> F(found(ok(found(ok(mark(x''''''''''))))))
F(mark(found(ok(found(ok(found(x''''''''''))))))) -> F(found(ok(found(ok(found(x''''''''''))))))
F(mark(found(ok(found(ok(ok(x''''''''''))))))) -> F(found(ok(found(ok(ok(x''''''''''))))))
F(mark(found(ok(found(mark(x'''''''')))))) -> F(found(ok(found(mark(x'''''''')))))
F(mark(found(ok(found(found(x'''''''')))))) -> F(found(ok(found(found(x'''''''')))))
F(ok(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(ok(mark(found(ok(found(x''''''''''))))))) -> F(ok(mark(found(ok(found(x''''''''''))))))
F(mark(found(ok(ok(mark(x'''''''')))))) -> F(found(ok(ok(mark(x'''''''')))))
F(mark(found(ok(ok(found(x'''''''')))))) -> F(found(ok(ok(found(x'''''''')))))
F(mark(found(ok(ok(ok(x'''''''')))))) -> F(found(ok(ok(ok(x'''''''')))))
F(ok(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(ok(mark(found(ok(ok(x''''''''''))))))) -> F(ok(mark(found(ok(ok(x''''''''''))))))
F(mark(ok(mark(found(mark(x'''''''')))))) -> F(ok(mark(found(mark(x'''''''')))))
F(found(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(mark(found(mark(ok(mark(x'''''''')))))) -> F(found(mark(ok(mark(x'''''''')))))
F(mark(ok(found(ok(mark(x'''''''')))))) -> F(ok(found(ok(mark(x'''''''')))))
F(found(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(mark(found(mark(ok(found(x'''''''')))))) -> F(found(mark(ok(found(x'''''''')))))
F(mark(found(mark(ok(ok(x'''''''')))))) -> F(found(mark(ok(ok(x'''''''')))))
F(mark(found(mark(mark(x''''''))))) -> F(found(mark(mark(x''''''))))
F(ok(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(found(ok(mark(found(mark(x'''''''')))))) -> F(ok(mark(found(mark(x'''''''')))))
F(found(ok(mark(found(found(x'''''''')))))) -> F(ok(mark(found(found(x'''''''')))))
F(found(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(mark(found(found(ok(mark(x'''''''')))))) -> F(found(found(ok(mark(x'''''''')))))
F(found(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(mark(found(found(ok(found(x'''''''')))))) -> F(found(found(ok(found(x'''''''')))))
F(found(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(found(found(ok(ok(x'''''''')))))) -> F(found(found(ok(ok(x'''''''')))))
F(mark(found(found(mark(x''''''))))) -> F(found(found(mark(x''''''))))
F(mark(found(found(found(x''''''))))) -> F(found(found(found(x''''''))))
F(ok(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(ok(mark(found(found(x'''''''')))))) -> F(ok(mark(found(found(x'''''''')))))
F(mark(ok(mark(ok(mark(x'''''''')))))) -> F(ok(mark(ok(mark(x'''''''')))))
F(mark(ok(mark(ok(found(x'''''''')))))) -> F(ok(mark(ok(found(x'''''''')))))
F(mark(ok(mark(ok(ok(x'''''''')))))) -> F(ok(mark(ok(ok(x'''''''')))))
F(mark(ok(mark(mark(x''''''))))) -> F(ok(mark(mark(x''''''))))
F(ok(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(found(ok(mark(ok(mark(x'''''''')))))) -> F(ok(mark(ok(mark(x'''''''')))))
F(found(ok(mark(ok(found(x'''''''')))))) -> F(ok(mark(ok(found(x'''''''')))))
F(found(ok(mark(ok(ok(x'''''''')))))) -> F(ok(mark(ok(ok(x'''''''')))))
F(ok(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(ok(found(ok(mark(x'''''''')))))) -> F(ok(found(ok(mark(x'''''''')))))
F(found(ok(found(ok(found(x'''''''')))))) -> F(ok(found(ok(found(x'''''''')))))
F(found(ok(found(ok(ok(x'''''''')))))) -> F(ok(found(ok(ok(x'''''''')))))
F(found(ok(found(mark(x''''''))))) -> F(ok(found(mark(x''''''))))
F(found(ok(found(found(x''''''))))) -> F(ok(found(found(x''''''))))
F(ok(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(mark(ok(found(ok(found(x'''''''')))))) -> F(ok(found(ok(found(x'''''''')))))
F(found(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))
F(found(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(found(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(ok(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(ok(found(ok(ok(x'''''''')))))) -> F(ok(found(ok(ok(x'''''''')))))
F(ok(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(ok(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(ok(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(mark(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))
F(mark(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(found(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(ok(found(mark(x'''')))) -> F(found(mark(x'''')))
F(mark(ok(found(mark(x''''''))))) -> F(ok(found(mark(x''''''))))
F(mark(ok(found(found(x''''''))))) -> F(ok(found(found(x''''''))))
F(mark(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(found(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(found(mark(x'''')))) -> F(found(mark(x'''')))
F(found(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(ok(found(x'''')))) -> F(ok(found(x'''')))
F(ok(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(mark(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(mark(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(ok(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(ok(mark(mark(x''''''))))) -> F(ok(mark(mark(x''''''))))
F(mark(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(mark(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

F(mark(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
nine new Dependency Pairs are created:

F(mark(found(ok(mark(mark(x'''''''')))))) -> F(found(ok(mark(mark(x'''''''')))))
F(mark(found(ok(mark(ok(ok(x''''''''''))))))) -> F(found(ok(mark(ok(ok(x''''''''''))))))
F(mark(found(ok(mark(ok(found(x''''''''''))))))) -> F(found(ok(mark(ok(found(x''''''''''))))))
F(mark(found(ok(mark(ok(mark(x''''''''''))))))) -> F(found(ok(mark(ok(mark(x''''''''''))))))
F(mark(found(ok(mark(found(found(x''''''''''))))))) -> F(found(ok(mark(found(found(x''''''''''))))))
F(mark(found(ok(mark(found(mark(x''''''''''))))))) -> F(found(ok(mark(found(mark(x''''''''''))))))
F(mark(found(ok(mark(found(ok(ok(x'''''''''''')))))))) -> F(found(ok(mark(found(ok(ok(x'''''''''''')))))))
F(mark(found(ok(mark(found(ok(found(x'''''''''''')))))))) -> F(found(ok(mark(found(ok(found(x'''''''''''')))))))
F(mark(found(ok(mark(found(ok(mark(x'''''''''''')))))))) -> F(found(ok(mark(found(ok(mark(x'''''''''''')))))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
           →DP Problem 7
FwdInst
             ...
               →DP Problem 26
Argument Filtering and Ordering
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pairs:

F(mark(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(mark(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(mark(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(found(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(mark(found(mark(found(ok(mark(x''''''''''))))))) -> F(found(mark(found(ok(mark(x''''''''''))))))
F(found(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(found(mark(found(ok(found(x''''''''''))))))) -> F(found(mark(found(ok(found(x''''''''''))))))
F(found(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(found(mark(found(ok(ok(x''''''''''))))))) -> F(found(mark(found(ok(ok(x''''''''''))))))
F(found(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(mark(found(mark(found(mark(x'''''''')))))) -> F(found(mark(found(mark(x'''''''')))))
F(found(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(found(mark(found(found(x'''''''')))))) -> F(found(mark(found(found(x'''''''')))))
F(found(ok(mark(found(ok(mark(x''''''''''))))))) -> F(ok(mark(found(ok(mark(x''''''''''))))))
F(mark(found(ok(mark(found(ok(mark(x'''''''''''')))))))) -> F(found(ok(mark(found(ok(mark(x'''''''''''')))))))
F(found(ok(mark(found(ok(found(x''''''''''))))))) -> F(ok(mark(found(ok(found(x''''''''''))))))
F(mark(found(ok(mark(found(ok(found(x'''''''''''')))))))) -> F(found(ok(mark(found(ok(found(x'''''''''''')))))))
F(found(ok(mark(found(ok(ok(x''''''''''))))))) -> F(ok(mark(found(ok(ok(x''''''''''))))))
F(mark(found(ok(mark(found(ok(ok(x'''''''''''')))))))) -> F(found(ok(mark(found(ok(ok(x'''''''''''')))))))
F(mark(found(ok(mark(found(mark(x''''''''''))))))) -> F(found(ok(mark(found(mark(x''''''''''))))))
F(mark(found(ok(mark(found(found(x''''''''''))))))) -> F(found(ok(mark(found(found(x''''''''''))))))
F(mark(found(ok(mark(ok(mark(x''''''''''))))))) -> F(found(ok(mark(ok(mark(x''''''''''))))))
F(mark(found(ok(mark(ok(found(x''''''''''))))))) -> F(found(ok(mark(ok(found(x''''''''''))))))
F(mark(found(ok(mark(ok(ok(x''''''''''))))))) -> F(found(ok(mark(ok(ok(x''''''''''))))))
F(mark(found(ok(mark(mark(x'''''''')))))) -> F(found(ok(mark(mark(x'''''''')))))
F(ok(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(mark(ok(mark(found(ok(mark(x''''''''''))))))) -> F(ok(mark(found(ok(mark(x''''''''''))))))
F(mark(found(ok(found(ok(mark(x''''''''''))))))) -> F(found(ok(found(ok(mark(x''''''''''))))))
F(mark(found(ok(found(ok(found(x''''''''''))))))) -> F(found(ok(found(ok(found(x''''''''''))))))
F(mark(found(ok(found(ok(ok(x''''''''''))))))) -> F(found(ok(found(ok(ok(x''''''''''))))))
F(mark(found(ok(found(mark(x'''''''')))))) -> F(found(ok(found(mark(x'''''''')))))
F(ok(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(ok(mark(found(ok(found(x''''''''''))))))) -> F(ok(mark(found(ok(found(x''''''''''))))))
F(mark(found(ok(ok(mark(x'''''''')))))) -> F(found(ok(ok(mark(x'''''''')))))
F(mark(found(ok(ok(found(x'''''''')))))) -> F(found(ok(ok(found(x'''''''')))))
F(mark(found(ok(ok(ok(x'''''''')))))) -> F(found(ok(ok(ok(x'''''''')))))
F(ok(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(ok(mark(found(ok(ok(x''''''''''))))))) -> F(ok(mark(found(ok(ok(x''''''''''))))))
F(mark(ok(mark(found(mark(x'''''''')))))) -> F(ok(mark(found(mark(x'''''''')))))
F(found(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(mark(found(mark(ok(mark(x'''''''')))))) -> F(found(mark(ok(mark(x'''''''')))))
F(found(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(mark(found(mark(ok(found(x'''''''')))))) -> F(found(mark(ok(found(x'''''''')))))
F(mark(found(mark(ok(ok(x'''''''')))))) -> F(found(mark(ok(ok(x'''''''')))))
F(mark(found(mark(mark(x''''''))))) -> F(found(mark(mark(x''''''))))
F(ok(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(found(ok(mark(found(mark(x'''''''')))))) -> F(ok(mark(found(mark(x'''''''')))))
F(found(ok(mark(found(found(x'''''''')))))) -> F(ok(mark(found(found(x'''''''')))))
F(found(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(mark(found(found(ok(mark(x'''''''')))))) -> F(found(found(ok(mark(x'''''''')))))
F(found(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(mark(found(found(ok(found(x'''''''')))))) -> F(found(found(ok(found(x'''''''')))))
F(found(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(found(found(ok(ok(x'''''''')))))) -> F(found(found(ok(ok(x'''''''')))))
F(mark(found(found(mark(x''''''))))) -> F(found(found(mark(x''''''))))
F(mark(found(found(found(x''''''))))) -> F(found(found(found(x''''''))))
F(ok(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(ok(mark(found(found(x'''''''')))))) -> F(ok(mark(found(found(x'''''''')))))
F(mark(ok(mark(ok(mark(x'''''''')))))) -> F(ok(mark(ok(mark(x'''''''')))))
F(mark(ok(mark(ok(found(x'''''''')))))) -> F(ok(mark(ok(found(x'''''''')))))
F(mark(ok(mark(ok(ok(x'''''''')))))) -> F(ok(mark(ok(ok(x'''''''')))))
F(mark(ok(mark(mark(x''''''))))) -> F(ok(mark(mark(x''''''))))
F(ok(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(found(ok(mark(ok(mark(x'''''''')))))) -> F(ok(mark(ok(mark(x'''''''')))))
F(mark(ok(found(ok(mark(x'''''''')))))) -> F(ok(found(ok(mark(x'''''''')))))
F(ok(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(found(ok(mark(ok(found(x'''''''')))))) -> F(ok(mark(ok(found(x'''''''')))))
F(ok(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(found(ok(mark(ok(ok(x'''''''')))))) -> F(ok(mark(ok(ok(x'''''''')))))
F(found(ok(mark(mark(x''''''))))) -> F(ok(mark(mark(x''''''))))
F(ok(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(ok(found(ok(mark(x'''''''')))))) -> F(ok(found(ok(mark(x'''''''')))))
F(found(ok(found(ok(found(x'''''''')))))) -> F(ok(found(ok(found(x'''''''')))))
F(found(ok(found(ok(ok(x'''''''')))))) -> F(ok(found(ok(ok(x'''''''')))))
F(found(ok(found(mark(x''''''))))) -> F(ok(found(mark(x''''''))))
F(ok(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(mark(ok(found(ok(found(x'''''''')))))) -> F(ok(found(ok(found(x'''''''')))))
F(found(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))
F(found(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(found(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(ok(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(ok(found(ok(ok(x'''''''')))))) -> F(ok(found(ok(ok(x'''''''')))))
F(mark(ok(found(mark(x''''''))))) -> F(ok(found(mark(x''''''))))
F(mark(ok(found(found(x''''''))))) -> F(ok(found(found(x''''''))))
F(mark(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(ok(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(ok(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(mark(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))
F(mark(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(found(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(ok(found(mark(x'''')))) -> F(found(mark(x'''')))
F(ok(ok(found(x'''')))) -> F(ok(found(x'''')))
F(ok(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(mark(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(mark(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(found(mark(x'''')))) -> F(found(mark(x'''')))
F(found(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(found(found(x'''')))) -> F(found(found(x'''')))
F(found(ok(found(found(x''''''))))) -> F(ok(found(found(x''''''))))
F(mark(found(ok(found(found(x'''''''')))))) -> F(found(ok(found(found(x'''''''')))))
F(mark(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




The following dependency pairs can be strictly oriented:

F(mark(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(mark(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(mark(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(found(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(mark(found(mark(found(ok(mark(x''''''''''))))))) -> F(found(mark(found(ok(mark(x''''''''''))))))
F(found(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(found(mark(found(ok(found(x''''''''''))))))) -> F(found(mark(found(ok(found(x''''''''''))))))
F(found(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(found(mark(found(ok(ok(x''''''''''))))))) -> F(found(mark(found(ok(ok(x''''''''''))))))
F(found(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(mark(found(mark(found(mark(x'''''''')))))) -> F(found(mark(found(mark(x'''''''')))))
F(found(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(found(mark(found(found(x'''''''')))))) -> F(found(mark(found(found(x'''''''')))))
F(found(ok(mark(found(ok(mark(x''''''''''))))))) -> F(ok(mark(found(ok(mark(x''''''''''))))))
F(mark(found(ok(mark(found(ok(mark(x'''''''''''')))))))) -> F(found(ok(mark(found(ok(mark(x'''''''''''')))))))
F(found(ok(mark(found(ok(found(x''''''''''))))))) -> F(ok(mark(found(ok(found(x''''''''''))))))
F(mark(found(ok(mark(found(ok(found(x'''''''''''')))))))) -> F(found(ok(mark(found(ok(found(x'''''''''''')))))))
F(found(ok(mark(found(ok(ok(x''''''''''))))))) -> F(ok(mark(found(ok(ok(x''''''''''))))))
F(mark(found(ok(mark(found(ok(ok(x'''''''''''')))))))) -> F(found(ok(mark(found(ok(ok(x'''''''''''')))))))
F(mark(found(ok(mark(found(mark(x''''''''''))))))) -> F(found(ok(mark(found(mark(x''''''''''))))))
F(mark(found(ok(mark(found(found(x''''''''''))))))) -> F(found(ok(mark(found(found(x''''''''''))))))
F(mark(found(ok(mark(ok(mark(x''''''''''))))))) -> F(found(ok(mark(ok(mark(x''''''''''))))))
F(mark(found(ok(mark(ok(found(x''''''''''))))))) -> F(found(ok(mark(ok(found(x''''''''''))))))
F(mark(found(ok(mark(ok(ok(x''''''''''))))))) -> F(found(ok(mark(ok(ok(x''''''''''))))))
F(mark(found(ok(mark(mark(x'''''''')))))) -> F(found(ok(mark(mark(x'''''''')))))
F(ok(mark(found(ok(mark(x'''''''')))))) -> F(mark(found(ok(mark(x'''''''')))))
F(mark(ok(mark(found(ok(mark(x''''''''''))))))) -> F(ok(mark(found(ok(mark(x''''''''''))))))
F(mark(found(ok(found(ok(mark(x''''''''''))))))) -> F(found(ok(found(ok(mark(x''''''''''))))))
F(mark(found(ok(found(ok(found(x''''''''''))))))) -> F(found(ok(found(ok(found(x''''''''''))))))
F(mark(found(ok(found(ok(ok(x''''''''''))))))) -> F(found(ok(found(ok(ok(x''''''''''))))))
F(mark(found(ok(found(mark(x'''''''')))))) -> F(found(ok(found(mark(x'''''''')))))
F(ok(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))
F(mark(ok(mark(found(ok(found(x''''''''''))))))) -> F(ok(mark(found(ok(found(x''''''''''))))))
F(mark(found(ok(ok(mark(x'''''''')))))) -> F(found(ok(ok(mark(x'''''''')))))
F(mark(found(ok(ok(found(x'''''''')))))) -> F(found(ok(ok(found(x'''''''')))))
F(mark(found(ok(ok(ok(x'''''''')))))) -> F(found(ok(ok(ok(x'''''''')))))
F(ok(mark(found(ok(ok(x'''''''')))))) -> F(mark(found(ok(ok(x'''''''')))))
F(mark(ok(mark(found(ok(ok(x''''''''''))))))) -> F(ok(mark(found(ok(ok(x''''''''''))))))
F(mark(ok(mark(found(mark(x'''''''')))))) -> F(ok(mark(found(mark(x'''''''')))))
F(found(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(mark(found(mark(ok(mark(x'''''''')))))) -> F(found(mark(ok(mark(x'''''''')))))
F(found(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(mark(found(mark(ok(found(x'''''''')))))) -> F(found(mark(ok(found(x'''''''')))))
F(mark(found(mark(ok(ok(x'''''''')))))) -> F(found(mark(ok(ok(x'''''''')))))
F(mark(found(mark(mark(x''''''))))) -> F(found(mark(mark(x''''''))))
F(ok(mark(found(mark(x''''''))))) -> F(mark(found(mark(x''''''))))
F(found(ok(mark(found(mark(x'''''''')))))) -> F(ok(mark(found(mark(x'''''''')))))
F(found(ok(mark(found(found(x'''''''')))))) -> F(ok(mark(found(found(x'''''''')))))
F(found(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(mark(found(found(ok(mark(x'''''''')))))) -> F(found(found(ok(mark(x'''''''')))))
F(found(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(mark(found(found(ok(found(x'''''''')))))) -> F(found(found(ok(found(x'''''''')))))
F(found(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(found(found(ok(ok(x'''''''')))))) -> F(found(found(ok(ok(x'''''''')))))
F(mark(found(found(mark(x''''''))))) -> F(found(found(mark(x''''''))))
F(mark(found(found(found(x''''''))))) -> F(found(found(found(x''''''))))
F(ok(mark(found(found(x''''''))))) -> F(mark(found(found(x''''''))))
F(mark(ok(mark(found(found(x'''''''')))))) -> F(ok(mark(found(found(x'''''''')))))
F(mark(ok(mark(ok(mark(x'''''''')))))) -> F(ok(mark(ok(mark(x'''''''')))))
F(mark(ok(mark(ok(found(x'''''''')))))) -> F(ok(mark(ok(found(x'''''''')))))
F(mark(ok(mark(ok(ok(x'''''''')))))) -> F(ok(mark(ok(ok(x'''''''')))))
F(mark(ok(mark(mark(x''''''))))) -> F(ok(mark(mark(x''''''))))
F(ok(mark(ok(mark(x''''''))))) -> F(mark(ok(mark(x''''''))))
F(found(ok(mark(ok(mark(x'''''''')))))) -> F(ok(mark(ok(mark(x'''''''')))))
F(mark(ok(found(ok(mark(x'''''''')))))) -> F(ok(found(ok(mark(x'''''''')))))
F(ok(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(found(ok(mark(ok(found(x'''''''')))))) -> F(ok(mark(ok(found(x'''''''')))))
F(ok(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(found(ok(mark(ok(ok(x'''''''')))))) -> F(ok(mark(ok(ok(x'''''''')))))
F(found(ok(mark(mark(x''''''))))) -> F(ok(mark(mark(x''''''))))
F(ok(found(ok(mark(x''''''))))) -> F(found(ok(mark(x''''''))))
F(found(ok(found(ok(mark(x'''''''')))))) -> F(ok(found(ok(mark(x'''''''')))))
F(found(ok(found(ok(found(x'''''''')))))) -> F(ok(found(ok(found(x'''''''')))))
F(found(ok(found(ok(ok(x'''''''')))))) -> F(ok(found(ok(ok(x'''''''')))))
F(found(ok(found(mark(x''''''))))) -> F(ok(found(mark(x''''''))))
F(ok(found(ok(found(x''''''))))) -> F(found(ok(found(x''''''))))
F(mark(ok(found(ok(found(x'''''''')))))) -> F(ok(found(ok(found(x'''''''')))))
F(found(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))
F(found(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(found(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(ok(found(ok(ok(x''''''))))) -> F(found(ok(ok(x''''''))))
F(mark(ok(found(ok(ok(x'''''''')))))) -> F(ok(found(ok(ok(x'''''''')))))
F(mark(ok(found(mark(x''''''))))) -> F(ok(found(mark(x''''''))))
F(mark(ok(found(found(x''''''))))) -> F(ok(found(found(x''''''))))
F(mark(mark(ok(found(x''''''))))) -> F(mark(ok(found(x''''''))))
F(ok(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(ok(ok(mark(x'''')))) -> F(ok(mark(x'''')))
F(mark(ok(ok(mark(x''''''))))) -> F(ok(ok(mark(x''''''))))
F(mark(ok(ok(found(x''''''))))) -> F(ok(ok(found(x''''''))))
F(found(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(ok(found(mark(x'''')))) -> F(found(mark(x'''')))
F(ok(ok(found(x'''')))) -> F(ok(found(x'''')))
F(ok(ok(ok(x'''')))) -> F(ok(ok(x'''')))
F(mark(ok(ok(ok(x''''''))))) -> F(ok(ok(ok(x''''''))))
F(mark(mark(ok(ok(x''''''))))) -> F(mark(ok(ok(x''''''))))
F(mark(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(mark(mark(x'''')))) -> F(mark(mark(x'''')))
F(found(found(mark(x'''')))) -> F(found(mark(x'''')))
F(found(found(found(x'''')))) -> F(found(found(x'''')))
F(ok(found(found(x'''')))) -> F(found(found(x'''')))
F(found(ok(found(found(x''''''))))) -> F(ok(found(found(x''''''))))
F(mark(found(ok(found(found(x'''''''')))))) -> F(found(ok(found(found(x'''''''')))))
F(mark(mark(found(ok(found(x'''''''')))))) -> F(mark(found(ok(found(x'''''''')))))


There are no usable rules for innermost w.r.t. to the AFS that need to be oriented.
Used ordering: Homeomorphic Embedding Order with EMB
resulting in one new DP problem.
Used Argument Filtering System:
F(x1) -> F(x1)
found(x1) -> found(x1)
ok(x1) -> ok(x1)
mark(x1) -> mark(x1)


   R
DPs
       →DP Problem 1
FwdInst
           →DP Problem 7
FwdInst
             ...
               →DP Problem 27
Dependency Graph
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pair:


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




Using the Dependency Graph resulted in no new DP problems.


   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
Forward Instantiation Transformation
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pair:

ACTIVE(f(x)) -> ACTIVE(x)


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

ACTIVE(f(x)) -> ACTIVE(x)
one new Dependency Pair is created:

ACTIVE(f(f(x''))) -> ACTIVE(f(x''))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
           →DP Problem 28
Forward Instantiation Transformation
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pair:

ACTIVE(f(f(x''))) -> ACTIVE(f(x''))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

ACTIVE(f(f(x''))) -> ACTIVE(f(x''))
one new Dependency Pair is created:

ACTIVE(f(f(f(x'''')))) -> ACTIVE(f(f(x'''')))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
           →DP Problem 28
FwdInst
             ...
               →DP Problem 29
Argument Filtering and Ordering
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pair:

ACTIVE(f(f(f(x'''')))) -> ACTIVE(f(f(x'''')))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




The following dependency pair can be strictly oriented:

ACTIVE(f(f(f(x'''')))) -> ACTIVE(f(f(x'''')))


The following usable rules for innermost w.r.t. to the AFS can be oriented:

f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))


Used ordering: Homeomorphic Embedding Order with EMB
resulting in one new DP problem.
Used Argument Filtering System:
ACTIVE(x1) -> ACTIVE(x1)
f(x1) -> f(x1)
ok(x1) -> x1
found(x1) -> x1
mark(x1) -> x1


   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
           →DP Problem 28
FwdInst
             ...
               →DP Problem 30
Dependency Graph
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pair:


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




Using the Dependency Graph resulted in no new DP problems.


   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
Forward Instantiation Transformation
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pair:

PROPER(f(x)) -> PROPER(x)


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

PROPER(f(x)) -> PROPER(x)
one new Dependency Pair is created:

PROPER(f(f(x''))) -> PROPER(f(x''))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
           →DP Problem 31
Forward Instantiation Transformation
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pair:

PROPER(f(f(x''))) -> PROPER(f(x''))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

PROPER(f(f(x''))) -> PROPER(f(x''))
one new Dependency Pair is created:

PROPER(f(f(f(x'''')))) -> PROPER(f(f(x'''')))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
           →DP Problem 31
FwdInst
             ...
               →DP Problem 32
Argument Filtering and Ordering
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pair:

PROPER(f(f(f(x'''')))) -> PROPER(f(f(x'''')))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




The following dependency pair can be strictly oriented:

PROPER(f(f(f(x'''')))) -> PROPER(f(f(x'''')))


The following usable rules for innermost w.r.t. to the AFS can be oriented:

f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))


Used ordering: Homeomorphic Embedding Order with EMB
resulting in one new DP problem.
Used Argument Filtering System:
PROPER(x1) -> PROPER(x1)
f(x1) -> f(x1)
ok(x1) -> x1
found(x1) -> x1
mark(x1) -> x1


   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
           →DP Problem 31
FwdInst
             ...
               →DP Problem 33
Dependency Graph
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pair:


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




Using the Dependency Graph resulted in no new DP problems.


   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
Forward Instantiation Transformation
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pair:

MATCH(f(x), f(y)) -> MATCH(x, y)


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

MATCH(f(x), f(y)) -> MATCH(x, y)
one new Dependency Pair is created:

MATCH(f(f(x'')), f(f(y''))) -> MATCH(f(x''), f(y''))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
           →DP Problem 34
Forward Instantiation Transformation
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pair:

MATCH(f(f(x'')), f(f(y''))) -> MATCH(f(x''), f(y''))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

MATCH(f(f(x'')), f(f(y''))) -> MATCH(f(x''), f(y''))
one new Dependency Pair is created:

MATCH(f(f(f(x''''))), f(f(f(y'''')))) -> MATCH(f(f(x'''')), f(f(y'''')))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
           →DP Problem 34
FwdInst
             ...
               →DP Problem 35
Argument Filtering and Ordering
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pair:

MATCH(f(f(f(x''''))), f(f(f(y'''')))) -> MATCH(f(f(x'''')), f(f(y'''')))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




The following dependency pair can be strictly oriented:

MATCH(f(f(f(x''''))), f(f(f(y'''')))) -> MATCH(f(f(x'''')), f(f(y'''')))


The following usable rules for innermost w.r.t. to the AFS can be oriented:

f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))


Used ordering: Homeomorphic Embedding Order with EMB
resulting in one new DP problem.
Used Argument Filtering System:
MATCH(x1, x2) -> MATCH(x1, x2)
f(x1) -> f(x1)
ok(x1) -> x1
found(x1) -> x1
mark(x1) -> x1


   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
           →DP Problem 34
FwdInst
             ...
               →DP Problem 36
Dependency Graph
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar


Dependency Pair:


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




Using the Dependency Graph resulted in no new DP problems.


   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
Forward Instantiation Transformation
       →DP Problem 6
Nar


Dependency Pair:

CHECK(f(x)) -> CHECK(x)


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

CHECK(f(x)) -> CHECK(x)
one new Dependency Pair is created:

CHECK(f(f(x''))) -> CHECK(f(x''))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
           →DP Problem 37
Forward Instantiation Transformation
       →DP Problem 6
Nar


Dependency Pair:

CHECK(f(f(x''))) -> CHECK(f(x''))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

CHECK(f(f(x''))) -> CHECK(f(x''))
one new Dependency Pair is created:

CHECK(f(f(f(x'''')))) -> CHECK(f(f(x'''')))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
           →DP Problem 37
FwdInst
             ...
               →DP Problem 38
Argument Filtering and Ordering
       →DP Problem 6
Nar


Dependency Pair:

CHECK(f(f(f(x'''')))) -> CHECK(f(f(x'''')))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




The following dependency pair can be strictly oriented:

CHECK(f(f(f(x'''')))) -> CHECK(f(f(x'''')))


The following usable rules for innermost w.r.t. to the AFS can be oriented:

f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))


Used ordering: Homeomorphic Embedding Order with EMB
resulting in one new DP problem.
Used Argument Filtering System:
CHECK(x1) -> CHECK(x1)
f(x1) -> f(x1)
ok(x1) -> x1
found(x1) -> x1
mark(x1) -> x1


   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
           →DP Problem 37
FwdInst
             ...
               →DP Problem 39
Dependency Graph
       →DP Problem 6
Nar


Dependency Pair:


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




Using the Dependency Graph resulted in no new DP problems.


   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Narrowing Transformation


Dependency Pairs:

TOP(found(x)) -> TOP(active(x))
TOP(mark(x)) -> TOP(check(x))
TOP(active(c)) -> TOP(mark(c))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Narrowing SCC transformation can be performed.
As a result of transforming the rule

TOP(mark(x)) -> TOP(check(x))
two new Dependency Pairs are created:

TOP(mark(f(x''))) -> TOP(f(check(x'')))
TOP(mark(x'')) -> TOP(start(match(f(X), x'')))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Narrowing Transformation


Dependency Pairs:

TOP(mark(f(x''))) -> TOP(f(check(x'')))
TOP(mark(x'')) -> TOP(start(match(f(X), x'')))
TOP(active(c)) -> TOP(mark(c))
TOP(found(x)) -> TOP(active(x))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Narrowing SCC transformation can be performed.
As a result of transforming the rule

TOP(mark(f(x''))) -> TOP(f(check(x'')))
two new Dependency Pairs are created:

TOP(mark(f(f(x')))) -> TOP(f(f(check(x'))))
TOP(mark(f(x'''))) -> TOP(f(start(match(f(X), x'''))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 41
Narrowing Transformation


Dependency Pairs:

TOP(mark(f(x'''))) -> TOP(f(start(match(f(X), x'''))))
TOP(mark(f(f(x')))) -> TOP(f(f(check(x'))))
TOP(found(x)) -> TOP(active(x))
TOP(active(c)) -> TOP(mark(c))
TOP(mark(x'')) -> TOP(start(match(f(X), x'')))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Narrowing SCC transformation can be performed.
As a result of transforming the rule

TOP(mark(x'')) -> TOP(start(match(f(X), x'')))
one new Dependency Pair is created:

TOP(mark(f(y'))) -> TOP(start(f(match(X, y'))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 42
Narrowing Transformation


Dependency Pairs:

TOP(mark(f(y'))) -> TOP(start(f(match(X, y'))))
TOP(mark(f(f(x')))) -> TOP(f(f(check(x'))))
TOP(found(x)) -> TOP(active(x))
TOP(mark(f(x'''))) -> TOP(f(start(match(f(X), x'''))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Narrowing SCC transformation can be performed.
As a result of transforming the rule

TOP(found(x)) -> TOP(active(x))
two new Dependency Pairs are created:

TOP(found(f(x''))) -> TOP(mark(x''))
TOP(found(f(x''))) -> TOP(f(active(x'')))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 43
Narrowing Transformation


Dependency Pairs:

TOP(found(f(x''))) -> TOP(f(active(x'')))
TOP(found(f(x''))) -> TOP(mark(x''))
TOP(mark(f(x'''))) -> TOP(f(start(match(f(X), x'''))))
TOP(mark(f(f(x')))) -> TOP(f(f(check(x'))))
TOP(mark(f(y'))) -> TOP(start(f(match(X, y'))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Narrowing SCC transformation can be performed.
As a result of transforming the rule

TOP(found(f(x''))) -> TOP(f(active(x'')))
two new Dependency Pairs are created:

TOP(found(f(f(x')))) -> TOP(f(mark(x')))
TOP(found(f(f(x')))) -> TOP(f(f(active(x'))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 44
Rewriting Transformation


Dependency Pairs:

TOP(found(f(f(x')))) -> TOP(f(f(active(x'))))
TOP(found(f(f(x')))) -> TOP(f(mark(x')))
TOP(mark(f(y'))) -> TOP(start(f(match(X, y'))))
TOP(mark(f(x'''))) -> TOP(f(start(match(f(X), x'''))))
TOP(mark(f(f(x')))) -> TOP(f(f(check(x'))))
TOP(found(f(x''))) -> TOP(mark(x''))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Rewriting SCC transformation can be performed.
As a result of transforming the rule

TOP(found(f(f(x')))) -> TOP(f(mark(x')))
one new Dependency Pair is created:

TOP(found(f(f(x')))) -> TOP(mark(f(x')))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 45
Forward Instantiation Transformation


Dependency Pairs:

TOP(found(f(f(x')))) -> TOP(mark(f(x')))
TOP(found(f(x''))) -> TOP(mark(x''))
TOP(mark(f(y'))) -> TOP(start(f(match(X, y'))))
TOP(mark(f(x'''))) -> TOP(f(start(match(f(X), x'''))))
TOP(mark(f(f(x')))) -> TOP(f(f(check(x'))))
TOP(found(f(f(x')))) -> TOP(f(f(active(x'))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Forward Instantiation SCC transformation can be performed.
As a result of transforming the rule

TOP(found(f(x''))) -> TOP(mark(x''))
three new Dependency Pairs are created:

TOP(found(f(f(f(x''''))))) -> TOP(mark(f(f(x''''))))
TOP(found(f(f(x''''')))) -> TOP(mark(f(x''''')))
TOP(found(f(f(y''')))) -> TOP(mark(f(y''')))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 46
Argument Filtering and Ordering


Dependency Pairs:

TOP(found(f(f(y''')))) -> TOP(mark(f(y''')))
TOP(found(f(f(x''''')))) -> TOP(mark(f(x''''')))
TOP(found(f(f(f(x''''))))) -> TOP(mark(f(f(x''''))))
TOP(found(f(f(x')))) -> TOP(f(f(active(x'))))
TOP(mark(f(y'))) -> TOP(start(f(match(X, y'))))
TOP(mark(f(x'''))) -> TOP(f(start(match(f(X), x'''))))
TOP(mark(f(f(x')))) -> TOP(f(f(check(x'))))
TOP(found(f(f(x')))) -> TOP(mark(f(x')))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




The following dependency pairs can be strictly oriented:

TOP(found(f(f(y''')))) -> TOP(mark(f(y''')))
TOP(found(f(f(x''''')))) -> TOP(mark(f(x''''')))
TOP(found(f(f(f(x''''))))) -> TOP(mark(f(f(x''''))))
TOP(found(f(f(x')))) -> TOP(mark(f(x')))


The following usable rules for innermost w.r.t. to the AFS can be oriented:

f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
start(ok(x)) -> found(x)
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))


Used ordering: Homeomorphic Embedding Order with EMB
resulting in one new DP problem.
Used Argument Filtering System:
TOP(x1) -> TOP(x1)
found(x1) -> x1
f(x1) -> f(x1)
mark(x1) -> x1
start(x1) -> x1
match(x1, x2) -> x2
check(x1) -> x1
active(x1) -> x1
ok(x1) -> x1
proper(x1) -> x1


   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 47
Narrowing Transformation


Dependency Pairs:

TOP(found(f(f(x')))) -> TOP(f(f(active(x'))))
TOP(mark(f(y'))) -> TOP(start(f(match(X, y'))))
TOP(mark(f(x'''))) -> TOP(f(start(match(f(X), x'''))))
TOP(mark(f(f(x')))) -> TOP(f(f(check(x'))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Narrowing SCC transformation can be performed.
As a result of transforming the rule

TOP(mark(f(f(x')))) -> TOP(f(f(check(x'))))
two new Dependency Pairs are created:

TOP(mark(f(f(f(x''))))) -> TOP(f(f(f(check(x'')))))
TOP(mark(f(f(x'')))) -> TOP(f(f(start(match(f(X), x'')))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 48
Narrowing Transformation


Dependency Pairs:

TOP(mark(f(f(x'')))) -> TOP(f(f(start(match(f(X), x'')))))
TOP(mark(f(f(f(x''))))) -> TOP(f(f(f(check(x'')))))
TOP(mark(f(y'))) -> TOP(start(f(match(X, y'))))
TOP(mark(f(x'''))) -> TOP(f(start(match(f(X), x'''))))
TOP(found(f(f(x')))) -> TOP(f(f(active(x'))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Narrowing SCC transformation can be performed.
As a result of transforming the rule

TOP(mark(f(x'''))) -> TOP(f(start(match(f(X), x'''))))
one new Dependency Pair is created:

TOP(mark(f(f(y')))) -> TOP(f(start(f(match(X, y')))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 49
Narrowing Transformation


Dependency Pairs:

TOP(mark(f(f(y')))) -> TOP(f(start(f(match(X, y')))))
TOP(mark(f(f(f(x''))))) -> TOP(f(f(f(check(x'')))))
TOP(found(f(f(x')))) -> TOP(f(f(active(x'))))
TOP(mark(f(y'))) -> TOP(start(f(match(X, y'))))
TOP(mark(f(f(x'')))) -> TOP(f(f(start(match(f(X), x'')))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Narrowing SCC transformation can be performed.
As a result of transforming the rule

TOP(mark(f(y'))) -> TOP(start(f(match(X, y'))))
one new Dependency Pair is created:

TOP(mark(f(y''))) -> TOP(start(f(proper(y''))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 50
Narrowing Transformation


Dependency Pairs:

TOP(mark(f(y''))) -> TOP(start(f(proper(y''))))
TOP(mark(f(f(x'')))) -> TOP(f(f(start(match(f(X), x'')))))
TOP(mark(f(f(f(x''))))) -> TOP(f(f(f(check(x'')))))
TOP(found(f(f(x')))) -> TOP(f(f(active(x'))))
TOP(mark(f(f(y')))) -> TOP(f(start(f(match(X, y')))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Narrowing SCC transformation can be performed.
As a result of transforming the rule

TOP(found(f(f(x')))) -> TOP(f(f(active(x'))))
two new Dependency Pairs are created:

TOP(found(f(f(f(x''))))) -> TOP(f(f(mark(x''))))
TOP(found(f(f(f(x''))))) -> TOP(f(f(f(active(x'')))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 51
Rewriting Transformation


Dependency Pairs:

TOP(found(f(f(f(x''))))) -> TOP(f(f(f(active(x'')))))
TOP(found(f(f(f(x''))))) -> TOP(f(f(mark(x''))))
TOP(mark(f(f(y')))) -> TOP(f(start(f(match(X, y')))))
TOP(mark(f(f(x'')))) -> TOP(f(f(start(match(f(X), x'')))))
TOP(mark(f(f(f(x''))))) -> TOP(f(f(f(check(x'')))))
TOP(mark(f(y''))) -> TOP(start(f(proper(y''))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Rewriting SCC transformation can be performed.
As a result of transforming the rule

TOP(found(f(f(f(x''))))) -> TOP(f(f(mark(x''))))
one new Dependency Pair is created:

TOP(found(f(f(f(x''))))) -> TOP(f(mark(f(x''))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 52
Rewriting Transformation


Dependency Pairs:

TOP(found(f(f(f(x''))))) -> TOP(f(mark(f(x''))))
TOP(mark(f(y''))) -> TOP(start(f(proper(y''))))
TOP(mark(f(f(y')))) -> TOP(f(start(f(match(X, y')))))
TOP(mark(f(f(x'')))) -> TOP(f(f(start(match(f(X), x'')))))
TOP(mark(f(f(f(x''))))) -> TOP(f(f(f(check(x'')))))
TOP(found(f(f(f(x''))))) -> TOP(f(f(f(active(x'')))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Rewriting SCC transformation can be performed.
As a result of transforming the rule

TOP(found(f(f(f(x''))))) -> TOP(f(mark(f(x''))))
one new Dependency Pair is created:

TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 53
Narrowing Transformation


Dependency Pairs:

TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(found(f(f(f(x''))))) -> TOP(f(f(f(active(x'')))))
TOP(mark(f(f(y')))) -> TOP(f(start(f(match(X, y')))))
TOP(mark(f(f(x'')))) -> TOP(f(f(start(match(f(X), x'')))))
TOP(mark(f(f(f(x''))))) -> TOP(f(f(f(check(x'')))))
TOP(mark(f(y''))) -> TOP(start(f(proper(y''))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Narrowing SCC transformation can be performed.
As a result of transforming the rule

TOP(mark(f(f(f(x''))))) -> TOP(f(f(f(check(x'')))))
two new Dependency Pairs are created:

TOP(mark(f(f(f(f(x')))))) -> TOP(f(f(f(f(check(x'))))))
TOP(mark(f(f(f(x'''))))) -> TOP(f(f(f(start(match(f(X), x'''))))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 54
Narrowing Transformation


Dependency Pairs:

TOP(mark(f(f(f(x'''))))) -> TOP(f(f(f(start(match(f(X), x'''))))))
TOP(mark(f(f(f(f(x')))))) -> TOP(f(f(f(f(check(x'))))))
TOP(found(f(f(f(x''))))) -> TOP(f(f(f(active(x'')))))
TOP(mark(f(y''))) -> TOP(start(f(proper(y''))))
TOP(mark(f(f(y')))) -> TOP(f(start(f(match(X, y')))))
TOP(mark(f(f(x'')))) -> TOP(f(f(start(match(f(X), x'')))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Narrowing SCC transformation can be performed.
As a result of transforming the rule

TOP(mark(f(f(x'')))) -> TOP(f(f(start(match(f(X), x'')))))
one new Dependency Pair is created:

TOP(mark(f(f(f(y'))))) -> TOP(f(f(start(f(match(X, y'))))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 55
Narrowing Transformation


Dependency Pairs:

TOP(mark(f(f(f(y'))))) -> TOP(f(f(start(f(match(X, y'))))))
TOP(mark(f(f(f(f(x')))))) -> TOP(f(f(f(f(check(x'))))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(found(f(f(f(x''))))) -> TOP(f(f(f(active(x'')))))
TOP(mark(f(y''))) -> TOP(start(f(proper(y''))))
TOP(mark(f(f(y')))) -> TOP(f(start(f(match(X, y')))))
TOP(mark(f(f(f(x'''))))) -> TOP(f(f(f(start(match(f(X), x'''))))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Narrowing SCC transformation can be performed.
As a result of transforming the rule

TOP(mark(f(f(y')))) -> TOP(f(start(f(match(X, y')))))
one new Dependency Pair is created:

TOP(mark(f(f(y'')))) -> TOP(f(start(f(proper(y'')))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 56
Narrowing Transformation


Dependency Pairs:

TOP(mark(f(f(y'')))) -> TOP(f(start(f(proper(y'')))))
TOP(mark(f(f(f(x'''))))) -> TOP(f(f(f(start(match(f(X), x'''))))))
TOP(mark(f(f(f(f(x')))))) -> TOP(f(f(f(f(check(x'))))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(found(f(f(f(x''))))) -> TOP(f(f(f(active(x'')))))
TOP(mark(f(y''))) -> TOP(start(f(proper(y''))))
TOP(mark(f(f(f(y'))))) -> TOP(f(f(start(f(match(X, y'))))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Narrowing SCC transformation can be performed.
As a result of transforming the rule

TOP(mark(f(y''))) -> TOP(start(f(proper(y''))))
two new Dependency Pairs are created:

TOP(mark(f(c))) -> TOP(start(f(ok(c))))
TOP(mark(f(f(x')))) -> TOP(start(f(f(proper(x')))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 57
Rewriting Transformation


Dependency Pairs:

TOP(mark(f(f(x')))) -> TOP(start(f(f(proper(x')))))
TOP(mark(f(c))) -> TOP(start(f(ok(c))))
TOP(mark(f(f(f(y'))))) -> TOP(f(f(start(f(match(X, y'))))))
TOP(mark(f(f(f(x'''))))) -> TOP(f(f(f(start(match(f(X), x'''))))))
TOP(mark(f(f(f(f(x')))))) -> TOP(f(f(f(f(check(x'))))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(found(f(f(f(x''))))) -> TOP(f(f(f(active(x'')))))
TOP(mark(f(f(y'')))) -> TOP(f(start(f(proper(y'')))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Rewriting SCC transformation can be performed.
As a result of transforming the rule

TOP(mark(f(c))) -> TOP(start(f(ok(c))))
one new Dependency Pair is created:

TOP(mark(f(c))) -> TOP(start(ok(f(c))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 58
Rewriting Transformation


Dependency Pairs:

TOP(mark(f(c))) -> TOP(start(ok(f(c))))
TOP(mark(f(f(y'')))) -> TOP(f(start(f(proper(y'')))))
TOP(mark(f(f(f(y'))))) -> TOP(f(f(start(f(match(X, y'))))))
TOP(mark(f(f(f(x'''))))) -> TOP(f(f(f(start(match(f(X), x'''))))))
TOP(mark(f(f(f(f(x')))))) -> TOP(f(f(f(f(check(x'))))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(found(f(f(f(x''))))) -> TOP(f(f(f(active(x'')))))
TOP(mark(f(f(x')))) -> TOP(start(f(f(proper(x')))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Rewriting SCC transformation can be performed.
As a result of transforming the rule

TOP(mark(f(c))) -> TOP(start(ok(f(c))))
one new Dependency Pair is created:

TOP(mark(f(c))) -> TOP(found(f(c)))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 59
Narrowing Transformation


Dependency Pairs:

TOP(mark(f(f(x')))) -> TOP(start(f(f(proper(x')))))
TOP(mark(f(f(f(y'))))) -> TOP(f(f(start(f(match(X, y'))))))
TOP(mark(f(f(f(x'''))))) -> TOP(f(f(f(start(match(f(X), x'''))))))
TOP(mark(f(f(f(f(x')))))) -> TOP(f(f(f(f(check(x'))))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(found(f(f(f(x''))))) -> TOP(f(f(f(active(x'')))))
TOP(mark(f(f(y'')))) -> TOP(f(start(f(proper(y'')))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Narrowing SCC transformation can be performed.
As a result of transforming the rule

TOP(found(f(f(f(x''))))) -> TOP(f(f(f(active(x'')))))
two new Dependency Pairs are created:

TOP(found(f(f(f(f(x')))))) -> TOP(f(f(f(mark(x')))))
TOP(found(f(f(f(f(x')))))) -> TOP(f(f(f(f(active(x'))))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 60
Rewriting Transformation


Dependency Pairs:

TOP(found(f(f(f(f(x')))))) -> TOP(f(f(f(f(active(x'))))))
TOP(found(f(f(f(f(x')))))) -> TOP(f(f(f(mark(x')))))
TOP(mark(f(f(y'')))) -> TOP(f(start(f(proper(y'')))))
TOP(mark(f(f(f(y'))))) -> TOP(f(f(start(f(match(X, y'))))))
TOP(mark(f(f(f(x'''))))) -> TOP(f(f(f(start(match(f(X), x'''))))))
TOP(mark(f(f(f(f(x')))))) -> TOP(f(f(f(f(check(x'))))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(mark(f(f(x')))) -> TOP(start(f(f(proper(x')))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Rewriting SCC transformation can be performed.
As a result of transforming the rule

TOP(found(f(f(f(f(x')))))) -> TOP(f(f(f(mark(x')))))
one new Dependency Pair is created:

TOP(found(f(f(f(f(x')))))) -> TOP(f(f(mark(f(x')))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 61
Rewriting Transformation


Dependency Pairs:

TOP(found(f(f(f(f(x')))))) -> TOP(f(f(mark(f(x')))))
TOP(mark(f(f(x')))) -> TOP(start(f(f(proper(x')))))
TOP(mark(f(f(y'')))) -> TOP(f(start(f(proper(y'')))))
TOP(mark(f(f(f(y'))))) -> TOP(f(f(start(f(match(X, y'))))))
TOP(mark(f(f(f(x'''))))) -> TOP(f(f(f(start(match(f(X), x'''))))))
TOP(mark(f(f(f(f(x')))))) -> TOP(f(f(f(f(check(x'))))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(found(f(f(f(f(x')))))) -> TOP(f(f(f(f(active(x'))))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Rewriting SCC transformation can be performed.
As a result of transforming the rule

TOP(found(f(f(f(f(x')))))) -> TOP(f(f(mark(f(x')))))
one new Dependency Pair is created:

TOP(found(f(f(f(f(x')))))) -> TOP(f(mark(f(f(x')))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 62
Rewriting Transformation


Dependency Pairs:

TOP(found(f(f(f(f(x')))))) -> TOP(f(mark(f(f(x')))))
TOP(found(f(f(f(f(x')))))) -> TOP(f(f(f(f(active(x'))))))
TOP(mark(f(f(y'')))) -> TOP(f(start(f(proper(y'')))))
TOP(mark(f(f(f(y'))))) -> TOP(f(f(start(f(match(X, y'))))))
TOP(mark(f(f(f(x'''))))) -> TOP(f(f(f(start(match(f(X), x'''))))))
TOP(mark(f(f(f(f(x')))))) -> TOP(f(f(f(f(check(x'))))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(mark(f(f(x')))) -> TOP(start(f(f(proper(x')))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Rewriting SCC transformation can be performed.
As a result of transforming the rule

TOP(found(f(f(f(f(x')))))) -> TOP(f(mark(f(f(x')))))
one new Dependency Pair is created:

TOP(found(f(f(f(f(x')))))) -> TOP(mark(f(f(f(x')))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 63
Narrowing Transformation


Dependency Pairs:

TOP(found(f(f(f(f(x')))))) -> TOP(mark(f(f(f(x')))))
TOP(mark(f(f(x')))) -> TOP(start(f(f(proper(x')))))
TOP(mark(f(f(y'')))) -> TOP(f(start(f(proper(y'')))))
TOP(mark(f(f(f(y'))))) -> TOP(f(f(start(f(match(X, y'))))))
TOP(mark(f(f(f(x'''))))) -> TOP(f(f(f(start(match(f(X), x'''))))))
TOP(mark(f(f(f(f(x')))))) -> TOP(f(f(f(f(check(x'))))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(found(f(f(f(f(x')))))) -> TOP(f(f(f(f(active(x'))))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Narrowing SCC transformation can be performed.
As a result of transforming the rule

TOP(mark(f(f(f(f(x')))))) -> TOP(f(f(f(f(check(x'))))))
two new Dependency Pairs are created:

TOP(mark(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(check(x'')))))))
TOP(mark(f(f(f(f(x'')))))) -> TOP(f(f(f(f(start(match(f(X), x'')))))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 64
Narrowing Transformation


Dependency Pairs:

TOP(mark(f(f(f(f(x'')))))) -> TOP(f(f(f(f(start(match(f(X), x'')))))))
TOP(mark(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(check(x'')))))))
TOP(found(f(f(f(f(x')))))) -> TOP(f(f(f(f(active(x'))))))
TOP(mark(f(f(x')))) -> TOP(start(f(f(proper(x')))))
TOP(mark(f(f(y'')))) -> TOP(f(start(f(proper(y'')))))
TOP(mark(f(f(f(y'))))) -> TOP(f(f(start(f(match(X, y'))))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(mark(f(f(f(x'''))))) -> TOP(f(f(f(start(match(f(X), x'''))))))
TOP(found(f(f(f(f(x')))))) -> TOP(mark(f(f(f(x')))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Narrowing SCC transformation can be performed.
As a result of transforming the rule

TOP(mark(f(f(f(x'''))))) -> TOP(f(f(f(start(match(f(X), x'''))))))
one new Dependency Pair is created:

TOP(mark(f(f(f(f(y')))))) -> TOP(f(f(f(start(f(match(X, y')))))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 65
Narrowing Transformation


Dependency Pairs:

TOP(mark(f(f(f(f(y')))))) -> TOP(f(f(f(start(f(match(X, y')))))))
TOP(mark(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(check(x'')))))))
TOP(found(f(f(f(f(x')))))) -> TOP(mark(f(f(f(x')))))
TOP(found(f(f(f(f(x')))))) -> TOP(f(f(f(f(active(x'))))))
TOP(mark(f(f(x')))) -> TOP(start(f(f(proper(x')))))
TOP(mark(f(f(y'')))) -> TOP(f(start(f(proper(y'')))))
TOP(mark(f(f(f(y'))))) -> TOP(f(f(start(f(match(X, y'))))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(mark(f(f(f(f(x'')))))) -> TOP(f(f(f(f(start(match(f(X), x'')))))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Narrowing SCC transformation can be performed.
As a result of transforming the rule

TOP(mark(f(f(f(y'))))) -> TOP(f(f(start(f(match(X, y'))))))
one new Dependency Pair is created:

TOP(mark(f(f(f(y''))))) -> TOP(f(f(start(f(proper(y''))))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 66
Narrowing Transformation


Dependency Pairs:

TOP(mark(f(f(f(y''))))) -> TOP(f(f(start(f(proper(y''))))))
TOP(mark(f(f(f(f(x'')))))) -> TOP(f(f(f(f(start(match(f(X), x'')))))))
TOP(mark(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(check(x'')))))))
TOP(found(f(f(f(f(x')))))) -> TOP(mark(f(f(f(x')))))
TOP(found(f(f(f(f(x')))))) -> TOP(f(f(f(f(active(x'))))))
TOP(mark(f(f(x')))) -> TOP(start(f(f(proper(x')))))
TOP(mark(f(f(y'')))) -> TOP(f(start(f(proper(y'')))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(mark(f(f(f(f(y')))))) -> TOP(f(f(f(start(f(match(X, y')))))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Narrowing SCC transformation can be performed.
As a result of transforming the rule

TOP(mark(f(f(y'')))) -> TOP(f(start(f(proper(y'')))))
two new Dependency Pairs are created:

TOP(mark(f(f(c)))) -> TOP(f(start(f(ok(c)))))
TOP(mark(f(f(f(x'))))) -> TOP(f(start(f(f(proper(x'))))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 67
Rewriting Transformation


Dependency Pairs:

TOP(mark(f(f(f(x'))))) -> TOP(f(start(f(f(proper(x'))))))
TOP(mark(f(f(c)))) -> TOP(f(start(f(ok(c)))))
TOP(mark(f(f(f(f(y')))))) -> TOP(f(f(f(start(f(match(X, y')))))))
TOP(mark(f(f(f(f(x'')))))) -> TOP(f(f(f(f(start(match(f(X), x'')))))))
TOP(mark(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(check(x'')))))))
TOP(found(f(f(f(f(x')))))) -> TOP(mark(f(f(f(x')))))
TOP(found(f(f(f(f(x')))))) -> TOP(f(f(f(f(active(x'))))))
TOP(mark(f(f(x')))) -> TOP(start(f(f(proper(x')))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(mark(f(f(f(y''))))) -> TOP(f(f(start(f(proper(y''))))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Rewriting SCC transformation can be performed.
As a result of transforming the rule

TOP(mark(f(f(c)))) -> TOP(f(start(f(ok(c)))))
one new Dependency Pair is created:

TOP(mark(f(f(c)))) -> TOP(f(start(ok(f(c)))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 68
Rewriting Transformation


Dependency Pairs:

TOP(mark(f(f(c)))) -> TOP(f(start(ok(f(c)))))
TOP(mark(f(f(f(y''))))) -> TOP(f(f(start(f(proper(y''))))))
TOP(mark(f(f(f(f(y')))))) -> TOP(f(f(f(start(f(match(X, y')))))))
TOP(mark(f(f(f(f(x'')))))) -> TOP(f(f(f(f(start(match(f(X), x'')))))))
TOP(mark(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(check(x'')))))))
TOP(found(f(f(f(f(x')))))) -> TOP(mark(f(f(f(x')))))
TOP(found(f(f(f(f(x')))))) -> TOP(f(f(f(f(active(x'))))))
TOP(mark(f(f(x')))) -> TOP(start(f(f(proper(x')))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(mark(f(f(f(x'))))) -> TOP(f(start(f(f(proper(x'))))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Rewriting SCC transformation can be performed.
As a result of transforming the rule

TOP(mark(f(f(c)))) -> TOP(f(start(ok(f(c)))))
one new Dependency Pair is created:

TOP(mark(f(f(c)))) -> TOP(f(found(f(c))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 69
Rewriting Transformation


Dependency Pairs:

TOP(mark(f(f(c)))) -> TOP(f(found(f(c))))
TOP(mark(f(f(f(x'))))) -> TOP(f(start(f(f(proper(x'))))))
TOP(mark(f(f(f(f(y')))))) -> TOP(f(f(f(start(f(match(X, y')))))))
TOP(mark(f(f(f(f(x'')))))) -> TOP(f(f(f(f(start(match(f(X), x'')))))))
TOP(mark(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(check(x'')))))))
TOP(found(f(f(f(f(x')))))) -> TOP(mark(f(f(f(x')))))
TOP(found(f(f(f(f(x')))))) -> TOP(f(f(f(f(active(x'))))))
TOP(mark(f(f(x')))) -> TOP(start(f(f(proper(x')))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(mark(f(f(f(y''))))) -> TOP(f(f(start(f(proper(y''))))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Rewriting SCC transformation can be performed.
As a result of transforming the rule

TOP(mark(f(f(c)))) -> TOP(f(found(f(c))))
one new Dependency Pair is created:

TOP(mark(f(f(c)))) -> TOP(found(f(f(c))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 70
Narrowing Transformation


Dependency Pairs:

TOP(mark(f(f(f(y''))))) -> TOP(f(f(start(f(proper(y''))))))
TOP(mark(f(f(f(f(y')))))) -> TOP(f(f(f(start(f(match(X, y')))))))
TOP(mark(f(f(f(f(x'')))))) -> TOP(f(f(f(f(start(match(f(X), x'')))))))
TOP(mark(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(check(x'')))))))
TOP(found(f(f(f(f(x')))))) -> TOP(mark(f(f(f(x')))))
TOP(found(f(f(f(f(x')))))) -> TOP(f(f(f(f(active(x'))))))
TOP(mark(f(f(x')))) -> TOP(start(f(f(proper(x')))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(mark(f(f(f(x'))))) -> TOP(f(start(f(f(proper(x'))))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Narrowing SCC transformation can be performed.
As a result of transforming the rule

TOP(mark(f(f(x')))) -> TOP(start(f(f(proper(x')))))
two new Dependency Pairs are created:

TOP(mark(f(f(c)))) -> TOP(start(f(f(ok(c)))))
TOP(mark(f(f(f(x''))))) -> TOP(start(f(f(f(proper(x''))))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 71
Rewriting Transformation


Dependency Pairs:

TOP(mark(f(f(f(x''))))) -> TOP(start(f(f(f(proper(x''))))))
TOP(mark(f(f(c)))) -> TOP(start(f(f(ok(c)))))
TOP(mark(f(f(f(x'))))) -> TOP(f(start(f(f(proper(x'))))))
TOP(mark(f(f(f(f(y')))))) -> TOP(f(f(f(start(f(match(X, y')))))))
TOP(mark(f(f(f(f(x'')))))) -> TOP(f(f(f(f(start(match(f(X), x'')))))))
TOP(found(f(f(f(f(x')))))) -> TOP(mark(f(f(f(x')))))
TOP(found(f(f(f(f(x')))))) -> TOP(f(f(f(f(active(x'))))))
TOP(mark(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(check(x'')))))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(mark(f(f(f(y''))))) -> TOP(f(f(start(f(proper(y''))))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Rewriting SCC transformation can be performed.
As a result of transforming the rule

TOP(mark(f(f(c)))) -> TOP(start(f(f(ok(c)))))
one new Dependency Pair is created:

TOP(mark(f(f(c)))) -> TOP(start(f(ok(f(c)))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 72
Rewriting Transformation


Dependency Pairs:

TOP(mark(f(f(c)))) -> TOP(start(f(ok(f(c)))))
TOP(mark(f(f(f(x'))))) -> TOP(f(start(f(f(proper(x'))))))
TOP(mark(f(f(f(y''))))) -> TOP(f(f(start(f(proper(y''))))))
TOP(mark(f(f(f(f(y')))))) -> TOP(f(f(f(start(f(match(X, y')))))))
TOP(mark(f(f(f(f(x'')))))) -> TOP(f(f(f(f(start(match(f(X), x'')))))))
TOP(found(f(f(f(f(x')))))) -> TOP(mark(f(f(f(x')))))
TOP(found(f(f(f(f(x')))))) -> TOP(f(f(f(f(active(x'))))))
TOP(mark(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(check(x'')))))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(mark(f(f(f(x''))))) -> TOP(start(f(f(f(proper(x''))))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Rewriting SCC transformation can be performed.
As a result of transforming the rule

TOP(mark(f(f(c)))) -> TOP(start(f(ok(f(c)))))
one new Dependency Pair is created:

TOP(mark(f(f(c)))) -> TOP(start(ok(f(f(c)))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 73
Rewriting Transformation


Dependency Pairs:

TOP(mark(f(f(c)))) -> TOP(start(ok(f(f(c)))))
TOP(mark(f(f(f(x''))))) -> TOP(start(f(f(f(proper(x''))))))
TOP(mark(f(f(f(y''))))) -> TOP(f(f(start(f(proper(y''))))))
TOP(mark(f(f(f(f(y')))))) -> TOP(f(f(f(start(f(match(X, y')))))))
TOP(mark(f(f(f(f(x'')))))) -> TOP(f(f(f(f(start(match(f(X), x'')))))))
TOP(found(f(f(f(f(x')))))) -> TOP(mark(f(f(f(x')))))
TOP(found(f(f(f(f(x')))))) -> TOP(f(f(f(f(active(x'))))))
TOP(mark(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(check(x'')))))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(mark(f(f(f(x'))))) -> TOP(f(start(f(f(proper(x'))))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Rewriting SCC transformation can be performed.
As a result of transforming the rule

TOP(mark(f(f(c)))) -> TOP(start(ok(f(f(c)))))
one new Dependency Pair is created:

TOP(mark(f(f(c)))) -> TOP(found(f(f(c))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 74
Narrowing Transformation


Dependency Pairs:

TOP(mark(f(f(f(x'))))) -> TOP(f(start(f(f(proper(x'))))))
TOP(mark(f(f(f(y''))))) -> TOP(f(f(start(f(proper(y''))))))
TOP(mark(f(f(f(f(y')))))) -> TOP(f(f(f(start(f(match(X, y')))))))
TOP(mark(f(f(f(f(x'')))))) -> TOP(f(f(f(f(start(match(f(X), x'')))))))
TOP(found(f(f(f(f(x')))))) -> TOP(mark(f(f(f(x')))))
TOP(found(f(f(f(f(x')))))) -> TOP(f(f(f(f(active(x'))))))
TOP(mark(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(check(x'')))))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(mark(f(f(f(x''))))) -> TOP(start(f(f(f(proper(x''))))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Narrowing SCC transformation can be performed.
As a result of transforming the rule

TOP(found(f(f(f(f(x')))))) -> TOP(f(f(f(f(active(x'))))))
two new Dependency Pairs are created:

TOP(found(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(mark(x''))))))
TOP(found(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(active(x'')))))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 75
Rewriting Transformation


Dependency Pairs:

TOP(found(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(active(x'')))))))
TOP(found(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(mark(x''))))))
TOP(mark(f(f(f(x''))))) -> TOP(start(f(f(f(proper(x''))))))
TOP(mark(f(f(f(y''))))) -> TOP(f(f(start(f(proper(y''))))))
TOP(mark(f(f(f(f(y')))))) -> TOP(f(f(f(start(f(match(X, y')))))))
TOP(mark(f(f(f(f(x'')))))) -> TOP(f(f(f(f(start(match(f(X), x'')))))))
TOP(found(f(f(f(f(x')))))) -> TOP(mark(f(f(f(x')))))
TOP(mark(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(check(x'')))))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(mark(f(f(f(x'))))) -> TOP(f(start(f(f(proper(x'))))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Rewriting SCC transformation can be performed.
As a result of transforming the rule

TOP(found(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(mark(x''))))))
one new Dependency Pair is created:

TOP(found(f(f(f(f(f(x''))))))) -> TOP(f(f(f(mark(f(x''))))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 76
Rewriting Transformation


Dependency Pairs:

TOP(found(f(f(f(f(f(x''))))))) -> TOP(f(f(f(mark(f(x''))))))
TOP(mark(f(f(f(x''))))) -> TOP(start(f(f(f(proper(x''))))))
TOP(mark(f(f(f(x'))))) -> TOP(f(start(f(f(proper(x'))))))
TOP(mark(f(f(f(y''))))) -> TOP(f(f(start(f(proper(y''))))))
TOP(mark(f(f(f(f(y')))))) -> TOP(f(f(f(start(f(match(X, y')))))))
TOP(mark(f(f(f(f(x'')))))) -> TOP(f(f(f(f(start(match(f(X), x'')))))))
TOP(found(f(f(f(f(x')))))) -> TOP(mark(f(f(f(x')))))
TOP(mark(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(check(x'')))))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(found(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(active(x'')))))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Rewriting SCC transformation can be performed.
As a result of transforming the rule

TOP(found(f(f(f(f(f(x''))))))) -> TOP(f(f(f(mark(f(x''))))))
one new Dependency Pair is created:

TOP(found(f(f(f(f(f(x''))))))) -> TOP(f(f(mark(f(f(x''))))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 77
Rewriting Transformation


Dependency Pairs:

TOP(found(f(f(f(f(f(x''))))))) -> TOP(f(f(mark(f(f(x''))))))
TOP(found(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(active(x'')))))))
TOP(mark(f(f(f(x'))))) -> TOP(f(start(f(f(proper(x'))))))
TOP(mark(f(f(f(y''))))) -> TOP(f(f(start(f(proper(y''))))))
TOP(mark(f(f(f(f(y')))))) -> TOP(f(f(f(start(f(match(X, y')))))))
TOP(mark(f(f(f(f(x'')))))) -> TOP(f(f(f(f(start(match(f(X), x'')))))))
TOP(found(f(f(f(f(x')))))) -> TOP(mark(f(f(f(x')))))
TOP(mark(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(check(x'')))))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(mark(f(f(f(x''))))) -> TOP(start(f(f(f(proper(x''))))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Rewriting SCC transformation can be performed.
As a result of transforming the rule

TOP(found(f(f(f(f(f(x''))))))) -> TOP(f(f(mark(f(f(x''))))))
one new Dependency Pair is created:

TOP(found(f(f(f(f(f(x''))))))) -> TOP(f(mark(f(f(f(x''))))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 78
Rewriting Transformation


Dependency Pairs:

TOP(found(f(f(f(f(f(x''))))))) -> TOP(f(mark(f(f(f(x''))))))
TOP(mark(f(f(f(x''))))) -> TOP(start(f(f(f(proper(x''))))))
TOP(mark(f(f(f(x'))))) -> TOP(f(start(f(f(proper(x'))))))
TOP(mark(f(f(f(y''))))) -> TOP(f(f(start(f(proper(y''))))))
TOP(mark(f(f(f(f(y')))))) -> TOP(f(f(f(start(f(match(X, y')))))))
TOP(mark(f(f(f(f(x'')))))) -> TOP(f(f(f(f(start(match(f(X), x'')))))))
TOP(found(f(f(f(f(x')))))) -> TOP(mark(f(f(f(x')))))
TOP(mark(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(check(x'')))))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(found(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(active(x'')))))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




On this DP problem, a Rewriting SCC transformation can be performed.
As a result of transforming the rule

TOP(found(f(f(f(f(f(x''))))))) -> TOP(f(mark(f(f(f(x''))))))
one new Dependency Pair is created:

TOP(found(f(f(f(f(f(x''))))))) -> TOP(mark(f(f(f(f(x''))))))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 79
Argument Filtering and Ordering


Dependency Pairs:

TOP(found(f(f(f(f(f(x''))))))) -> TOP(mark(f(f(f(f(x''))))))
TOP(found(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(active(x'')))))))
TOP(mark(f(f(f(x'))))) -> TOP(f(start(f(f(proper(x'))))))
TOP(mark(f(f(f(y''))))) -> TOP(f(f(start(f(proper(y''))))))
TOP(mark(f(f(f(f(y')))))) -> TOP(f(f(f(start(f(match(X, y')))))))
TOP(mark(f(f(f(f(x'')))))) -> TOP(f(f(f(f(start(match(f(X), x'')))))))
TOP(found(f(f(f(f(x')))))) -> TOP(mark(f(f(f(x')))))
TOP(mark(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(check(x'')))))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))
TOP(mark(f(f(f(x''))))) -> TOP(start(f(f(f(proper(x''))))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost




The following dependency pairs can be strictly oriented:

TOP(found(f(f(f(f(f(x''))))))) -> TOP(mark(f(f(f(f(x''))))))
TOP(found(f(f(f(f(x')))))) -> TOP(mark(f(f(f(x')))))
TOP(found(f(f(f(x''))))) -> TOP(mark(f(f(x''))))


The following usable rules for innermost w.r.t. to the AFS can be oriented:

f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
start(ok(x)) -> found(x)
active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)


Used ordering: Homeomorphic Embedding Order with EMB
resulting in one new DP problem.
Used Argument Filtering System:
TOP(x1) -> TOP(x1)
found(x1) -> x1
f(x1) -> f(x1)
mark(x1) -> x1
check(x1) -> x1
start(x1) -> x1
proper(x1) -> x1
active(x1) -> x1
match(x1, x2) -> x2
ok(x1) -> x1


   R
DPs
       →DP Problem 1
FwdInst
       →DP Problem 2
FwdInst
       →DP Problem 3
FwdInst
       →DP Problem 4
FwdInst
       →DP Problem 5
FwdInst
       →DP Problem 6
Nar
           →DP Problem 40
Nar
             ...
               →DP Problem 80
Remaining Obligation(s)




The following remains to be proven:
Dependency Pairs:

TOP(found(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(active(x'')))))))
TOP(mark(f(f(f(x'))))) -> TOP(f(start(f(f(proper(x'))))))
TOP(mark(f(f(f(y''))))) -> TOP(f(f(start(f(proper(y''))))))
TOP(mark(f(f(f(f(y')))))) -> TOP(f(f(f(start(f(match(X, y')))))))
TOP(mark(f(f(f(f(x'')))))) -> TOP(f(f(f(f(start(match(f(X), x'')))))))
TOP(mark(f(f(f(f(f(x''))))))) -> TOP(f(f(f(f(f(check(x'')))))))
TOP(mark(f(f(f(x''))))) -> TOP(start(f(f(f(proper(x''))))))


Rules:


active(f(x)) -> mark(x)
active(f(x)) -> f(active(x))
top(active(c)) -> top(mark(c))
top(mark(x)) -> top(check(x))
top(found(x)) -> top(active(x))
check(f(x)) -> f(check(x))
check(x) -> start(match(f(X), x))
match(f(x), f(y)) -> f(match(x, y))
match(X, x) -> proper(x)
proper(c) -> ok(c)
proper(f(x)) -> f(proper(x))
f(ok(x)) -> ok(f(x))
f(found(x)) -> found(f(x))
f(mark(x)) -> mark(f(x))
start(ok(x)) -> found(x)


Strategy:

innermost



Innermost Termination of R could not be shown.
Duration:
0:28 minutes