Term Rewriting System R:
[x, y]
top1(free(x), y) -> top2(check(new(x)), y)
top1(free(x), y) -> top2(new(x), check(y))
top1(free(x), y) -> top2(check(x), new(y))
top1(free(x), y) -> top2(x, check(new(y)))
top2(x, free(y)) -> top1(check(new(x)), y)
top2(x, free(y)) -> top1(new(x), check(y))
top2(x, free(y)) -> top1(check(x), new(y))
top2(x, free(y)) -> top1(x, check(new(y)))
new(free(x)) -> free(new(x))
new(serve) -> free(serve)
old(free(x)) -> free(old(x))
old(serve) -> free(serve)
check(free(x)) -> free(check(x))
check(new(x)) -> new(check(x))
check(old(x)) -> old(check(x))
check(old(x)) -> old(x)

Termination of R to be shown.



   R
Removing Redundant Rules



Removing the following rules from R which fullfill a polynomial ordering:

old(free(x)) -> free(old(x))

where the Polynomial interpretation:
  POL(serve)=  1  
  POL(top1(x1, x2))=  x1 + x2  
  POL(old(x1))=  2·x1  
  POL(free(x1))=  1 + x1  
  POL(check(x1))=  x1  
  POL(top2(x1, x2))=  x1 + x2  
  POL(new(x1))=  1 + x1  
was used.

Not all Rules of R can be deleted, so we still have to regard a part of R.


   R
RRRPolo
       →TRS2
Removing Redundant Rules



Removing the following rules from R which fullfill a polynomial ordering:

old(serve) -> free(serve)

where the Polynomial interpretation:
  POL(serve)=  1  
  POL(top1(x1, x2))=  x1 + x2  
  POL(old(x1))=  2·x1  
  POL(free(x1))=  x1  
  POL(check(x1))=  x1  
  POL(top2(x1, x2))=  x1 + x2  
  POL(new(x1))=  x1  
was used.

Not all Rules of R can be deleted, so we still have to regard a part of R.


   R
RRRPolo
       →TRS2
RRRPolo
           →TRS3
Dependency Pair Analysis



R contains the following Dependency Pairs:

TOP2(x, free(y)) -> TOP1(check(x), new(y))
TOP2(x, free(y)) -> CHECK(x)
TOP2(x, free(y)) -> NEW(y)
TOP2(x, free(y)) -> TOP1(x, check(new(y)))
TOP2(x, free(y)) -> CHECK(new(y))
TOP2(x, free(y)) -> TOP1(new(x), check(y))
TOP2(x, free(y)) -> NEW(x)
TOP2(x, free(y)) -> CHECK(y)
TOP2(x, free(y)) -> TOP1(check(new(x)), y)
TOP2(x, free(y)) -> CHECK(new(x))
TOP1(free(x), y) -> TOP2(check(x), new(y))
TOP1(free(x), y) -> CHECK(x)
TOP1(free(x), y) -> NEW(y)
TOP1(free(x), y) -> TOP2(x, check(new(y)))
TOP1(free(x), y) -> CHECK(new(y))
TOP1(free(x), y) -> TOP2(check(new(x)), y)
TOP1(free(x), y) -> CHECK(new(x))
TOP1(free(x), y) -> NEW(x)
TOP1(free(x), y) -> TOP2(new(x), check(y))
TOP1(free(x), y) -> CHECK(y)
CHECK(old(x)) -> CHECK(x)
CHECK(new(x)) -> NEW(check(x))
CHECK(new(x)) -> CHECK(x)
CHECK(free(x)) -> CHECK(x)
NEW(free(x)) -> NEW(x)

Furthermore, R contains three SCCs.


   R
RRRPolo
       →TRS2
RRRPolo
           →TRS3
DPs
             ...
               →DP Problem 1
Size-Change Principle


Dependency Pair:

NEW(free(x)) -> NEW(x)


Rules:


top2(x, free(y)) -> top1(check(x), new(y))
top2(x, free(y)) -> top1(x, check(new(y)))
top2(x, free(y)) -> top1(new(x), check(y))
top2(x, free(y)) -> top1(check(new(x)), y)
top1(free(x), y) -> top2(check(x), new(y))
top1(free(x), y) -> top2(x, check(new(y)))
top1(free(x), y) -> top2(check(new(x)), y)
top1(free(x), y) -> top2(new(x), check(y))
check(old(x)) -> old(x)
check(old(x)) -> old(check(x))
check(new(x)) -> new(check(x))
check(free(x)) -> free(check(x))
new(serve) -> free(serve)
new(free(x)) -> free(new(x))





We number the DPs as follows:
  1. NEW(free(x)) -> NEW(x)
and get the following Size-Change Graph(s):
{1} , {1}
1>1

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

DP: empty set
Oriented Rules: none

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

with Argument Filtering System:
free(x1) -> free(x1)

We obtain no new DP problems.


   R
RRRPolo
       →TRS2
RRRPolo
           →TRS3
DPs
             ...
               →DP Problem 2
Size-Change Principle


Dependency Pairs:

CHECK(free(x)) -> CHECK(x)
CHECK(new(x)) -> CHECK(x)
CHECK(old(x)) -> CHECK(x)


Rules:


top2(x, free(y)) -> top1(check(x), new(y))
top2(x, free(y)) -> top1(x, check(new(y)))
top2(x, free(y)) -> top1(new(x), check(y))
top2(x, free(y)) -> top1(check(new(x)), y)
top1(free(x), y) -> top2(check(x), new(y))
top1(free(x), y) -> top2(x, check(new(y)))
top1(free(x), y) -> top2(check(new(x)), y)
top1(free(x), y) -> top2(new(x), check(y))
check(old(x)) -> old(x)
check(old(x)) -> old(check(x))
check(new(x)) -> new(check(x))
check(free(x)) -> free(check(x))
new(serve) -> free(serve)
new(free(x)) -> free(new(x))





We number the DPs as follows:
  1. CHECK(free(x)) -> CHECK(x)
  2. CHECK(new(x)) -> CHECK(x)
  3. CHECK(old(x)) -> CHECK(x)
and get the following Size-Change Graph(s):
{3, 2, 1} , {3, 2, 1}
1>1

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

DP: empty set
Oriented Rules: none

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

with Argument Filtering System:
old(x1) -> old(x1)
free(x1) -> free(x1)
new(x1) -> new(x1)

We obtain no new DP problems.


   R
RRRPolo
       →TRS2
RRRPolo
           →TRS3
DPs
             ...
               →DP Problem 3
Modular Removal of Rules


Dependency Pairs:

TOP1(free(x), y) -> TOP2(new(x), check(y))
TOP2(x, free(y)) -> TOP1(check(new(x)), y)
TOP1(free(x), y) -> TOP2(check(new(x)), y)
TOP2(x, free(y)) -> TOP1(new(x), check(y))
TOP1(free(x), y) -> TOP2(x, check(new(y)))
TOP2(x, free(y)) -> TOP1(x, check(new(y)))
TOP1(free(x), y) -> TOP2(check(x), new(y))
TOP2(x, free(y)) -> TOP1(check(x), new(y))


Rules:


top2(x, free(y)) -> top1(check(x), new(y))
top2(x, free(y)) -> top1(x, check(new(y)))
top2(x, free(y)) -> top1(new(x), check(y))
top2(x, free(y)) -> top1(check(new(x)), y)
top1(free(x), y) -> top2(check(x), new(y))
top1(free(x), y) -> top2(x, check(new(y)))
top1(free(x), y) -> top2(check(new(x)), y)
top1(free(x), y) -> top2(new(x), check(y))
check(old(x)) -> old(x)
check(old(x)) -> old(check(x))
check(new(x)) -> new(check(x))
check(free(x)) -> free(check(x))
new(serve) -> free(serve)
new(free(x)) -> free(new(x))





We have the following set of usable rules:

new(serve) -> free(serve)
new(free(x)) -> free(new(x))
check(old(x)) -> old(x)
check(old(x)) -> old(check(x))
check(new(x)) -> new(check(x))
check(free(x)) -> free(check(x))
To remove rules and DPs from this DP problem we used the following monotonic and CE-compatible order: Polynomial ordering.
Polynomial interpretation:
  POL(serve)=  0  
  POL(TOP2(x1, x2))=  x1 + x2  
  POL(old(x1))=  x1  
  POL(free(x1))=  x1  
  POL(check(x1))=  x1  
  POL(TOP1(x1, x2))=  x1 + x2  
  POL(new(x1))=  x1  

We have the following set D of usable symbols: {serve, TOP2, old, check, free, TOP1, new}
No Dependency Pairs can be deleted.
8 non usable rules have been deleted.

The result of this processor delivers one new DP problem.



   R
RRRPolo
       →TRS2
RRRPolo
           →TRS3
DPs
             ...
               →DP Problem 4
Narrowing Transformation


Dependency Pairs:

TOP1(free(x), y) -> TOP2(new(x), check(y))
TOP2(x, free(y)) -> TOP1(check(new(x)), y)
TOP1(free(x), y) -> TOP2(check(new(x)), y)
TOP2(x, free(y)) -> TOP1(new(x), check(y))
TOP1(free(x), y) -> TOP2(x, check(new(y)))
TOP2(x, free(y)) -> TOP1(x, check(new(y)))
TOP1(free(x), y) -> TOP2(check(x), new(y))
TOP2(x, free(y)) -> TOP1(check(x), new(y))


Rules:


new(serve) -> free(serve)
new(free(x)) -> free(new(x))
check(old(x)) -> old(x)
check(old(x)) -> old(check(x))
check(new(x)) -> new(check(x))
check(free(x)) -> free(check(x))





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

TOP1(free(x), y) -> TOP2(new(x), check(y))
six new Dependency Pairs are created:

TOP1(free(serve), y) -> TOP2(free(serve), check(y))
TOP1(free(free(x'')), y) -> TOP2(free(new(x'')), check(y))
TOP1(free(x), old(x'')) -> TOP2(new(x), old(x''))
TOP1(free(x), old(x'')) -> TOP2(new(x), old(check(x'')))
TOP1(free(x), new(x'')) -> TOP2(new(x), new(check(x'')))
TOP1(free(x), free(x'')) -> TOP2(new(x), free(check(x'')))

The transformation is resulting in one new DP problem:



   R
RRRPolo
       →TRS2
RRRPolo
           →TRS3
DPs
             ...
               →DP Problem 5
Narrowing Transformation


Dependency Pairs:

TOP1(free(x), free(x'')) -> TOP2(new(x), free(check(x'')))
TOP1(free(x), new(x'')) -> TOP2(new(x), new(check(x'')))
TOP1(free(free(x'')), y) -> TOP2(free(new(x'')), check(y))
TOP1(free(serve), y) -> TOP2(free(serve), check(y))
TOP2(x, free(y)) -> TOP1(new(x), check(y))
TOP1(free(x), y) -> TOP2(check(new(x)), y)
TOP2(x, free(y)) -> TOP1(x, check(new(y)))
TOP1(free(x), y) -> TOP2(x, check(new(y)))
TOP2(x, free(y)) -> TOP1(check(x), new(y))
TOP1(free(x), y) -> TOP2(check(x), new(y))
TOP2(x, free(y)) -> TOP1(check(new(x)), y)


Rules:


new(serve) -> free(serve)
new(free(x)) -> free(new(x))
check(old(x)) -> old(x)
check(old(x)) -> old(check(x))
check(new(x)) -> new(check(x))
check(free(x)) -> free(check(x))





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

TOP2(x, free(y)) -> TOP1(check(new(x)), y)
three new Dependency Pairs are created:

TOP2(x'', free(y)) -> TOP1(new(check(x'')), y)
TOP2(serve, free(y)) -> TOP1(check(free(serve)), y)
TOP2(free(x''), free(y)) -> TOP1(check(free(new(x''))), y)

The transformation is resulting in one new DP problem:



   R
RRRPolo
       →TRS2
RRRPolo
           →TRS3
DPs
             ...
               →DP Problem 6
Narrowing Transformation


Dependency Pairs:

TOP2(serve, free(y)) -> TOP1(check(free(serve)), y)
TOP1(free(x), new(x'')) -> TOP2(new(x), new(check(x'')))
TOP1(free(free(x'')), y) -> TOP2(free(new(x'')), check(y))
TOP2(free(x''), free(y)) -> TOP1(check(free(new(x''))), y)
TOP1(free(serve), y) -> TOP2(free(serve), check(y))
TOP2(x'', free(y)) -> TOP1(new(check(x'')), y)
TOP1(free(x), y) -> TOP2(check(new(x)), y)
TOP2(x, free(y)) -> TOP1(new(x), check(y))
TOP1(free(x), y) -> TOP2(x, check(new(y)))
TOP2(x, free(y)) -> TOP1(x, check(new(y)))
TOP1(free(x), y) -> TOP2(check(x), new(y))
TOP2(x, free(y)) -> TOP1(check(x), new(y))
TOP1(free(x), free(x'')) -> TOP2(new(x), free(check(x'')))


Rules:


new(serve) -> free(serve)
new(free(x)) -> free(new(x))
check(old(x)) -> old(x)
check(old(x)) -> old(check(x))
check(new(x)) -> new(check(x))
check(free(x)) -> free(check(x))





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

TOP2(x, free(y)) -> TOP1(new(x), check(y))
six new Dependency Pairs are created:

TOP2(serve, free(y)) -> TOP1(free(serve), check(y))
TOP2(free(x''), free(y)) -> TOP1(free(new(x'')), check(y))
TOP2(x, free(old(x''))) -> TOP1(new(x), old(x''))
TOP2(x, free(old(x''))) -> TOP1(new(x), old(check(x'')))
TOP2(x, free(new(x''))) -> TOP1(new(x), new(check(x'')))
TOP2(x, free(free(x''))) -> TOP1(new(x), free(check(x'')))

The transformation is resulting in one new DP problem:



   R
RRRPolo
       →TRS2
RRRPolo
           →TRS3
DPs
             ...
               →DP Problem 7
Narrowing Transformation


Dependency Pairs:

TOP2(serve, free(y)) -> TOP1(free(serve), check(y))
TOP2(x, free(free(x''))) -> TOP1(new(x), free(check(x'')))
TOP1(free(x), free(x'')) -> TOP2(new(x), free(check(x'')))
TOP2(x, free(new(x''))) -> TOP1(new(x), new(check(x'')))
TOP2(x, free(old(x''))) -> TOP1(new(x), old(check(x'')))
TOP2(x, free(old(x''))) -> TOP1(new(x), old(x''))
TOP1(free(x), new(x'')) -> TOP2(new(x), new(check(x'')))
TOP2(free(x''), free(y)) -> TOP1(free(new(x'')), check(y))
TOP1(free(free(x'')), y) -> TOP2(free(new(x'')), check(y))
TOP2(free(x''), free(y)) -> TOP1(check(free(new(x''))), y)
TOP1(free(serve), y) -> TOP2(free(serve), check(y))
TOP2(x'', free(y)) -> TOP1(new(check(x'')), y)
TOP1(free(x), y) -> TOP2(check(new(x)), y)
TOP2(x, free(y)) -> TOP1(x, check(new(y)))
TOP1(free(x), y) -> TOP2(x, check(new(y)))
TOP2(x, free(y)) -> TOP1(check(x), new(y))
TOP1(free(x), y) -> TOP2(check(x), new(y))
TOP2(serve, free(y)) -> TOP1(check(free(serve)), y)


Rules:


new(serve) -> free(serve)
new(free(x)) -> free(new(x))
check(old(x)) -> old(x)
check(old(x)) -> old(check(x))
check(new(x)) -> new(check(x))
check(free(x)) -> free(check(x))





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

TOP1(free(x), y) -> TOP2(x, check(new(y)))
three new Dependency Pairs are created:

TOP1(free(x), y') -> TOP2(x, new(check(y')))
TOP1(free(x), serve) -> TOP2(x, check(free(serve)))
TOP1(free(x), free(x'')) -> TOP2(x, check(free(new(x''))))

The transformation is resulting in one new DP problem:



   R
RRRPolo
       →TRS2
RRRPolo
           →TRS3
DPs
             ...
               →DP Problem 8
Narrowing Transformation


Dependency Pairs:

TOP2(x, free(free(x''))) -> TOP1(new(x), free(check(x'')))
TOP1(free(x), free(x'')) -> TOP2(x, check(free(new(x''))))
TOP2(x, free(new(x''))) -> TOP1(new(x), new(check(x'')))
TOP2(x, free(old(x''))) -> TOP1(new(x), old(check(x'')))
TOP1(free(x), serve) -> TOP2(x, check(free(serve)))
TOP2(serve, free(y)) -> TOP1(check(free(serve)), y)
TOP1(free(x), y') -> TOP2(x, new(check(y')))
TOP2(x, free(old(x''))) -> TOP1(new(x), old(x''))
TOP1(free(x), free(x'')) -> TOP2(new(x), free(check(x'')))
TOP2(free(x''), free(y)) -> TOP1(free(new(x'')), check(y))
TOP1(free(x), new(x'')) -> TOP2(new(x), new(check(x'')))
TOP2(free(x''), free(y)) -> TOP1(check(free(new(x''))), y)
TOP1(free(free(x'')), y) -> TOP2(free(new(x'')), check(y))
TOP2(x'', free(y)) -> TOP1(new(check(x'')), y)
TOP1(free(serve), y) -> TOP2(free(serve), check(y))
TOP2(x, free(y)) -> TOP1(x, check(new(y)))
TOP1(free(x), y) -> TOP2(check(new(x)), y)
TOP2(x, free(y)) -> TOP1(check(x), new(y))
TOP1(free(x), y) -> TOP2(check(x), new(y))
TOP2(serve, free(y)) -> TOP1(free(serve), check(y))


Rules:


new(serve) -> free(serve)
new(free(x)) -> free(new(x))
check(old(x)) -> old(x)
check(old(x)) -> old(check(x))
check(new(x)) -> new(check(x))
check(free(x)) -> free(check(x))





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

TOP1(free(x), y) -> TOP2(check(x), new(y))
six new Dependency Pairs are created:

TOP1(free(old(x'')), y) -> TOP2(old(x''), new(y))
TOP1(free(old(x'')), y) -> TOP2(old(check(x'')), new(y))
TOP1(free(new(x'')), y) -> TOP2(new(check(x'')), new(y))
TOP1(free(free(x'')), y) -> TOP2(free(check(x'')), new(y))
TOP1(free(x), serve) -> TOP2(check(x), free(serve))
TOP1(free(x), free(x'')) -> TOP2(check(x), free(new(x'')))

The transformation is resulting in one new DP problem:



   R
RRRPolo
       →TRS2
RRRPolo
           →TRS3
DPs
             ...
               →DP Problem 9
Narrowing Transformation


Dependency Pairs:

TOP1(free(x), serve) -> TOP2(check(x), free(serve))
TOP1(free(x), free(x'')) -> TOP2(check(x), free(new(x'')))
TOP1(free(free(x'')), y) -> TOP2(free(check(x'')), new(y))
TOP1(free(new(x'')), y) -> TOP2(new(check(x'')), new(y))
TOP2(x, free(new(x''))) -> TOP1(new(x), new(check(x'')))
TOP1(free(old(x'')), y) -> TOP2(old(check(x'')), new(y))
TOP2(x, free(old(x''))) -> TOP1(new(x), old(check(x'')))
TOP1(free(old(x'')), y) -> TOP2(old(x''), new(y))
TOP2(x, free(old(x''))) -> TOP1(new(x), old(x''))
TOP1(free(x), free(x'')) -> TOP2(x, check(free(new(x''))))
TOP2(serve, free(y)) -> TOP1(free(serve), check(y))
TOP1(free(x), serve) -> TOP2(x, check(free(serve)))
TOP2(serve, free(y)) -> TOP1(check(free(serve)), y)
TOP1(free(x), y') -> TOP2(x, new(check(y')))
TOP2(free(x''), free(y)) -> TOP1(free(new(x'')), check(y))
TOP1(free(x), free(x'')) -> TOP2(new(x), free(check(x'')))
TOP2(free(x''), free(y)) -> TOP1(check(free(new(x''))), y)
TOP1(free(x), new(x'')) -> TOP2(new(x), new(check(x'')))
TOP2(x'', free(y)) -> TOP1(new(check(x'')), y)
TOP1(free(free(x'')), y) -> TOP2(free(new(x'')), check(y))
TOP2(x, free(y)) -> TOP1(x, check(new(y)))
TOP1(free(serve), y) -> TOP2(free(serve), check(y))
TOP2(x, free(y)) -> TOP1(check(x), new(y))
TOP1(free(x), y) -> TOP2(check(new(x)), y)
TOP2(x, free(free(x''))) -> TOP1(new(x), free(check(x'')))


Rules:


new(serve) -> free(serve)
new(free(x)) -> free(new(x))
check(old(x)) -> old(x)
check(old(x)) -> old(check(x))
check(new(x)) -> new(check(x))
check(free(x)) -> free(check(x))





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

TOP2(x, free(y)) -> TOP1(check(x), new(y))
six new Dependency Pairs are created:

TOP2(old(x''), free(y)) -> TOP1(old(x''), new(y))
TOP2(old(x''), free(y)) -> TOP1(old(check(x'')), new(y))
TOP2(new(x''), free(y)) -> TOP1(new(check(x'')), new(y))
TOP2(free(x''), free(y)) -> TOP1(free(check(x'')), new(y))
TOP2(x, free(serve)) -> TOP1(check(x), free(serve))
TOP2(x, free(free(x''))) -> TOP1(check(x), free(new(x'')))

The transformation is resulting in one new DP problem:



   R
RRRPolo
       →TRS2
RRRPolo
           →TRS3
DPs
             ...
               →DP Problem 10
Negative Polynomial Order


Dependency Pairs:

TOP1(free(x), serve) -> TOP2(x, check(free(serve)))
TOP2(x, free(free(x''))) -> TOP1(check(x), free(new(x'')))
TOP2(free(x''), free(y)) -> TOP1(free(check(x'')), new(y))
TOP1(free(free(x'')), y) -> TOP2(free(check(x'')), new(y))
TOP2(new(x''), free(y)) -> TOP1(new(check(x'')), new(y))
TOP1(free(new(x'')), y) -> TOP2(new(check(x'')), new(y))
TOP2(x, free(serve)) -> TOP1(check(x), free(serve))
TOP1(free(old(x'')), y) -> TOP2(old(check(x'')), new(y))
TOP2(x, free(free(x''))) -> TOP1(new(x), free(check(x'')))
TOP1(free(x), free(x'')) -> TOP2(check(x), free(new(x'')))
TOP2(serve, free(y)) -> TOP1(free(serve), check(y))
TOP1(free(x), free(x'')) -> TOP2(x, check(free(new(x''))))
TOP2(x, free(new(x''))) -> TOP1(new(x), new(check(x'')))
TOP1(free(old(x'')), y) -> TOP2(old(x''), new(y))
TOP2(x, free(old(x''))) -> TOP1(new(x), old(check(x'')))
TOP1(free(x), free(x'')) -> TOP2(new(x), free(check(x'')))
TOP2(serve, free(y)) -> TOP1(check(free(serve)), y)
TOP1(free(x), y') -> TOP2(x, new(check(y')))
TOP2(x, free(old(x''))) -> TOP1(new(x), old(x''))
TOP1(free(x), new(x'')) -> TOP2(new(x), new(check(x'')))
TOP2(free(x''), free(y)) -> TOP1(free(new(x'')), check(y))
TOP1(free(free(x'')), y) -> TOP2(free(new(x'')), check(y))
TOP2(free(x''), free(y)) -> TOP1(check(free(new(x''))), y)
TOP1(free(serve), y) -> TOP2(free(serve), check(y))
TOP2(x'', free(y)) -> TOP1(new(check(x'')), y)
TOP1(free(x), y) -> TOP2(check(new(x)), y)
TOP2(x, free(y)) -> TOP1(x, check(new(y)))
TOP1(free(x), serve) -> TOP2(check(x), free(serve))


Rules:


new(serve) -> free(serve)
new(free(x)) -> free(new(x))
check(old(x)) -> old(x)
check(old(x)) -> old(check(x))
check(new(x)) -> new(check(x))
check(free(x)) -> free(check(x))





The following Dependency Pairs can be strictly oriented using the given order.

TOP1(free(x), serve) -> TOP2(x, check(free(serve)))
TOP2(serve, free(y)) -> TOP1(check(free(serve)), y)


Moreover, the following usable rules (regarding the implicit AFS) are oriented.

check(free(x)) -> free(check(x))
check(old(x)) -> old(x)
check(old(x)) -> old(check(x))
check(new(x)) -> new(check(x))
new(serve) -> free(serve)
new(free(x)) -> free(new(x))


Used ordering:
Polynomial Order with Interpretation:

POL( TOP1(x1, x2) ) = x1 + x2

POL( free(x1) ) = x1

POL( serve ) = 1

POL( TOP2(x1, x2) ) = x1 + x2

POL( check(x1) ) = 0

POL( new(x1) ) = x1

POL( old(x1) ) = 0


This results in one new DP problem.


   R
RRRPolo
       →TRS2
RRRPolo
           →TRS3
DPs
             ...
               →DP Problem 11
Remaining Obligation(s)




The following remains to be proven:
Dependency Pairs:

TOP2(x, free(free(x''))) -> TOP1(check(x), free(new(x'')))
TOP2(free(x''), free(y)) -> TOP1(free(check(x'')), new(y))
TOP1(free(free(x'')), y) -> TOP2(free(check(x'')), new(y))
TOP2(new(x''), free(y)) -> TOP1(new(check(x'')), new(y))
TOP1(free(new(x'')), y) -> TOP2(new(check(x'')), new(y))
TOP2(x, free(serve)) -> TOP1(check(x), free(serve))
TOP1(free(old(x'')), y) -> TOP2(old(check(x'')), new(y))
TOP2(x, free(free(x''))) -> TOP1(new(x), free(check(x'')))
TOP1(free(x), free(x'')) -> TOP2(check(x), free(new(x'')))
TOP2(serve, free(y)) -> TOP1(free(serve), check(y))
TOP1(free(x), free(x'')) -> TOP2(x, check(free(new(x''))))
TOP2(x, free(new(x''))) -> TOP1(new(x), new(check(x'')))
TOP1(free(old(x'')), y) -> TOP2(old(x''), new(y))
TOP2(x, free(old(x''))) -> TOP1(new(x), old(check(x'')))
TOP1(free(x), free(x'')) -> TOP2(new(x), free(check(x'')))
TOP1(free(x), y') -> TOP2(x, new(check(y')))
TOP2(x, free(old(x''))) -> TOP1(new(x), old(x''))
TOP1(free(x), new(x'')) -> TOP2(new(x), new(check(x'')))
TOP2(free(x''), free(y)) -> TOP1(free(new(x'')), check(y))
TOP1(free(free(x'')), y) -> TOP2(free(new(x'')), check(y))
TOP2(free(x''), free(y)) -> TOP1(check(free(new(x''))), y)
TOP1(free(serve), y) -> TOP2(free(serve), check(y))
TOP2(x'', free(y)) -> TOP1(new(check(x'')), y)
TOP1(free(x), y) -> TOP2(check(new(x)), y)
TOP2(x, free(y)) -> TOP1(x, check(new(y)))
TOP1(free(x), serve) -> TOP2(check(x), free(serve))


Rules:


new(serve) -> free(serve)
new(free(x)) -> free(new(x))
check(old(x)) -> old(x)
check(old(x)) -> old(check(x))
check(new(x)) -> new(check(x))
check(free(x)) -> free(check(x))




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