Term Rewriting System R:
[x]
not(true) -> false
not(false) -> true
evenodd(x, 0) -> not(evenodd(x, s(0)))
evenodd(0, s(0)) -> false
evenodd(s(x), s(0)) -> evenodd(x, 0)

Termination of R to be shown.



   R
Dependency Pair Analysis



R contains the following Dependency Pairs:

EVENODD(x, 0) -> NOT(evenodd(x, s(0)))
EVENODD(x, 0) -> EVENODD(x, s(0))
EVENODD(s(x), s(0)) -> EVENODD(x, 0)

Furthermore, R contains one SCC.


   R
DPs
       →DP Problem 1
Forward Instantiation Transformation


Dependency Pairs:

EVENODD(s(x), s(0)) -> EVENODD(x, 0)
EVENODD(x, 0) -> EVENODD(x, s(0))


Rules:


not(true) -> false
not(false) -> true
evenodd(x, 0) -> not(evenodd(x, s(0)))
evenodd(0, s(0)) -> false
evenodd(s(x), s(0)) -> evenodd(x, 0)





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

EVENODD(x, 0) -> EVENODD(x, s(0))
one new Dependency Pair is created:

EVENODD(s(x''), 0) -> EVENODD(s(x''), s(0))

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
           →DP Problem 2
Forward Instantiation Transformation


Dependency Pairs:

EVENODD(s(x''), 0) -> EVENODD(s(x''), s(0))
EVENODD(s(x), s(0)) -> EVENODD(x, 0)


Rules:


not(true) -> false
not(false) -> true
evenodd(x, 0) -> not(evenodd(x, s(0)))
evenodd(0, s(0)) -> false
evenodd(s(x), s(0)) -> evenodd(x, 0)





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

EVENODD(s(x), s(0)) -> EVENODD(x, 0)
one new Dependency Pair is created:

EVENODD(s(s(x'''')), s(0)) -> EVENODD(s(x''''), 0)

The transformation is resulting in one new DP problem:



   R
DPs
       →DP Problem 1
FwdInst
           →DP Problem 2
FwdInst
             ...
               →DP Problem 3
Remaining Obligation(s)




The following remains to be proven:
Dependency Pairs:

EVENODD(s(s(x'''')), s(0)) -> EVENODD(s(x''''), 0)
EVENODD(s(x''), 0) -> EVENODD(s(x''), s(0))


Rules:


not(true) -> false
not(false) -> true
evenodd(x, 0) -> not(evenodd(x, s(0)))
evenodd(0, s(0)) -> false
evenodd(s(x), s(0)) -> evenodd(x, 0)




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