Term Rewriting System R:
[y, x, z]
le(0, y) -> true
le(s(x), 0) -> false
le(s(x), s(y)) -> le(x, y)
eq(0, 0) -> true
eq(0, s(y)) -> false
eq(s(x), 0) -> false
eq(s(x), s(y)) -> eq(x, y)
if(true, x, y) -> x
if(false, x, y) -> y
minsort(nil) -> nil
minsort(cons(x, y)) -> cons(min(x, y), minsort(del(min(x, y), cons(x, y))))
min(x, nil) -> x
min(x, cons(y, z)) -> if(le(x, y), min(x, z), min(y, z))
del(x, nil) -> nil
del(x, cons(y, z)) -> if(eq(x, y), z, cons(y, del(x, z)))

Termination of R to be shown.



   R
Dependency Pair Analysis



R contains the following Dependency Pairs:

LE(s(x), s(y)) -> LE(x, y)
EQ(s(x), s(y)) -> EQ(x, y)
MINSORT(cons(x, y)) -> MIN(x, y)
MINSORT(cons(x, y)) -> MINSORT(del(min(x, y), cons(x, y)))
MINSORT(cons(x, y)) -> DEL(min(x, y), cons(x, y))
MIN(x, cons(y, z)) -> IF(le(x, y), min(x, z), min(y, z))
MIN(x, cons(y, z)) -> LE(x, y)
MIN(x, cons(y, z)) -> MIN(x, z)
MIN(x, cons(y, z)) -> MIN(y, z)
DEL(x, cons(y, z)) -> IF(eq(x, y), z, cons(y, del(x, z)))
DEL(x, cons(y, z)) -> EQ(x, y)
DEL(x, cons(y, z)) -> DEL(x, z)

Furthermore, R contains five SCCs.


   R
DPs
       →DP Problem 1
Remaining Obligation(s)
       →DP Problem 2
Remaining Obligation(s)
       →DP Problem 3
Remaining Obligation(s)
       →DP Problem 4
Remaining Obligation(s)
       →DP Problem 5
Remaining Obligation(s)




The following remains to be proven:


   R
DPs
       →DP Problem 1
Remaining Obligation(s)
       →DP Problem 2
Remaining Obligation(s)
       →DP Problem 3
Remaining Obligation(s)
       →DP Problem 4
Remaining Obligation(s)
       →DP Problem 5
Remaining Obligation(s)




The following remains to be proven:


   R
DPs
       →DP Problem 1
Remaining Obligation(s)
       →DP Problem 2
Remaining Obligation(s)
       →DP Problem 3
Remaining Obligation(s)
       →DP Problem 4
Remaining Obligation(s)
       →DP Problem 5
Remaining Obligation(s)




The following remains to be proven:


   R
DPs
       →DP Problem 1
Remaining Obligation(s)
       →DP Problem 2
Remaining Obligation(s)
       →DP Problem 3
Remaining Obligation(s)
       →DP Problem 4
Remaining Obligation(s)
       →DP Problem 5
Remaining Obligation(s)




The following remains to be proven:


   R
DPs
       →DP Problem 1
Remaining Obligation(s)
       →DP Problem 2
Remaining Obligation(s)
       →DP Problem 3
Remaining Obligation(s)
       →DP Problem 4
Remaining Obligation(s)
       →DP Problem 5
Remaining Obligation(s)




The following remains to be proven:

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