Term Rewriting System R:
[Z, X, Y, X1, X2]
active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))

Termination of R to be shown.



   R
Dependency Pair Analysis



R contains the following Dependency Pairs:

ACTIVE(fst(s(X), cons(Y, Z))) -> CONS(Y, fst(X, Z))
ACTIVE(fst(s(X), cons(Y, Z))) -> FST(X, Z)
ACTIVE(from(X)) -> CONS(X, from(s(X)))
ACTIVE(from(X)) -> FROM(s(X))
ACTIVE(from(X)) -> S(X)
ACTIVE(add(s(X), Y)) -> S(add(X, Y))
ACTIVE(add(s(X), Y)) -> ADD(X, Y)
ACTIVE(len(cons(X, Z))) -> S(len(Z))
ACTIVE(len(cons(X, Z))) -> LEN(Z)
ACTIVE(cons(X1, X2)) -> CONS(active(X1), X2)
ACTIVE(cons(X1, X2)) -> ACTIVE(X1)
ACTIVE(fst(X1, X2)) -> FST(active(X1), X2)
ACTIVE(fst(X1, X2)) -> ACTIVE(X1)
ACTIVE(fst(X1, X2)) -> FST(X1, active(X2))
ACTIVE(fst(X1, X2)) -> ACTIVE(X2)
ACTIVE(from(X)) -> FROM(active(X))
ACTIVE(from(X)) -> ACTIVE(X)
ACTIVE(add(X1, X2)) -> ADD(active(X1), X2)
ACTIVE(add(X1, X2)) -> ACTIVE(X1)
ACTIVE(add(X1, X2)) -> ADD(X1, active(X2))
ACTIVE(add(X1, X2)) -> ACTIVE(X2)
ACTIVE(len(X)) -> LEN(active(X))
ACTIVE(len(X)) -> ACTIVE(X)
CONS(mark(X1), X2) -> CONS(X1, X2)
CONS(ok(X1), ok(X2)) -> CONS(X1, X2)
FST(mark(X1), X2) -> FST(X1, X2)
FST(X1, mark(X2)) -> FST(X1, X2)
FST(ok(X1), ok(X2)) -> FST(X1, X2)
FROM(mark(X)) -> FROM(X)
FROM(ok(X)) -> FROM(X)
ADD(mark(X1), X2) -> ADD(X1, X2)
ADD(X1, mark(X2)) -> ADD(X1, X2)
ADD(ok(X1), ok(X2)) -> ADD(X1, X2)
LEN(mark(X)) -> LEN(X)
LEN(ok(X)) -> LEN(X)
PROPER(s(X)) -> S(proper(X))
PROPER(s(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(fst(X1, X2)) -> FST(proper(X1), proper(X2))
PROPER(fst(X1, X2)) -> PROPER(X1)
PROPER(fst(X1, X2)) -> PROPER(X2)
PROPER(from(X)) -> FROM(proper(X))
PROPER(from(X)) -> PROPER(X)
PROPER(add(X1, X2)) -> ADD(proper(X1), proper(X2))
PROPER(add(X1, X2)) -> PROPER(X1)
PROPER(add(X1, X2)) -> PROPER(X2)
PROPER(len(X)) -> LEN(proper(X))
PROPER(len(X)) -> PROPER(X)
S(ok(X)) -> S(X)
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 nine SCCs.


   R
DPs
       →DP Problem 1
Polynomial Ordering
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pairs:

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


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pair can be strictly oriented:

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


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(mark(x1))=  0  
  POL(ok(x1))=  1 + x1  
  POL(CONS(x1, x2))=  x2  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
           →DP Problem 10
Polynomial Ordering
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pair:

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


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pair can be strictly oriented:

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


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(mark(x1))=  1 + x1  
  POL(CONS(x1, x2))=  x1  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
           →DP Problem 10
Polo
             ...
               →DP Problem 11
Dependency Graph
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pair:


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





Using the Dependency Graph resulted in no new DP problems.


   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polynomial Ordering
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pairs:

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


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pair can be strictly oriented:

FST(ok(X1), ok(X2)) -> FST(X1, X2)


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(FST(x1, x2))=  x1  
  POL(mark(x1))=  x1  
  POL(ok(x1))=  1 + x1  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
           →DP Problem 12
Polynomial Ordering
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pairs:

FST(X1, mark(X2)) -> FST(X1, X2)
FST(mark(X1), X2) -> FST(X1, X2)


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pair can be strictly oriented:

FST(mark(X1), X2) -> FST(X1, X2)


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(FST(x1, x2))=  x1  
  POL(mark(x1))=  1 + x1  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
           →DP Problem 12
Polo
             ...
               →DP Problem 13
Polynomial Ordering
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pair:

FST(X1, mark(X2)) -> FST(X1, X2)


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pair can be strictly oriented:

FST(X1, mark(X2)) -> FST(X1, X2)


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(FST(x1, x2))=  x2  
  POL(mark(x1))=  1 + x1  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
           →DP Problem 12
Polo
             ...
               →DP Problem 14
Dependency Graph
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pair:


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





Using the Dependency Graph resulted in no new DP problems.


   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polynomial Ordering
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pairs:

FROM(ok(X)) -> FROM(X)
FROM(mark(X)) -> FROM(X)


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pair can be strictly oriented:

FROM(ok(X)) -> FROM(X)


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(FROM(x1))=  x1  
  POL(mark(x1))=  x1  
  POL(ok(x1))=  1 + x1  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
           →DP Problem 15
Polynomial Ordering
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pair:

FROM(mark(X)) -> FROM(X)


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pair can be strictly oriented:

FROM(mark(X)) -> FROM(X)


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(FROM(x1))=  x1  
  POL(mark(x1))=  1 + x1  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
           →DP Problem 15
Polo
             ...
               →DP Problem 16
Dependency Graph
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pair:


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





Using the Dependency Graph resulted in no new DP problems.


   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polynomial Ordering
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pair:

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


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pair can be strictly oriented:

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


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(S(x1))=  x1  
  POL(ok(x1))=  1 + x1  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
           →DP Problem 17
Dependency Graph
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pair:


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





Using the Dependency Graph resulted in no new DP problems.


   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polynomial Ordering
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pairs:

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


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pair can be strictly oriented:

ADD(ok(X1), ok(X2)) -> ADD(X1, X2)


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(mark(x1))=  x1  
  POL(ok(x1))=  1 + x1  
  POL(ADD(x1, x2))=  x1  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
           →DP Problem 18
Polynomial Ordering
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pairs:

ADD(X1, mark(X2)) -> ADD(X1, X2)
ADD(mark(X1), X2) -> ADD(X1, X2)


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pair can be strictly oriented:

ADD(mark(X1), X2) -> ADD(X1, X2)


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(mark(x1))=  1 + x1  
  POL(ADD(x1, x2))=  x1  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
           →DP Problem 18
Polo
             ...
               →DP Problem 19
Polynomial Ordering
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pair:

ADD(X1, mark(X2)) -> ADD(X1, X2)


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pair can be strictly oriented:

ADD(X1, mark(X2)) -> ADD(X1, X2)


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(mark(x1))=  1 + x1  
  POL(ADD(x1, x2))=  x2  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
           →DP Problem 18
Polo
             ...
               →DP Problem 20
Dependency Graph
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pair:


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





Using the Dependency Graph resulted in no new DP problems.


   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polynomial Ordering
       →DP Problem 7
Polo
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pairs:

LEN(ok(X)) -> LEN(X)
LEN(mark(X)) -> LEN(X)


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pair can be strictly oriented:

LEN(ok(X)) -> LEN(X)


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(LEN(x1))=  x1  
  POL(mark(x1))=  x1  
  POL(ok(x1))=  1 + x1  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
           →DP Problem 21
Polynomial Ordering
       →DP Problem 7
Polo
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pair:

LEN(mark(X)) -> LEN(X)


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pair can be strictly oriented:

LEN(mark(X)) -> LEN(X)


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(LEN(x1))=  x1  
  POL(mark(x1))=  1 + x1  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
           →DP Problem 21
Polo
             ...
               →DP Problem 22
Dependency Graph
       →DP Problem 7
Polo
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pair:


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





Using the Dependency Graph resulted in no new DP problems.


   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polynomial Ordering
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pairs:

ACTIVE(len(X)) -> ACTIVE(X)
ACTIVE(add(X1, X2)) -> ACTIVE(X2)
ACTIVE(add(X1, X2)) -> ACTIVE(X1)
ACTIVE(from(X)) -> ACTIVE(X)
ACTIVE(fst(X1, X2)) -> ACTIVE(X2)
ACTIVE(fst(X1, X2)) -> ACTIVE(X1)
ACTIVE(cons(X1, X2)) -> ACTIVE(X1)


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pairs can be strictly oriented:

ACTIVE(fst(X1, X2)) -> ACTIVE(X2)
ACTIVE(fst(X1, X2)) -> ACTIVE(X1)


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(from(x1))=  x1  
  POL(ACTIVE(x1))=  x1  
  POL(len(x1))=  x1  
  POL(cons(x1, x2))=  x1  
  POL(fst(x1, x2))=  1 + x1 + x2  
  POL(add(x1, x2))=  x1 + x2  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
           →DP Problem 23
Polynomial Ordering
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pairs:

ACTIVE(len(X)) -> ACTIVE(X)
ACTIVE(add(X1, X2)) -> ACTIVE(X2)
ACTIVE(add(X1, X2)) -> ACTIVE(X1)
ACTIVE(from(X)) -> ACTIVE(X)
ACTIVE(cons(X1, X2)) -> ACTIVE(X1)


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pair can be strictly oriented:

ACTIVE(cons(X1, X2)) -> ACTIVE(X1)


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(from(x1))=  x1  
  POL(ACTIVE(x1))=  x1  
  POL(len(x1))=  x1  
  POL(cons(x1, x2))=  1 + x1  
  POL(add(x1, x2))=  x1 + x2  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
           →DP Problem 23
Polo
             ...
               →DP Problem 24
Polynomial Ordering
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pairs:

ACTIVE(len(X)) -> ACTIVE(X)
ACTIVE(add(X1, X2)) -> ACTIVE(X2)
ACTIVE(add(X1, X2)) -> ACTIVE(X1)
ACTIVE(from(X)) -> ACTIVE(X)


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pair can be strictly oriented:

ACTIVE(len(X)) -> ACTIVE(X)


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(from(x1))=  x1  
  POL(ACTIVE(x1))=  x1  
  POL(len(x1))=  1 + x1  
  POL(add(x1, x2))=  x1 + x2  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
           →DP Problem 23
Polo
             ...
               →DP Problem 25
Polynomial Ordering
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pairs:

ACTIVE(add(X1, X2)) -> ACTIVE(X2)
ACTIVE(add(X1, X2)) -> ACTIVE(X1)
ACTIVE(from(X)) -> ACTIVE(X)


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pairs can be strictly oriented:

ACTIVE(add(X1, X2)) -> ACTIVE(X2)
ACTIVE(add(X1, X2)) -> ACTIVE(X1)


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(from(x1))=  x1  
  POL(ACTIVE(x1))=  x1  
  POL(add(x1, x2))=  1 + x1 + x2  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
           →DP Problem 23
Polo
             ...
               →DP Problem 26
Polynomial Ordering
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pair:

ACTIVE(from(X)) -> ACTIVE(X)


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pair can be strictly oriented:

ACTIVE(from(X)) -> ACTIVE(X)


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(from(x1))=  1 + x1  
  POL(ACTIVE(x1))=  x1  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
           →DP Problem 23
Polo
             ...
               →DP Problem 27
Dependency Graph
       →DP Problem 8
Polo
       →DP Problem 9
Polo


Dependency Pair:


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





Using the Dependency Graph resulted in no new DP problems.


   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polynomial Ordering
       →DP Problem 9
Polo


Dependency Pairs:

PROPER(len(X)) -> PROPER(X)
PROPER(add(X1, X2)) -> PROPER(X2)
PROPER(add(X1, X2)) -> PROPER(X1)
PROPER(from(X)) -> PROPER(X)
PROPER(fst(X1, X2)) -> PROPER(X2)
PROPER(fst(X1, X2)) -> PROPER(X1)
PROPER(cons(X1, X2)) -> PROPER(X2)
PROPER(cons(X1, X2)) -> PROPER(X1)
PROPER(s(X)) -> PROPER(X)


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pairs can be strictly oriented:

PROPER(fst(X1, X2)) -> PROPER(X2)
PROPER(fst(X1, X2)) -> PROPER(X1)


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(from(x1))=  x1  
  POL(PROPER(x1))=  x1  
  POL(len(x1))=  x1  
  POL(cons(x1, x2))=  x1 + x2  
  POL(fst(x1, x2))=  1 + x1 + x2  
  POL(s(x1))=  x1  
  POL(add(x1, x2))=  x1 + x2  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
           →DP Problem 28
Polynomial Ordering
       →DP Problem 9
Polo


Dependency Pairs:

PROPER(len(X)) -> PROPER(X)
PROPER(add(X1, X2)) -> PROPER(X2)
PROPER(add(X1, X2)) -> PROPER(X1)
PROPER(from(X)) -> PROPER(X)
PROPER(cons(X1, X2)) -> PROPER(X2)
PROPER(cons(X1, X2)) -> PROPER(X1)
PROPER(s(X)) -> PROPER(X)


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pairs can be strictly oriented:

PROPER(cons(X1, X2)) -> PROPER(X2)
PROPER(cons(X1, X2)) -> PROPER(X1)


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(from(x1))=  x1  
  POL(PROPER(x1))=  x1  
  POL(len(x1))=  x1  
  POL(cons(x1, x2))=  1 + x1 + x2  
  POL(s(x1))=  x1  
  POL(add(x1, x2))=  x1 + x2  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
           →DP Problem 28
Polo
             ...
               →DP Problem 29
Polynomial Ordering
       →DP Problem 9
Polo


Dependency Pairs:

PROPER(len(X)) -> PROPER(X)
PROPER(add(X1, X2)) -> PROPER(X2)
PROPER(add(X1, X2)) -> PROPER(X1)
PROPER(from(X)) -> PROPER(X)
PROPER(s(X)) -> PROPER(X)


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pair can be strictly oriented:

PROPER(s(X)) -> PROPER(X)


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(from(x1))=  x1  
  POL(PROPER(x1))=  x1  
  POL(len(x1))=  x1  
  POL(s(x1))=  1 + x1  
  POL(add(x1, x2))=  x1 + x2  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
           →DP Problem 28
Polo
             ...
               →DP Problem 30
Polynomial Ordering
       →DP Problem 9
Polo


Dependency Pairs:

PROPER(len(X)) -> PROPER(X)
PROPER(add(X1, X2)) -> PROPER(X2)
PROPER(add(X1, X2)) -> PROPER(X1)
PROPER(from(X)) -> PROPER(X)


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pair can be strictly oriented:

PROPER(len(X)) -> PROPER(X)


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(from(x1))=  x1  
  POL(PROPER(x1))=  x1  
  POL(len(x1))=  1 + x1  
  POL(add(x1, x2))=  x1 + x2  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
           →DP Problem 28
Polo
             ...
               →DP Problem 31
Polynomial Ordering
       →DP Problem 9
Polo


Dependency Pairs:

PROPER(add(X1, X2)) -> PROPER(X2)
PROPER(add(X1, X2)) -> PROPER(X1)
PROPER(from(X)) -> PROPER(X)


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pairs can be strictly oriented:

PROPER(add(X1, X2)) -> PROPER(X2)
PROPER(add(X1, X2)) -> PROPER(X1)


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(from(x1))=  x1  
  POL(PROPER(x1))=  x1  
  POL(add(x1, x2))=  1 + x1 + x2  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
           →DP Problem 28
Polo
             ...
               →DP Problem 32
Polynomial Ordering
       →DP Problem 9
Polo


Dependency Pair:

PROPER(from(X)) -> PROPER(X)


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pair can be strictly oriented:

PROPER(from(X)) -> PROPER(X)


There are no usable rules w.r.t. to the implicit AFS that need to be oriented.

Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(from(x1))=  1 + x1  
  POL(PROPER(x1))=  x1  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
           →DP Problem 28
Polo
             ...
               →DP Problem 33
Dependency Graph
       →DP Problem 9
Polo


Dependency Pair:


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





Using the Dependency Graph resulted in no new DP problems.


   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
       →DP Problem 9
Polynomial Ordering


Dependency Pairs:

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


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pair can be strictly oriented:

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


Additionally, the following usable rules w.r.t. to the implicit AFS can be oriented:

active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
s(ok(X)) -> ok(s(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))


Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(from(x1))=  1 + x1  
  POL(proper(x1))=  x1  
  POL(len(x1))=  1 + x1  
  POL(mark(x1))=  1 + x1  
  POL(ok(x1))=  x1  
  POL(TOP(x1))=  1 + x1  
  POL(add(x1, x2))=  1 + x1 + x2  
  POL(active(x1))=  x1  
  POL(0)=  0  
  POL(cons(x1, x2))=  x1  
  POL(nil)=  0  
  POL(fst(x1, x2))=  1 + x1 + x2  
  POL(s(x1))=  0  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
       →DP Problem 9
Polo
           →DP Problem 34
Polynomial Ordering


Dependency Pair:

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


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





The following dependency pair can be strictly oriented:

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


Additionally, the following usable rules w.r.t. to the implicit AFS can be oriented:

active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))


Used ordering: Polynomial ordering with Polynomial interpretation:
  POL(from(x1))=  x1  
  POL(active(x1))=  x1  
  POL(0)=  0  
  POL(cons(x1, x2))=  x1  
  POL(len(x1))=  x1  
  POL(nil)=  0  
  POL(fst(x1, x2))=  x1  
  POL(s(x1))=  0  
  POL(mark(x1))=  0  
  POL(ok(x1))=  1 + x1  
  POL(TOP(x1))=  x1  
  POL(add(x1, x2))=  x2  

resulting in one new DP problem.



   R
DPs
       →DP Problem 1
Polo
       →DP Problem 2
Polo
       →DP Problem 3
Polo
       →DP Problem 4
Polo
       →DP Problem 5
Polo
       →DP Problem 6
Polo
       →DP Problem 7
Polo
       →DP Problem 8
Polo
       →DP Problem 9
Polo
           →DP Problem 34
Polo
             ...
               →DP Problem 35
Dependency Graph


Dependency Pair:


Rules:


active(fst(0, Z)) -> mark(nil)
active(fst(s(X), cons(Y, Z))) -> mark(cons(Y, fst(X, Z)))
active(from(X)) -> mark(cons(X, from(s(X))))
active(add(0, X)) -> mark(X)
active(add(s(X), Y)) -> mark(s(add(X, Y)))
active(len(nil)) -> mark(0)
active(len(cons(X, Z))) -> mark(s(len(Z)))
active(cons(X1, X2)) -> cons(active(X1), X2)
active(fst(X1, X2)) -> fst(active(X1), X2)
active(fst(X1, X2)) -> fst(X1, active(X2))
active(from(X)) -> from(active(X))
active(add(X1, X2)) -> add(active(X1), X2)
active(add(X1, X2)) -> add(X1, active(X2))
active(len(X)) -> len(active(X))
cons(mark(X1), X2) -> mark(cons(X1, X2))
cons(ok(X1), ok(X2)) -> ok(cons(X1, X2))
fst(mark(X1), X2) -> mark(fst(X1, X2))
fst(X1, mark(X2)) -> mark(fst(X1, X2))
fst(ok(X1), ok(X2)) -> ok(fst(X1, X2))
from(mark(X)) -> mark(from(X))
from(ok(X)) -> ok(from(X))
add(mark(X1), X2) -> mark(add(X1, X2))
add(X1, mark(X2)) -> mark(add(X1, X2))
add(ok(X1), ok(X2)) -> ok(add(X1, X2))
len(mark(X)) -> mark(len(X))
len(ok(X)) -> ok(len(X))
proper(0) -> ok(0)
proper(s(X)) -> s(proper(X))
proper(nil) -> ok(nil)
proper(cons(X1, X2)) -> cons(proper(X1), proper(X2))
proper(fst(X1, X2)) -> fst(proper(X1), proper(X2))
proper(from(X)) -> from(proper(X))
proper(add(X1, X2)) -> add(proper(X1), proper(X2))
proper(len(X)) -> len(proper(X))
s(ok(X)) -> ok(s(X))
top(mark(X)) -> top(proper(X))
top(ok(X)) -> top(active(X))





Using the Dependency Graph resulted in no new DP problems.

Termination of R successfully shown.
Duration:
0:01 minutes