Term Rewriting System R:
[X, Y, Z, X1, X2]
active(f(X)) -> mark(cons(X, f(g(X))))
active(g(0)) -> mark(s(0))
active(g(s(X))) -> mark(s(s(g(X))))
active(sel(0, cons(X, Y))) -> mark(X)
active(sel(s(X), cons(Y, Z))) -> mark(sel(X, Z))
active(f(X)) -> f(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(g(X)) -> g(active(X))
active(s(X)) -> s(active(X))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
f(mark(X)) -> mark(f(X))
f(ok(X)) -> ok(f(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
g(mark(X)) -> mark(g(X))
g(ok(X)) -> ok(g(X))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(f(X)) -> f(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(g(X)) -> g(proper(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))

Innermost Termination of R to be shown.



   R
Dependency Pair Analysis



R contains the following Dependency Pairs:

ACTIVE(f(X)) -> CONS(X, f(g(X)))
ACTIVE(f(X)) -> F(g(X))
ACTIVE(f(X)) -> G(X)
ACTIVE(g(0)) -> S(0)
ACTIVE(g(s(X))) -> S(s(g(X)))
ACTIVE(g(s(X))) -> S(g(X))
ACTIVE(g(s(X))) -> G(X)
ACTIVE(sel(s(X), cons(Y, Z))) -> SEL(X, Z)
ACTIVE(f(X)) -> F(active(X))
ACTIVE(f(X)) -> ACTIVE(X)
ACTIVE(cons(X1, X2)) -> CONS(active(X1), X2)
ACTIVE(cons(X1, X2)) -> ACTIVE(X1)
ACTIVE(g(X)) -> G(active(X))
ACTIVE(g(X)) -> ACTIVE(X)
ACTIVE(s(X)) -> S(active(X))
ACTIVE(s(X)) -> ACTIVE(X)
ACTIVE(sel(X1, X2)) -> SEL(active(X1), X2)
ACTIVE(sel(X1, X2)) -> ACTIVE(X1)
ACTIVE(sel(X1, X2)) -> SEL(X1, active(X2))
ACTIVE(sel(X1, X2)) -> ACTIVE(X2)
F(mark(X)) -> F(X)
F(ok(X)) -> F(X)
CONS(mark(X1), X2) -> CONS(X1, X2)
CONS(ok(X1), ok(X2)) -> CONS(X1, X2)
G(mark(X)) -> G(X)
G(ok(X)) -> G(X)
S(mark(X)) -> S(X)
S(ok(X)) -> S(X)
SEL(mark(X1), X2) -> SEL(X1, X2)
SEL(X1, mark(X2)) -> SEL(X1, X2)
SEL(ok(X1), ok(X2)) -> SEL(X1, X2)
PROPER(f(X)) -> F(proper(X))
PROPER(f(X)) -> PROPER(X)
PROPER(cons(X1, X2)) -> CONS(proper(X1), proper(X2))
PROPER(cons(X1, X2)) -> PROPER(X1)
PROPER(cons(X1, X2)) -> PROPER(X2)
PROPER(g(X)) -> G(proper(X))
PROPER(g(X)) -> PROPER(X)
PROPER(s(X)) -> S(proper(X))
PROPER(s(X)) -> PROPER(X)
PROPER(sel(X1, X2)) -> SEL(proper(X1), proper(X2))
PROPER(sel(X1, X2)) -> PROPER(X1)
PROPER(sel(X1, X2)) -> PROPER(X2)
TOP(mark(X)) -> TOP(proper(X))
TOP(mark(X)) -> PROPER(X)
TOP(ok(X)) -> TOP(active(X))
TOP(ok(X)) -> ACTIVE(X)

Furthermore, R contains eight SCCs.


   R
DPs
       →DP Problem 1
Usable Rules (Innermost)
       →DP Problem 2
UsableRules
       →DP Problem 3
UsableRules
       →DP Problem 4
UsableRules
       →DP Problem 5
UsableRules
       →DP Problem 6
UsableRules
       →DP Problem 7
UsableRules
       →DP Problem 8
UsableRules


Dependency Pairs:

SEL(ok(X1), ok(X2)) -> SEL(X1, X2)
SEL(mark(X1), X2) -> SEL(X1, X2)
SEL(X1, mark(X2)) -> SEL(X1, X2)


Rules:


active(f(X)) -> mark(cons(X, f(g(X))))
active(g(0)) -> mark(s(0))
active(g(s(X))) -> mark(s(s(g(X))))
active(sel(0, cons(X, Y))) -> mark(X)
active(sel(s(X), cons(Y, Z))) -> mark(sel(X, Z))
active(f(X)) -> f(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(g(X)) -> g(active(X))
active(s(X)) -> s(active(X))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
f(mark(X)) -> mark(f(X))
f(ok(X)) -> ok(f(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
g(mark(X)) -> mark(g(X))
g(ok(X)) -> ok(g(X))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(f(X)) -> f(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(g(X)) -> g(proper(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))


Strategy:

innermost




As we are in the innermost case, we can delete all 30 non-usable-rules.


   R
DPs
       →DP Problem 1
UsableRules
           →DP Problem 9
Size-Change Principle
       →DP Problem 2
UsableRules
       →DP Problem 3
UsableRules
       →DP Problem 4
UsableRules
       →DP Problem 5
UsableRules
       →DP Problem 6
UsableRules
       →DP Problem 7
UsableRules
       →DP Problem 8
UsableRules


Dependency Pairs:

SEL(ok(X1), ok(X2)) -> SEL(X1, X2)
SEL(mark(X1), X2) -> SEL(X1, X2)
SEL(X1, mark(X2)) -> SEL(X1, X2)


Rule:

none


Strategy:

innermost




We number the DPs as follows:
  1. SEL(ok(X1), ok(X2)) -> SEL(X1, X2)
  2. SEL(mark(X1), X2) -> SEL(X1, X2)
  3. SEL(X1, mark(X2)) -> SEL(X1, X2)
and get the following Size-Change Graph(s):
{1, 2, 3} , {1, 2, 3}
1>1
2>2
{1, 2, 3} , {1, 2, 3}
1>1
2=2
{1, 2, 3} , {1, 2, 3}
1=1
2>2

which lead(s) to this/these maximal multigraph(s):
{1, 2, 3} , {1, 2, 3}
1=1
2>2
{1, 2, 3} , {1, 2, 3}
1>1
2=2
{1, 2, 3} , {1, 2, 3}
1>1
2>2

DP: empty set
Oriented Rules: none

We used the order Homeomorphic Embedding Order with Non-Strict Precedence.
trivial

with Argument Filtering System:
mark(x1) -> mark(x1)
ok(x1) -> ok(x1)

We obtain no new DP problems.


   R
DPs
       →DP Problem 1
UsableRules
       →DP Problem 2
Usable Rules (Innermost)
       →DP Problem 3
UsableRules
       →DP Problem 4
UsableRules
       →DP Problem 5
UsableRules
       →DP Problem 6
UsableRules
       →DP Problem 7
UsableRules
       →DP Problem 8
UsableRules


Dependency Pairs:

F(ok(X)) -> F(X)
F(mark(X)) -> F(X)


Rules:


active(f(X)) -> mark(cons(X, f(g(X))))
active(g(0)) -> mark(s(0))
active(g(s(X))) -> mark(s(s(g(X))))
active(sel(0, cons(X, Y))) -> mark(X)
active(sel(s(X), cons(Y, Z))) -> mark(sel(X, Z))
active(f(X)) -> f(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(g(X)) -> g(active(X))
active(s(X)) -> s(active(X))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
f(mark(X)) -> mark(f(X))
f(ok(X)) -> ok(f(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
g(mark(X)) -> mark(g(X))
g(ok(X)) -> ok(g(X))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(f(X)) -> f(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(g(X)) -> g(proper(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))


Strategy:

innermost




As we are in the innermost case, we can delete all 30 non-usable-rules.


   R
DPs
       →DP Problem 1
UsableRules
       →DP Problem 2
UsableRules
           →DP Problem 10
Size-Change Principle
       →DP Problem 3
UsableRules
       →DP Problem 4
UsableRules
       →DP Problem 5
UsableRules
       →DP Problem 6
UsableRules
       →DP Problem 7
UsableRules
       →DP Problem 8
UsableRules


Dependency Pairs:

F(ok(X)) -> F(X)
F(mark(X)) -> F(X)


Rule:

none


Strategy:

innermost




We number the DPs as follows:
  1. F(ok(X)) -> F(X)
  2. F(mark(X)) -> F(X)
and get the following Size-Change Graph(s):
{1, 2} , {1, 2}
1>1

which lead(s) to this/these maximal multigraph(s):
{1, 2} , {1, 2}
1>1

DP: empty set
Oriented Rules: none

We used the order Homeomorphic Embedding Order with Non-Strict Precedence.
trivial

with Argument Filtering System:
mark(x1) -> mark(x1)
ok(x1) -> ok(x1)

We obtain no new DP problems.


   R
DPs
       →DP Problem 1
UsableRules
       →DP Problem 2
UsableRules
       →DP Problem 3
Usable Rules (Innermost)
       →DP Problem 4
UsableRules
       →DP Problem 5
UsableRules
       →DP Problem 6
UsableRules
       →DP Problem 7
UsableRules
       →DP Problem 8
UsableRules


Dependency Pairs:

CONS(ok(X1), ok(X2)) -> CONS(X1, X2)
CONS(mark(X1), X2) -> CONS(X1, X2)


Rules:


active(f(X)) -> mark(cons(X, f(g(X))))
active(g(0)) -> mark(s(0))
active(g(s(X))) -> mark(s(s(g(X))))
active(sel(0, cons(X, Y))) -> mark(X)
active(sel(s(X), cons(Y, Z))) -> mark(sel(X, Z))
active(f(X)) -> f(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(g(X)) -> g(active(X))
active(s(X)) -> s(active(X))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
f(mark(X)) -> mark(f(X))
f(ok(X)) -> ok(f(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
g(mark(X)) -> mark(g(X))
g(ok(X)) -> ok(g(X))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(f(X)) -> f(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(g(X)) -> g(proper(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))


Strategy:

innermost




As we are in the innermost case, we can delete all 30 non-usable-rules.


   R
DPs
       →DP Problem 1
UsableRules
       →DP Problem 2
UsableRules
       →DP Problem 3
UsableRules
           →DP Problem 11
Size-Change Principle
       →DP Problem 4
UsableRules
       →DP Problem 5
UsableRules
       →DP Problem 6
UsableRules
       →DP Problem 7
UsableRules
       →DP Problem 8
UsableRules


Dependency Pairs:

CONS(ok(X1), ok(X2)) -> CONS(X1, X2)
CONS(mark(X1), X2) -> CONS(X1, X2)


Rule:

none


Strategy:

innermost




We number the DPs as follows:
  1. CONS(ok(X1), ok(X2)) -> CONS(X1, X2)
  2. CONS(mark(X1), X2) -> CONS(X1, X2)
and get the following Size-Change Graph(s):
{1, 2} , {1, 2}
1>1
2>2
{1, 2} , {1, 2}
1>1
2=2

which lead(s) to this/these maximal multigraph(s):
{1, 2} , {1, 2}
1>1
2>2
{1, 2} , {1, 2}
1>1
2=2

DP: empty set
Oriented Rules: none

We used the order Homeomorphic Embedding Order with Non-Strict Precedence.
trivial

with Argument Filtering System:
mark(x1) -> mark(x1)
ok(x1) -> ok(x1)

We obtain no new DP problems.


   R
DPs
       →DP Problem 1
UsableRules
       →DP Problem 2
UsableRules
       →DP Problem 3
UsableRules
       →DP Problem 4
Usable Rules (Innermost)
       →DP Problem 5
UsableRules
       →DP Problem 6
UsableRules
       →DP Problem 7
UsableRules
       →DP Problem 8
UsableRules


Dependency Pairs:

G(ok(X)) -> G(X)
G(mark(X)) -> G(X)


Rules:


active(f(X)) -> mark(cons(X, f(g(X))))
active(g(0)) -> mark(s(0))
active(g(s(X))) -> mark(s(s(g(X))))
active(sel(0, cons(X, Y))) -> mark(X)
active(sel(s(X), cons(Y, Z))) -> mark(sel(X, Z))
active(f(X)) -> f(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(g(X)) -> g(active(X))
active(s(X)) -> s(active(X))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
f(mark(X)) -> mark(f(X))
f(ok(X)) -> ok(f(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
g(mark(X)) -> mark(g(X))
g(ok(X)) -> ok(g(X))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(f(X)) -> f(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(g(X)) -> g(proper(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))


Strategy:

innermost




As we are in the innermost case, we can delete all 30 non-usable-rules.


   R
DPs
       →DP Problem 1
UsableRules
       →DP Problem 2
UsableRules
       →DP Problem 3
UsableRules
       →DP Problem 4
UsableRules
           →DP Problem 12
Size-Change Principle
       →DP Problem 5
UsableRules
       →DP Problem 6
UsableRules
       →DP Problem 7
UsableRules
       →DP Problem 8
UsableRules


Dependency Pairs:

G(ok(X)) -> G(X)
G(mark(X)) -> G(X)


Rule:

none


Strategy:

innermost




We number the DPs as follows:
  1. G(ok(X)) -> G(X)
  2. G(mark(X)) -> G(X)
and get the following Size-Change Graph(s):
{1, 2} , {1, 2}
1>1

which lead(s) to this/these maximal multigraph(s):
{1, 2} , {1, 2}
1>1

DP: empty set
Oriented Rules: none

We used the order Homeomorphic Embedding Order with Non-Strict Precedence.
trivial

with Argument Filtering System:
mark(x1) -> mark(x1)
ok(x1) -> ok(x1)

We obtain no new DP problems.


   R
DPs
       →DP Problem 1
UsableRules
       →DP Problem 2
UsableRules
       →DP Problem 3
UsableRules
       →DP Problem 4
UsableRules
       →DP Problem 5
Usable Rules (Innermost)
       →DP Problem 6
UsableRules
       →DP Problem 7
UsableRules
       →DP Problem 8
UsableRules


Dependency Pairs:

S(ok(X)) -> S(X)
S(mark(X)) -> S(X)


Rules:


active(f(X)) -> mark(cons(X, f(g(X))))
active(g(0)) -> mark(s(0))
active(g(s(X))) -> mark(s(s(g(X))))
active(sel(0, cons(X, Y))) -> mark(X)
active(sel(s(X), cons(Y, Z))) -> mark(sel(X, Z))
active(f(X)) -> f(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(g(X)) -> g(active(X))
active(s(X)) -> s(active(X))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
f(mark(X)) -> mark(f(X))
f(ok(X)) -> ok(f(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
g(mark(X)) -> mark(g(X))
g(ok(X)) -> ok(g(X))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(f(X)) -> f(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(g(X)) -> g(proper(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))


Strategy:

innermost




As we are in the innermost case, we can delete all 30 non-usable-rules.


   R
DPs
       →DP Problem 1
UsableRules
       →DP Problem 2
UsableRules
       →DP Problem 3
UsableRules
       →DP Problem 4
UsableRules
       →DP Problem 5
UsableRules
           →DP Problem 13
Size-Change Principle
       →DP Problem 6
UsableRules
       →DP Problem 7
UsableRules
       →DP Problem 8
UsableRules


Dependency Pairs:

S(ok(X)) -> S(X)
S(mark(X)) -> S(X)


Rule:

none


Strategy:

innermost




We number the DPs as follows:
  1. S(ok(X)) -> S(X)
  2. S(mark(X)) -> S(X)
and get the following Size-Change Graph(s):
{1, 2} , {1, 2}
1>1

which lead(s) to this/these maximal multigraph(s):
{1, 2} , {1, 2}
1>1

DP: empty set
Oriented Rules: none

We used the order Homeomorphic Embedding Order with Non-Strict Precedence.
trivial

with Argument Filtering System:
mark(x1) -> mark(x1)
ok(x1) -> ok(x1)

We obtain no new DP problems.


   R
DPs
       →DP Problem 1
UsableRules
       →DP Problem 2
UsableRules
       →DP Problem 3
UsableRules
       →DP Problem 4
UsableRules
       →DP Problem 5
UsableRules
       →DP Problem 6
Usable Rules (Innermost)
       →DP Problem 7
UsableRules
       →DP Problem 8
UsableRules


Dependency Pairs:

ACTIVE(sel(X1, X2)) -> ACTIVE(X2)
ACTIVE(sel(X1, X2)) -> ACTIVE(X1)
ACTIVE(s(X)) -> ACTIVE(X)
ACTIVE(g(X)) -> ACTIVE(X)
ACTIVE(cons(X1, X2)) -> ACTIVE(X1)
ACTIVE(f(X)) -> ACTIVE(X)


Rules:


active(f(X)) -> mark(cons(X, f(g(X))))
active(g(0)) -> mark(s(0))
active(g(s(X))) -> mark(s(s(g(X))))
active(sel(0, cons(X, Y))) -> mark(X)
active(sel(s(X), cons(Y, Z))) -> mark(sel(X, Z))
active(f(X)) -> f(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(g(X)) -> g(active(X))
active(s(X)) -> s(active(X))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
f(mark(X)) -> mark(f(X))
f(ok(X)) -> ok(f(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
g(mark(X)) -> mark(g(X))
g(ok(X)) -> ok(g(X))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(f(X)) -> f(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(g(X)) -> g(proper(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))


Strategy:

innermost




As we are in the innermost case, we can delete all 30 non-usable-rules.


   R
DPs
       →DP Problem 1
UsableRules
       →DP Problem 2
UsableRules
       →DP Problem 3
UsableRules
       →DP Problem 4
UsableRules
       →DP Problem 5
UsableRules
       →DP Problem 6
UsableRules
           →DP Problem 14
Size-Change Principle
       →DP Problem 7
UsableRules
       →DP Problem 8
UsableRules


Dependency Pairs:

ACTIVE(sel(X1, X2)) -> ACTIVE(X2)
ACTIVE(sel(X1, X2)) -> ACTIVE(X1)
ACTIVE(s(X)) -> ACTIVE(X)
ACTIVE(g(X)) -> ACTIVE(X)
ACTIVE(cons(X1, X2)) -> ACTIVE(X1)
ACTIVE(f(X)) -> ACTIVE(X)


Rule:

none


Strategy:

innermost




We number the DPs as follows:
  1. ACTIVE(sel(X1, X2)) -> ACTIVE(X2)
  2. ACTIVE(sel(X1, X2)) -> ACTIVE(X1)
  3. ACTIVE(s(X)) -> ACTIVE(X)
  4. ACTIVE(g(X)) -> ACTIVE(X)
  5. ACTIVE(cons(X1, X2)) -> ACTIVE(X1)
  6. ACTIVE(f(X)) -> ACTIVE(X)
and get the following Size-Change Graph(s):
{1, 2, 3, 4, 5, 6} , {1, 2, 3, 4, 5, 6}
1>1

which lead(s) to this/these maximal multigraph(s):
{1, 2, 3, 4, 5, 6} , {1, 2, 3, 4, 5, 6}
1>1

DP: empty set
Oriented Rules: none

We used the order Homeomorphic Embedding Order with Non-Strict Precedence.
trivial

with Argument Filtering System:
g(x1) -> g(x1)
cons(x1, x2) -> cons(x1, x2)
s(x1) -> s(x1)
sel(x1, x2) -> sel(x1, x2)
f(x1) -> f(x1)

We obtain no new DP problems.


   R
DPs
       →DP Problem 1
UsableRules
       →DP Problem 2
UsableRules
       →DP Problem 3
UsableRules
       →DP Problem 4
UsableRules
       →DP Problem 5
UsableRules
       →DP Problem 6
UsableRules
       →DP Problem 7
Usable Rules (Innermost)
       →DP Problem 8
UsableRules


Dependency Pairs:

PROPER(sel(X1, X2)) -> PROPER(X2)
PROPER(sel(X1, X2)) -> PROPER(X1)
PROPER(s(X)) -> PROPER(X)
PROPER(g(X)) -> PROPER(X)
PROPER(cons(X1, X2)) -> PROPER(X2)
PROPER(cons(X1, X2)) -> PROPER(X1)
PROPER(f(X)) -> PROPER(X)


Rules:


active(f(X)) -> mark(cons(X, f(g(X))))
active(g(0)) -> mark(s(0))
active(g(s(X))) -> mark(s(s(g(X))))
active(sel(0, cons(X, Y))) -> mark(X)
active(sel(s(X), cons(Y, Z))) -> mark(sel(X, Z))
active(f(X)) -> f(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(g(X)) -> g(active(X))
active(s(X)) -> s(active(X))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
f(mark(X)) -> mark(f(X))
f(ok(X)) -> ok(f(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
g(mark(X)) -> mark(g(X))
g(ok(X)) -> ok(g(X))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(f(X)) -> f(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(g(X)) -> g(proper(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))


Strategy:

innermost




As we are in the innermost case, we can delete all 30 non-usable-rules.


   R
DPs
       →DP Problem 1
UsableRules
       →DP Problem 2
UsableRules
       →DP Problem 3
UsableRules
       →DP Problem 4
UsableRules
       →DP Problem 5
UsableRules
       →DP Problem 6
UsableRules
       →DP Problem 7
UsableRules
           →DP Problem 15
Size-Change Principle
       →DP Problem 8
UsableRules


Dependency Pairs:

PROPER(sel(X1, X2)) -> PROPER(X2)
PROPER(sel(X1, X2)) -> PROPER(X1)
PROPER(s(X)) -> PROPER(X)
PROPER(g(X)) -> PROPER(X)
PROPER(cons(X1, X2)) -> PROPER(X2)
PROPER(cons(X1, X2)) -> PROPER(X1)
PROPER(f(X)) -> PROPER(X)


Rule:

none


Strategy:

innermost




We number the DPs as follows:
  1. PROPER(sel(X1, X2)) -> PROPER(X2)
  2. PROPER(sel(X1, X2)) -> PROPER(X1)
  3. PROPER(s(X)) -> PROPER(X)
  4. PROPER(g(X)) -> PROPER(X)
  5. PROPER(cons(X1, X2)) -> PROPER(X2)
  6. PROPER(cons(X1, X2)) -> PROPER(X1)
  7. PROPER(f(X)) -> PROPER(X)
and get the following Size-Change Graph(s):
{1, 2, 3, 4, 5, 6, 7} , {1, 2, 3, 4, 5, 6, 7}
1>1

which lead(s) to this/these maximal multigraph(s):
{1, 2, 3, 4, 5, 6, 7} , {1, 2, 3, 4, 5, 6, 7}
1>1

DP: empty set
Oriented Rules: none

We used the order Homeomorphic Embedding Order with Non-Strict Precedence.
trivial

with Argument Filtering System:
g(x1) -> g(x1)
cons(x1, x2) -> cons(x1, x2)
sel(x1, x2) -> sel(x1, x2)
s(x1) -> s(x1)
f(x1) -> f(x1)

We obtain no new DP problems.


   R
DPs
       →DP Problem 1
UsableRules
       →DP Problem 2
UsableRules
       →DP Problem 3
UsableRules
       →DP Problem 4
UsableRules
       →DP Problem 5
UsableRules
       →DP Problem 6
UsableRules
       →DP Problem 7
UsableRules
       →DP Problem 8
Usable Rules (Innermost)


Dependency Pairs:

TOP(ok(X)) -> TOP(active(X))
TOP(mark(X)) -> TOP(proper(X))


Rules:


active(f(X)) -> mark(cons(X, f(g(X))))
active(g(0)) -> mark(s(0))
active(g(s(X))) -> mark(s(s(g(X))))
active(sel(0, cons(X, Y))) -> mark(X)
active(sel(s(X), cons(Y, Z))) -> mark(sel(X, Z))
active(f(X)) -> f(active(X))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(g(X)) -> g(active(X))
active(s(X)) -> s(active(X))
active(sel(X1, X2)) -> sel(active(X1), X2)
active(sel(X1, X2)) -> sel(X1, active(X2))
f(mark(X)) -> mark(f(X))
f(ok(X)) -> ok(f(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
g(mark(X)) -> mark(g(X))
g(ok(X)) -> ok(g(X))
s(mark(X)) -> mark(s(X))
s(ok(X)) -> ok(s(X))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(f(X)) -> f(proper(X))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(g(X)) -> g(proper(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))


Strategy:

innermost




As we are in the innermost case, we can delete all 2 non-usable-rules.


   R
DPs
       →DP Problem 1
UsableRules
       →DP Problem 2
UsableRules
       →DP Problem 3
UsableRules
       →DP Problem 4
UsableRules
       →DP Problem 5
UsableRules
       →DP Problem 6
UsableRules
       →DP Problem 7
UsableRules
       →DP Problem 8
UsableRules
           →DP Problem 16
Narrowing Transformation


Dependency Pairs:

TOP(ok(X)) -> TOP(active(X))
TOP(mark(X)) -> TOP(proper(X))


Rules:


active(cons(X1, X2)) -> cons(active(X1), X2)
active(g(X)) -> g(active(X))
active(sel(0, cons(X, Y))) -> mark(X)
active(sel(X1, X2)) -> sel(X1, active(X2))
active(f(X)) -> f(active(X))
active(f(X)) -> mark(cons(X, f(g(X))))
active(g(s(X))) -> mark(s(s(g(X))))
active(sel(s(X), cons(Y, Z))) -> mark(sel(X, Z))
active(s(X)) -> s(active(X))
active(g(0)) -> mark(s(0))
active(sel(X1, X2)) -> sel(active(X1), X2)
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
g(ok(X)) -> ok(g(X))
g(mark(X)) -> mark(g(X))
f(mark(X)) -> mark(f(X))
f(ok(X)) -> ok(f(X))
s(ok(X)) -> ok(s(X))
s(mark(X)) -> mark(s(X))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(g(X)) -> g(proper(X))
proper(f(X)) -> f(proper(X))
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
proper(s(X)) -> s(proper(X))
proper(0) -> ok(0)


Strategy:

innermost




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

TOP(ok(X)) -> TOP(active(X))
11 new Dependency Pairs are created:

TOP(ok(cons(X1', X2'))) -> TOP(cons(active(X1'), X2'))
TOP(ok(g(X''))) -> TOP(g(active(X'')))
TOP(ok(sel(0, cons(X'', Y')))) -> TOP(mark(X''))
TOP(ok(sel(X1', X2'))) -> TOP(sel(X1', active(X2')))
TOP(ok(f(X''))) -> TOP(f(active(X'')))
TOP(ok(f(X''))) -> TOP(mark(cons(X'', f(g(X'')))))
TOP(ok(g(s(X'')))) -> TOP(mark(s(s(g(X'')))))
TOP(ok(sel(s(X''), cons(Y', Z')))) -> TOP(mark(sel(X'', Z')))
TOP(ok(s(X''))) -> TOP(s(active(X'')))
TOP(ok(g(0))) -> TOP(mark(s(0)))
TOP(ok(sel(X1', X2'))) -> TOP(sel(active(X1'), X2'))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
UsableRules
       →DP Problem 2
UsableRules
       →DP Problem 3
UsableRules
       →DP Problem 4
UsableRules
       →DP Problem 5
UsableRules
       →DP Problem 6
UsableRules
       →DP Problem 7
UsableRules
       →DP Problem 8
UsableRules
           →DP Problem 16
Nar
             ...
               →DP Problem 17
Narrowing Transformation


Dependency Pairs:

TOP(ok(sel(X1', X2'))) -> TOP(sel(active(X1'), X2'))
TOP(ok(g(0))) -> TOP(mark(s(0)))
TOP(ok(s(X''))) -> TOP(s(active(X'')))
TOP(ok(sel(s(X''), cons(Y', Z')))) -> TOP(mark(sel(X'', Z')))
TOP(ok(g(s(X'')))) -> TOP(mark(s(s(g(X'')))))
TOP(ok(f(X''))) -> TOP(mark(cons(X'', f(g(X'')))))
TOP(ok(f(X''))) -> TOP(f(active(X'')))
TOP(ok(sel(X1', X2'))) -> TOP(sel(X1', active(X2')))
TOP(ok(sel(0, cons(X'', Y')))) -> TOP(mark(X''))
TOP(ok(g(X''))) -> TOP(g(active(X'')))
TOP(ok(cons(X1', X2'))) -> TOP(cons(active(X1'), X2'))
TOP(mark(X)) -> TOP(proper(X))


Rules:


active(cons(X1, X2)) -> cons(active(X1), X2)
active(g(X)) -> g(active(X))
active(sel(0, cons(X, Y))) -> mark(X)
active(sel(X1, X2)) -> sel(X1, active(X2))
active(f(X)) -> f(active(X))
active(f(X)) -> mark(cons(X, f(g(X))))
active(g(s(X))) -> mark(s(s(g(X))))
active(sel(s(X), cons(Y, Z))) -> mark(sel(X, Z))
active(s(X)) -> s(active(X))
active(g(0)) -> mark(s(0))
active(sel(X1, X2)) -> sel(active(X1), X2)
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
g(ok(X)) -> ok(g(X))
g(mark(X)) -> mark(g(X))
f(mark(X)) -> mark(f(X))
f(ok(X)) -> ok(f(X))
s(ok(X)) -> ok(s(X))
s(mark(X)) -> mark(s(X))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(g(X)) -> g(proper(X))
proper(f(X)) -> f(proper(X))
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
proper(s(X)) -> s(proper(X))
proper(0) -> ok(0)


Strategy:

innermost




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

TOP(mark(X)) -> TOP(proper(X))
six new Dependency Pairs are created:

TOP(mark(cons(X1', X2'))) -> TOP(cons(proper(X1'), proper(X2')))
TOP(mark(g(X''))) -> TOP(g(proper(X'')))
TOP(mark(f(X''))) -> TOP(f(proper(X'')))
TOP(mark(sel(X1', X2'))) -> TOP(sel(proper(X1'), proper(X2')))
TOP(mark(s(X''))) -> TOP(s(proper(X'')))
TOP(mark(0)) -> TOP(ok(0))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
UsableRules
       →DP Problem 2
UsableRules
       →DP Problem 3
UsableRules
       →DP Problem 4
UsableRules
       →DP Problem 5
UsableRules
       →DP Problem 6
UsableRules
       →DP Problem 7
UsableRules
       →DP Problem 8
UsableRules
           →DP Problem 16
Nar
             ...
               →DP Problem 18
Remaining Obligation(s)




The following remains to be proven:
Dependency Pairs:

TOP(mark(f(X''))) -> TOP(f(proper(X'')))
TOP(mark(g(X''))) -> TOP(g(proper(X'')))
TOP(ok(g(0))) -> TOP(mark(s(0)))
TOP(ok(s(X''))) -> TOP(s(active(X'')))
TOP(mark(sel(X1', X2'))) -> TOP(sel(proper(X1'), proper(X2')))
TOP(ok(sel(s(X''), cons(Y', Z')))) -> TOP(mark(sel(X'', Z')))
TOP(mark(s(X''))) -> TOP(s(proper(X'')))
TOP(ok(g(s(X'')))) -> TOP(mark(s(s(g(X'')))))
TOP(ok(f(X''))) -> TOP(mark(cons(X'', f(g(X'')))))
TOP(ok(f(X''))) -> TOP(f(active(X'')))
TOP(ok(sel(X1', X2'))) -> TOP(sel(X1', active(X2')))
TOP(mark(cons(X1', X2'))) -> TOP(cons(proper(X1'), proper(X2')))
TOP(ok(sel(0, cons(X'', Y')))) -> TOP(mark(X''))
TOP(ok(g(X''))) -> TOP(g(active(X'')))
TOP(ok(cons(X1', X2'))) -> TOP(cons(active(X1'), X2'))
TOP(ok(sel(X1', X2'))) -> TOP(sel(active(X1'), X2'))


Rules:


active(cons(X1, X2)) -> cons(active(X1), X2)
active(g(X)) -> g(active(X))
active(sel(0, cons(X, Y))) -> mark(X)
active(sel(X1, X2)) -> sel(X1, active(X2))
active(f(X)) -> f(active(X))
active(f(X)) -> mark(cons(X, f(g(X))))
active(g(s(X))) -> mark(s(s(g(X))))
active(sel(s(X), cons(Y, Z))) -> mark(sel(X, Z))
active(s(X)) -> s(active(X))
active(g(0)) -> mark(s(0))
active(sel(X1, X2)) -> sel(active(X1), X2)
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
g(ok(X)) -> ok(g(X))
g(mark(X)) -> mark(g(X))
f(mark(X)) -> mark(f(X))
f(ok(X)) -> ok(f(X))
s(ok(X)) -> ok(s(X))
s(mark(X)) -> mark(s(X))
sel(X1, mark(X2)) -> mark(sel(X1, X2))
sel(mark(X1), X2) -> mark(sel(X1, X2))
sel(ok(X1), ok(X2)) -> ok(sel(X1, X2))
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(g(X)) -> g(proper(X))
proper(f(X)) -> f(proper(X))
proper(sel(X1, X2)) -> sel(proper(X1), proper(X2))
proper(s(X)) -> s(proper(X))
proper(0) -> ok(0)


Strategy:

innermost



The Proof could not be continued due to a Timeout.
Innermost Termination of R could not be shown.
Duration:
1:01 minutes