(0) Obligation:

Clauses:

in(X, tree(X, X1, X2)).
in(X, tree(Y, Left, X3)) :- ','(less(X, Y), in(X, Left)).
in(X, tree(Y, X4, Right)) :- ','(less(Y, X), in(X, Right)).
less(0, s(X5)).
less(s(X), s(Y)) :- less(X, Y).

Queries:

in(g,a).

(1) PrologToPiTRSProof (SOUND transformation)

We use the technique of [LOPSTR]. With regard to the inferred argument filtering the predicates were used in the following modes:
in_in: (b,f)
less_in: (b,f) (f,b)
Transforming Prolog into the following Term Rewriting System:
Pi-finite rewrite system:
The TRS R consists of the following rules:

in_in_ga(X, tree(X, X1, X2)) → in_out_ga(X, tree(X, X1, X2))
in_in_ga(X, tree(Y, Left, X3)) → U1_ga(X, Y, Left, X3, less_in_ga(X, Y))
less_in_ga(0, s(X5)) → less_out_ga(0, s(X5))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U1_ga(X, Y, Left, X3, less_out_ga(X, Y)) → U2_ga(X, Y, Left, X3, in_in_ga(X, Left))
in_in_ga(X, tree(Y, X4, Right)) → U3_ga(X, Y, X4, Right, less_in_ag(Y, X))
less_in_ag(0, s(X5)) → less_out_ag(0, s(X5))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))
U3_ga(X, Y, X4, Right, less_out_ag(Y, X)) → U4_ga(X, Y, X4, Right, in_in_ga(X, Right))
U4_ga(X, Y, X4, Right, in_out_ga(X, Right)) → in_out_ga(X, tree(Y, X4, Right))
U2_ga(X, Y, Left, X3, in_out_ga(X, Left)) → in_out_ga(X, tree(Y, Left, X3))

The argument filtering Pi contains the following mapping:
in_in_ga(x1, x2)  =  in_in_ga(x1)
in_out_ga(x1, x2)  =  in_out_ga
U1_ga(x1, x2, x3, x4, x5)  =  U1_ga(x1, x5)
less_in_ga(x1, x2)  =  less_in_ga(x1)
0  =  0
less_out_ga(x1, x2)  =  less_out_ga
s(x1)  =  s(x1)
U5_ga(x1, x2, x3)  =  U5_ga(x3)
U2_ga(x1, x2, x3, x4, x5)  =  U2_ga(x5)
U3_ga(x1, x2, x3, x4, x5)  =  U3_ga(x1, x5)
less_in_ag(x1, x2)  =  less_in_ag(x2)
less_out_ag(x1, x2)  =  less_out_ag(x1)
U5_ag(x1, x2, x3)  =  U5_ag(x3)
U4_ga(x1, x2, x3, x4, x5)  =  U4_ga(x5)

Infinitary Constructor Rewriting Termination of PiTRS implies Termination of Prolog

(2) Obligation:

Pi-finite rewrite system:
The TRS R consists of the following rules:

in_in_ga(X, tree(X, X1, X2)) → in_out_ga(X, tree(X, X1, X2))
in_in_ga(X, tree(Y, Left, X3)) → U1_ga(X, Y, Left, X3, less_in_ga(X, Y))
less_in_ga(0, s(X5)) → less_out_ga(0, s(X5))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U1_ga(X, Y, Left, X3, less_out_ga(X, Y)) → U2_ga(X, Y, Left, X3, in_in_ga(X, Left))
in_in_ga(X, tree(Y, X4, Right)) → U3_ga(X, Y, X4, Right, less_in_ag(Y, X))
less_in_ag(0, s(X5)) → less_out_ag(0, s(X5))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))
U3_ga(X, Y, X4, Right, less_out_ag(Y, X)) → U4_ga(X, Y, X4, Right, in_in_ga(X, Right))
U4_ga(X, Y, X4, Right, in_out_ga(X, Right)) → in_out_ga(X, tree(Y, X4, Right))
U2_ga(X, Y, Left, X3, in_out_ga(X, Left)) → in_out_ga(X, tree(Y, Left, X3))

The argument filtering Pi contains the following mapping:
in_in_ga(x1, x2)  =  in_in_ga(x1)
in_out_ga(x1, x2)  =  in_out_ga
U1_ga(x1, x2, x3, x4, x5)  =  U1_ga(x1, x5)
less_in_ga(x1, x2)  =  less_in_ga(x1)
0  =  0
less_out_ga(x1, x2)  =  less_out_ga
s(x1)  =  s(x1)
U5_ga(x1, x2, x3)  =  U5_ga(x3)
U2_ga(x1, x2, x3, x4, x5)  =  U2_ga(x5)
U3_ga(x1, x2, x3, x4, x5)  =  U3_ga(x1, x5)
less_in_ag(x1, x2)  =  less_in_ag(x2)
less_out_ag(x1, x2)  =  less_out_ag(x1)
U5_ag(x1, x2, x3)  =  U5_ag(x3)
U4_ga(x1, x2, x3, x4, x5)  =  U4_ga(x5)

(3) DependencyPairsProof (EQUIVALENT transformation)

Using Dependency Pairs [AG00,LOPSTR] we result in the following initial DP problem:
Pi DP problem:
The TRS P consists of the following rules:

IN_IN_GA(X, tree(Y, Left, X3)) → U1_GA(X, Y, Left, X3, less_in_ga(X, Y))
IN_IN_GA(X, tree(Y, Left, X3)) → LESS_IN_GA(X, Y)
LESS_IN_GA(s(X), s(Y)) → U5_GA(X, Y, less_in_ga(X, Y))
LESS_IN_GA(s(X), s(Y)) → LESS_IN_GA(X, Y)
U1_GA(X, Y, Left, X3, less_out_ga(X, Y)) → U2_GA(X, Y, Left, X3, in_in_ga(X, Left))
U1_GA(X, Y, Left, X3, less_out_ga(X, Y)) → IN_IN_GA(X, Left)
IN_IN_GA(X, tree(Y, X4, Right)) → U3_GA(X, Y, X4, Right, less_in_ag(Y, X))
IN_IN_GA(X, tree(Y, X4, Right)) → LESS_IN_AG(Y, X)
LESS_IN_AG(s(X), s(Y)) → U5_AG(X, Y, less_in_ag(X, Y))
LESS_IN_AG(s(X), s(Y)) → LESS_IN_AG(X, Y)
U3_GA(X, Y, X4, Right, less_out_ag(Y, X)) → U4_GA(X, Y, X4, Right, in_in_ga(X, Right))
U3_GA(X, Y, X4, Right, less_out_ag(Y, X)) → IN_IN_GA(X, Right)

The TRS R consists of the following rules:

in_in_ga(X, tree(X, X1, X2)) → in_out_ga(X, tree(X, X1, X2))
in_in_ga(X, tree(Y, Left, X3)) → U1_ga(X, Y, Left, X3, less_in_ga(X, Y))
less_in_ga(0, s(X5)) → less_out_ga(0, s(X5))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U1_ga(X, Y, Left, X3, less_out_ga(X, Y)) → U2_ga(X, Y, Left, X3, in_in_ga(X, Left))
in_in_ga(X, tree(Y, X4, Right)) → U3_ga(X, Y, X4, Right, less_in_ag(Y, X))
less_in_ag(0, s(X5)) → less_out_ag(0, s(X5))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))
U3_ga(X, Y, X4, Right, less_out_ag(Y, X)) → U4_ga(X, Y, X4, Right, in_in_ga(X, Right))
U4_ga(X, Y, X4, Right, in_out_ga(X, Right)) → in_out_ga(X, tree(Y, X4, Right))
U2_ga(X, Y, Left, X3, in_out_ga(X, Left)) → in_out_ga(X, tree(Y, Left, X3))

The argument filtering Pi contains the following mapping:
in_in_ga(x1, x2)  =  in_in_ga(x1)
in_out_ga(x1, x2)  =  in_out_ga
U1_ga(x1, x2, x3, x4, x5)  =  U1_ga(x1, x5)
less_in_ga(x1, x2)  =  less_in_ga(x1)
0  =  0
less_out_ga(x1, x2)  =  less_out_ga
s(x1)  =  s(x1)
U5_ga(x1, x2, x3)  =  U5_ga(x3)
U2_ga(x1, x2, x3, x4, x5)  =  U2_ga(x5)
U3_ga(x1, x2, x3, x4, x5)  =  U3_ga(x1, x5)
less_in_ag(x1, x2)  =  less_in_ag(x2)
less_out_ag(x1, x2)  =  less_out_ag(x1)
U5_ag(x1, x2, x3)  =  U5_ag(x3)
U4_ga(x1, x2, x3, x4, x5)  =  U4_ga(x5)
IN_IN_GA(x1, x2)  =  IN_IN_GA(x1)
U1_GA(x1, x2, x3, x4, x5)  =  U1_GA(x1, x5)
LESS_IN_GA(x1, x2)  =  LESS_IN_GA(x1)
U5_GA(x1, x2, x3)  =  U5_GA(x3)
U2_GA(x1, x2, x3, x4, x5)  =  U2_GA(x5)
U3_GA(x1, x2, x3, x4, x5)  =  U3_GA(x1, x5)
LESS_IN_AG(x1, x2)  =  LESS_IN_AG(x2)
U5_AG(x1, x2, x3)  =  U5_AG(x3)
U4_GA(x1, x2, x3, x4, x5)  =  U4_GA(x5)

We have to consider all (P,R,Pi)-chains

(4) Obligation:

Pi DP problem:
The TRS P consists of the following rules:

IN_IN_GA(X, tree(Y, Left, X3)) → U1_GA(X, Y, Left, X3, less_in_ga(X, Y))
IN_IN_GA(X, tree(Y, Left, X3)) → LESS_IN_GA(X, Y)
LESS_IN_GA(s(X), s(Y)) → U5_GA(X, Y, less_in_ga(X, Y))
LESS_IN_GA(s(X), s(Y)) → LESS_IN_GA(X, Y)
U1_GA(X, Y, Left, X3, less_out_ga(X, Y)) → U2_GA(X, Y, Left, X3, in_in_ga(X, Left))
U1_GA(X, Y, Left, X3, less_out_ga(X, Y)) → IN_IN_GA(X, Left)
IN_IN_GA(X, tree(Y, X4, Right)) → U3_GA(X, Y, X4, Right, less_in_ag(Y, X))
IN_IN_GA(X, tree(Y, X4, Right)) → LESS_IN_AG(Y, X)
LESS_IN_AG(s(X), s(Y)) → U5_AG(X, Y, less_in_ag(X, Y))
LESS_IN_AG(s(X), s(Y)) → LESS_IN_AG(X, Y)
U3_GA(X, Y, X4, Right, less_out_ag(Y, X)) → U4_GA(X, Y, X4, Right, in_in_ga(X, Right))
U3_GA(X, Y, X4, Right, less_out_ag(Y, X)) → IN_IN_GA(X, Right)

The TRS R consists of the following rules:

in_in_ga(X, tree(X, X1, X2)) → in_out_ga(X, tree(X, X1, X2))
in_in_ga(X, tree(Y, Left, X3)) → U1_ga(X, Y, Left, X3, less_in_ga(X, Y))
less_in_ga(0, s(X5)) → less_out_ga(0, s(X5))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U1_ga(X, Y, Left, X3, less_out_ga(X, Y)) → U2_ga(X, Y, Left, X3, in_in_ga(X, Left))
in_in_ga(X, tree(Y, X4, Right)) → U3_ga(X, Y, X4, Right, less_in_ag(Y, X))
less_in_ag(0, s(X5)) → less_out_ag(0, s(X5))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))
U3_ga(X, Y, X4, Right, less_out_ag(Y, X)) → U4_ga(X, Y, X4, Right, in_in_ga(X, Right))
U4_ga(X, Y, X4, Right, in_out_ga(X, Right)) → in_out_ga(X, tree(Y, X4, Right))
U2_ga(X, Y, Left, X3, in_out_ga(X, Left)) → in_out_ga(X, tree(Y, Left, X3))

The argument filtering Pi contains the following mapping:
in_in_ga(x1, x2)  =  in_in_ga(x1)
in_out_ga(x1, x2)  =  in_out_ga
U1_ga(x1, x2, x3, x4, x5)  =  U1_ga(x1, x5)
less_in_ga(x1, x2)  =  less_in_ga(x1)
0  =  0
less_out_ga(x1, x2)  =  less_out_ga
s(x1)  =  s(x1)
U5_ga(x1, x2, x3)  =  U5_ga(x3)
U2_ga(x1, x2, x3, x4, x5)  =  U2_ga(x5)
U3_ga(x1, x2, x3, x4, x5)  =  U3_ga(x1, x5)
less_in_ag(x1, x2)  =  less_in_ag(x2)
less_out_ag(x1, x2)  =  less_out_ag(x1)
U5_ag(x1, x2, x3)  =  U5_ag(x3)
U4_ga(x1, x2, x3, x4, x5)  =  U4_ga(x5)
IN_IN_GA(x1, x2)  =  IN_IN_GA(x1)
U1_GA(x1, x2, x3, x4, x5)  =  U1_GA(x1, x5)
LESS_IN_GA(x1, x2)  =  LESS_IN_GA(x1)
U5_GA(x1, x2, x3)  =  U5_GA(x3)
U2_GA(x1, x2, x3, x4, x5)  =  U2_GA(x5)
U3_GA(x1, x2, x3, x4, x5)  =  U3_GA(x1, x5)
LESS_IN_AG(x1, x2)  =  LESS_IN_AG(x2)
U5_AG(x1, x2, x3)  =  U5_AG(x3)
U4_GA(x1, x2, x3, x4, x5)  =  U4_GA(x5)

We have to consider all (P,R,Pi)-chains

(5) DependencyGraphProof (EQUIVALENT transformation)

The approximation of the Dependency Graph [LOPSTR] contains 3 SCCs with 6 less nodes.

(6) Complex Obligation (AND)

(7) Obligation:

Pi DP problem:
The TRS P consists of the following rules:

LESS_IN_AG(s(X), s(Y)) → LESS_IN_AG(X, Y)

The TRS R consists of the following rules:

in_in_ga(X, tree(X, X1, X2)) → in_out_ga(X, tree(X, X1, X2))
in_in_ga(X, tree(Y, Left, X3)) → U1_ga(X, Y, Left, X3, less_in_ga(X, Y))
less_in_ga(0, s(X5)) → less_out_ga(0, s(X5))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U1_ga(X, Y, Left, X3, less_out_ga(X, Y)) → U2_ga(X, Y, Left, X3, in_in_ga(X, Left))
in_in_ga(X, tree(Y, X4, Right)) → U3_ga(X, Y, X4, Right, less_in_ag(Y, X))
less_in_ag(0, s(X5)) → less_out_ag(0, s(X5))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))
U3_ga(X, Y, X4, Right, less_out_ag(Y, X)) → U4_ga(X, Y, X4, Right, in_in_ga(X, Right))
U4_ga(X, Y, X4, Right, in_out_ga(X, Right)) → in_out_ga(X, tree(Y, X4, Right))
U2_ga(X, Y, Left, X3, in_out_ga(X, Left)) → in_out_ga(X, tree(Y, Left, X3))

The argument filtering Pi contains the following mapping:
in_in_ga(x1, x2)  =  in_in_ga(x1)
in_out_ga(x1, x2)  =  in_out_ga
U1_ga(x1, x2, x3, x4, x5)  =  U1_ga(x1, x5)
less_in_ga(x1, x2)  =  less_in_ga(x1)
0  =  0
less_out_ga(x1, x2)  =  less_out_ga
s(x1)  =  s(x1)
U5_ga(x1, x2, x3)  =  U5_ga(x3)
U2_ga(x1, x2, x3, x4, x5)  =  U2_ga(x5)
U3_ga(x1, x2, x3, x4, x5)  =  U3_ga(x1, x5)
less_in_ag(x1, x2)  =  less_in_ag(x2)
less_out_ag(x1, x2)  =  less_out_ag(x1)
U5_ag(x1, x2, x3)  =  U5_ag(x3)
U4_ga(x1, x2, x3, x4, x5)  =  U4_ga(x5)
LESS_IN_AG(x1, x2)  =  LESS_IN_AG(x2)

We have to consider all (P,R,Pi)-chains

(8) UsableRulesProof (EQUIVALENT transformation)

For (infinitary) constructor rewriting [LOPSTR] we can delete all non-usable rules from R.

(9) Obligation:

Pi DP problem:
The TRS P consists of the following rules:

LESS_IN_AG(s(X), s(Y)) → LESS_IN_AG(X, Y)

R is empty.
The argument filtering Pi contains the following mapping:
s(x1)  =  s(x1)
LESS_IN_AG(x1, x2)  =  LESS_IN_AG(x2)

We have to consider all (P,R,Pi)-chains

(10) PiDPToQDPProof (SOUND transformation)

Transforming (infinitary) constructor rewriting Pi-DP problem [LOPSTR] into ordinary QDP problem [LPAR04] by application of Pi.

(11) Obligation:

Q DP problem:
The TRS P consists of the following rules:

LESS_IN_AG(s(Y)) → LESS_IN_AG(Y)

R is empty.
Q is empty.
We have to consider all (P,Q,R)-chains.

(12) QDPSizeChangeProof (EQUIVALENT transformation)

By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem.

From the DPs we obtained the following set of size-change graphs:

  • LESS_IN_AG(s(Y)) → LESS_IN_AG(Y)
    The graph contains the following edges 1 > 1

(13) TRUE

(14) Obligation:

Pi DP problem:
The TRS P consists of the following rules:

LESS_IN_GA(s(X), s(Y)) → LESS_IN_GA(X, Y)

The TRS R consists of the following rules:

in_in_ga(X, tree(X, X1, X2)) → in_out_ga(X, tree(X, X1, X2))
in_in_ga(X, tree(Y, Left, X3)) → U1_ga(X, Y, Left, X3, less_in_ga(X, Y))
less_in_ga(0, s(X5)) → less_out_ga(0, s(X5))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U1_ga(X, Y, Left, X3, less_out_ga(X, Y)) → U2_ga(X, Y, Left, X3, in_in_ga(X, Left))
in_in_ga(X, tree(Y, X4, Right)) → U3_ga(X, Y, X4, Right, less_in_ag(Y, X))
less_in_ag(0, s(X5)) → less_out_ag(0, s(X5))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))
U3_ga(X, Y, X4, Right, less_out_ag(Y, X)) → U4_ga(X, Y, X4, Right, in_in_ga(X, Right))
U4_ga(X, Y, X4, Right, in_out_ga(X, Right)) → in_out_ga(X, tree(Y, X4, Right))
U2_ga(X, Y, Left, X3, in_out_ga(X, Left)) → in_out_ga(X, tree(Y, Left, X3))

The argument filtering Pi contains the following mapping:
in_in_ga(x1, x2)  =  in_in_ga(x1)
in_out_ga(x1, x2)  =  in_out_ga
U1_ga(x1, x2, x3, x4, x5)  =  U1_ga(x1, x5)
less_in_ga(x1, x2)  =  less_in_ga(x1)
0  =  0
less_out_ga(x1, x2)  =  less_out_ga
s(x1)  =  s(x1)
U5_ga(x1, x2, x3)  =  U5_ga(x3)
U2_ga(x1, x2, x3, x4, x5)  =  U2_ga(x5)
U3_ga(x1, x2, x3, x4, x5)  =  U3_ga(x1, x5)
less_in_ag(x1, x2)  =  less_in_ag(x2)
less_out_ag(x1, x2)  =  less_out_ag(x1)
U5_ag(x1, x2, x3)  =  U5_ag(x3)
U4_ga(x1, x2, x3, x4, x5)  =  U4_ga(x5)
LESS_IN_GA(x1, x2)  =  LESS_IN_GA(x1)

We have to consider all (P,R,Pi)-chains

(15) UsableRulesProof (EQUIVALENT transformation)

For (infinitary) constructor rewriting [LOPSTR] we can delete all non-usable rules from R.

(16) Obligation:

Pi DP problem:
The TRS P consists of the following rules:

LESS_IN_GA(s(X), s(Y)) → LESS_IN_GA(X, Y)

R is empty.
The argument filtering Pi contains the following mapping:
s(x1)  =  s(x1)
LESS_IN_GA(x1, x2)  =  LESS_IN_GA(x1)

We have to consider all (P,R,Pi)-chains

(17) PiDPToQDPProof (SOUND transformation)

Transforming (infinitary) constructor rewriting Pi-DP problem [LOPSTR] into ordinary QDP problem [LPAR04] by application of Pi.

(18) Obligation:

Q DP problem:
The TRS P consists of the following rules:

LESS_IN_GA(s(X)) → LESS_IN_GA(X)

R is empty.
Q is empty.
We have to consider all (P,Q,R)-chains.

(19) QDPSizeChangeProof (EQUIVALENT transformation)

By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem.

From the DPs we obtained the following set of size-change graphs:

  • LESS_IN_GA(s(X)) → LESS_IN_GA(X)
    The graph contains the following edges 1 > 1

(20) TRUE

(21) Obligation:

Pi DP problem:
The TRS P consists of the following rules:

U1_GA(X, Y, Left, X3, less_out_ga(X, Y)) → IN_IN_GA(X, Left)
IN_IN_GA(X, tree(Y, Left, X3)) → U1_GA(X, Y, Left, X3, less_in_ga(X, Y))
IN_IN_GA(X, tree(Y, X4, Right)) → U3_GA(X, Y, X4, Right, less_in_ag(Y, X))
U3_GA(X, Y, X4, Right, less_out_ag(Y, X)) → IN_IN_GA(X, Right)

The TRS R consists of the following rules:

in_in_ga(X, tree(X, X1, X2)) → in_out_ga(X, tree(X, X1, X2))
in_in_ga(X, tree(Y, Left, X3)) → U1_ga(X, Y, Left, X3, less_in_ga(X, Y))
less_in_ga(0, s(X5)) → less_out_ga(0, s(X5))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U1_ga(X, Y, Left, X3, less_out_ga(X, Y)) → U2_ga(X, Y, Left, X3, in_in_ga(X, Left))
in_in_ga(X, tree(Y, X4, Right)) → U3_ga(X, Y, X4, Right, less_in_ag(Y, X))
less_in_ag(0, s(X5)) → less_out_ag(0, s(X5))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))
U3_ga(X, Y, X4, Right, less_out_ag(Y, X)) → U4_ga(X, Y, X4, Right, in_in_ga(X, Right))
U4_ga(X, Y, X4, Right, in_out_ga(X, Right)) → in_out_ga(X, tree(Y, X4, Right))
U2_ga(X, Y, Left, X3, in_out_ga(X, Left)) → in_out_ga(X, tree(Y, Left, X3))

The argument filtering Pi contains the following mapping:
in_in_ga(x1, x2)  =  in_in_ga(x1)
in_out_ga(x1, x2)  =  in_out_ga
U1_ga(x1, x2, x3, x4, x5)  =  U1_ga(x1, x5)
less_in_ga(x1, x2)  =  less_in_ga(x1)
0  =  0
less_out_ga(x1, x2)  =  less_out_ga
s(x1)  =  s(x1)
U5_ga(x1, x2, x3)  =  U5_ga(x3)
U2_ga(x1, x2, x3, x4, x5)  =  U2_ga(x5)
U3_ga(x1, x2, x3, x4, x5)  =  U3_ga(x1, x5)
less_in_ag(x1, x2)  =  less_in_ag(x2)
less_out_ag(x1, x2)  =  less_out_ag(x1)
U5_ag(x1, x2, x3)  =  U5_ag(x3)
U4_ga(x1, x2, x3, x4, x5)  =  U4_ga(x5)
IN_IN_GA(x1, x2)  =  IN_IN_GA(x1)
U1_GA(x1, x2, x3, x4, x5)  =  U1_GA(x1, x5)
U3_GA(x1, x2, x3, x4, x5)  =  U3_GA(x1, x5)

We have to consider all (P,R,Pi)-chains

(22) UsableRulesProof (EQUIVALENT transformation)

For (infinitary) constructor rewriting [LOPSTR] we can delete all non-usable rules from R.

(23) Obligation:

Pi DP problem:
The TRS P consists of the following rules:

U1_GA(X, Y, Left, X3, less_out_ga(X, Y)) → IN_IN_GA(X, Left)
IN_IN_GA(X, tree(Y, Left, X3)) → U1_GA(X, Y, Left, X3, less_in_ga(X, Y))
IN_IN_GA(X, tree(Y, X4, Right)) → U3_GA(X, Y, X4, Right, less_in_ag(Y, X))
U3_GA(X, Y, X4, Right, less_out_ag(Y, X)) → IN_IN_GA(X, Right)

The TRS R consists of the following rules:

less_in_ga(0, s(X5)) → less_out_ga(0, s(X5))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
less_in_ag(0, s(X5)) → less_out_ag(0, s(X5))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))

The argument filtering Pi contains the following mapping:
less_in_ga(x1, x2)  =  less_in_ga(x1)
0  =  0
less_out_ga(x1, x2)  =  less_out_ga
s(x1)  =  s(x1)
U5_ga(x1, x2, x3)  =  U5_ga(x3)
less_in_ag(x1, x2)  =  less_in_ag(x2)
less_out_ag(x1, x2)  =  less_out_ag(x1)
U5_ag(x1, x2, x3)  =  U5_ag(x3)
IN_IN_GA(x1, x2)  =  IN_IN_GA(x1)
U1_GA(x1, x2, x3, x4, x5)  =  U1_GA(x1, x5)
U3_GA(x1, x2, x3, x4, x5)  =  U3_GA(x1, x5)

We have to consider all (P,R,Pi)-chains

(24) PiDPToQDPProof (SOUND transformation)

Transforming (infinitary) constructor rewriting Pi-DP problem [LOPSTR] into ordinary QDP problem [LPAR04] by application of Pi.

(25) Obligation:

Q DP problem:
The TRS P consists of the following rules:

U1_GA(X, less_out_ga) → IN_IN_GA(X)
IN_IN_GA(X) → U1_GA(X, less_in_ga(X))
IN_IN_GA(X) → U3_GA(X, less_in_ag(X))
U3_GA(X, less_out_ag(Y)) → IN_IN_GA(X)

The TRS R consists of the following rules:

less_in_ga(0) → less_out_ga
less_in_ga(s(X)) → U5_ga(less_in_ga(X))
less_in_ag(s(X5)) → less_out_ag(0)
less_in_ag(s(Y)) → U5_ag(less_in_ag(Y))
U5_ga(less_out_ga) → less_out_ga
U5_ag(less_out_ag(X)) → less_out_ag(s(X))

The set Q consists of the following terms:

less_in_ga(x0)
less_in_ag(x0)
U5_ga(x0)
U5_ag(x0)

We have to consider all (P,Q,R)-chains.

(26) Narrowing (SOUND transformation)

By narrowing [LPAR04] the rule IN_IN_GA(X) → U1_GA(X, less_in_ga(X)) at position [1] we obtained the following new rules [LPAR04]:

IN_IN_GA(0) → U1_GA(0, less_out_ga)
IN_IN_GA(s(x0)) → U1_GA(s(x0), U5_ga(less_in_ga(x0)))

(27) Obligation:

Q DP problem:
The TRS P consists of the following rules:

U1_GA(X, less_out_ga) → IN_IN_GA(X)
IN_IN_GA(X) → U3_GA(X, less_in_ag(X))
U3_GA(X, less_out_ag(Y)) → IN_IN_GA(X)
IN_IN_GA(0) → U1_GA(0, less_out_ga)
IN_IN_GA(s(x0)) → U1_GA(s(x0), U5_ga(less_in_ga(x0)))

The TRS R consists of the following rules:

less_in_ga(0) → less_out_ga
less_in_ga(s(X)) → U5_ga(less_in_ga(X))
less_in_ag(s(X5)) → less_out_ag(0)
less_in_ag(s(Y)) → U5_ag(less_in_ag(Y))
U5_ga(less_out_ga) → less_out_ga
U5_ag(less_out_ag(X)) → less_out_ag(s(X))

The set Q consists of the following terms:

less_in_ga(x0)
less_in_ag(x0)
U5_ga(x0)
U5_ag(x0)

We have to consider all (P,Q,R)-chains.

(28) Narrowing (SOUND transformation)

By narrowing [LPAR04] the rule IN_IN_GA(X) → U3_GA(X, less_in_ag(X)) at position [1] we obtained the following new rules [LPAR04]:

IN_IN_GA(s(x0)) → U3_GA(s(x0), less_out_ag(0))
IN_IN_GA(s(x0)) → U3_GA(s(x0), U5_ag(less_in_ag(x0)))

(29) Obligation:

Q DP problem:
The TRS P consists of the following rules:

U1_GA(X, less_out_ga) → IN_IN_GA(X)
U3_GA(X, less_out_ag(Y)) → IN_IN_GA(X)
IN_IN_GA(0) → U1_GA(0, less_out_ga)
IN_IN_GA(s(x0)) → U1_GA(s(x0), U5_ga(less_in_ga(x0)))
IN_IN_GA(s(x0)) → U3_GA(s(x0), less_out_ag(0))
IN_IN_GA(s(x0)) → U3_GA(s(x0), U5_ag(less_in_ag(x0)))

The TRS R consists of the following rules:

less_in_ga(0) → less_out_ga
less_in_ga(s(X)) → U5_ga(less_in_ga(X))
less_in_ag(s(X5)) → less_out_ag(0)
less_in_ag(s(Y)) → U5_ag(less_in_ag(Y))
U5_ga(less_out_ga) → less_out_ga
U5_ag(less_out_ag(X)) → less_out_ag(s(X))

The set Q consists of the following terms:

less_in_ga(x0)
less_in_ag(x0)
U5_ga(x0)
U5_ag(x0)

We have to consider all (P,Q,R)-chains.

(30) Instantiation (EQUIVALENT transformation)

By instantiating [LPAR04] the rule U1_GA(X, less_out_ga) → IN_IN_GA(X) we obtained the following new rules [LPAR04]:

U1_GA(0, less_out_ga) → IN_IN_GA(0)
U1_GA(s(z0), less_out_ga) → IN_IN_GA(s(z0))

(31) Obligation:

Q DP problem:
The TRS P consists of the following rules:

U3_GA(X, less_out_ag(Y)) → IN_IN_GA(X)
IN_IN_GA(0) → U1_GA(0, less_out_ga)
IN_IN_GA(s(x0)) → U1_GA(s(x0), U5_ga(less_in_ga(x0)))
IN_IN_GA(s(x0)) → U3_GA(s(x0), less_out_ag(0))
IN_IN_GA(s(x0)) → U3_GA(s(x0), U5_ag(less_in_ag(x0)))
U1_GA(0, less_out_ga) → IN_IN_GA(0)
U1_GA(s(z0), less_out_ga) → IN_IN_GA(s(z0))

The TRS R consists of the following rules:

less_in_ga(0) → less_out_ga
less_in_ga(s(X)) → U5_ga(less_in_ga(X))
less_in_ag(s(X5)) → less_out_ag(0)
less_in_ag(s(Y)) → U5_ag(less_in_ag(Y))
U5_ga(less_out_ga) → less_out_ga
U5_ag(less_out_ag(X)) → less_out_ag(s(X))

The set Q consists of the following terms:

less_in_ga(x0)
less_in_ag(x0)
U5_ga(x0)
U5_ag(x0)

We have to consider all (P,Q,R)-chains.

(32) DependencyGraphProof (EQUIVALENT transformation)

The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs.

(33) Complex Obligation (AND)

(34) Obligation:

Q DP problem:
The TRS P consists of the following rules:

U1_GA(0, less_out_ga) → IN_IN_GA(0)
IN_IN_GA(0) → U1_GA(0, less_out_ga)

The TRS R consists of the following rules:

less_in_ga(0) → less_out_ga
less_in_ga(s(X)) → U5_ga(less_in_ga(X))
less_in_ag(s(X5)) → less_out_ag(0)
less_in_ag(s(Y)) → U5_ag(less_in_ag(Y))
U5_ga(less_out_ga) → less_out_ga
U5_ag(less_out_ag(X)) → less_out_ag(s(X))

The set Q consists of the following terms:

less_in_ga(x0)
less_in_ag(x0)
U5_ga(x0)
U5_ag(x0)

We have to consider all (P,Q,R)-chains.

(35) UsableRulesProof (EQUIVALENT transformation)

As all Q-normal forms are R-normal forms we are in the innermost case. Hence, by the usable rules processor [LPAR04] we can delete all non-usable rules [FROCOS05] from R.

(36) Obligation:

Q DP problem:
The TRS P consists of the following rules:

U1_GA(0, less_out_ga) → IN_IN_GA(0)
IN_IN_GA(0) → U1_GA(0, less_out_ga)

R is empty.
The set Q consists of the following terms:

less_in_ga(x0)
less_in_ag(x0)
U5_ga(x0)
U5_ag(x0)

We have to consider all (P,Q,R)-chains.

(37) QReductionProof (EQUIVALENT transformation)

We deleted the following terms from Q as each root-symbol of these terms does neither occur in P nor in R.[THIEMANN].

less_in_ga(x0)
less_in_ag(x0)
U5_ga(x0)
U5_ag(x0)

(38) Obligation:

Q DP problem:
The TRS P consists of the following rules:

U1_GA(0, less_out_ga) → IN_IN_GA(0)
IN_IN_GA(0) → U1_GA(0, less_out_ga)

R is empty.
Q is empty.
We have to consider all (P,Q,R)-chains.

(39) NonTerminationProof (EQUIVALENT transformation)

We used the non-termination processor [FROCOS05] to show that the DP problem is infinite.
Found a loop by narrowing to the left:

s = IN_IN_GA(0) evaluates to t =IN_IN_GA(0)

Thus s starts an infinite chain as s semiunifies with t with the following substitutions:
  • Semiunifier: [ ]
  • Matcher: [ ]




Rewriting sequence

IN_IN_GA(0)U1_GA(0, less_out_ga)
with rule IN_IN_GA(0) → U1_GA(0, less_out_ga) at position [] and matcher [ ]

U1_GA(0, less_out_ga)IN_IN_GA(0)
with rule U1_GA(0, less_out_ga) → IN_IN_GA(0)

Now applying the matcher to the start term leads to a term which is equal to the last term in the rewriting sequence


All these steps are and every following step will be a correct step w.r.t to Q.



(40) FALSE

(41) Obligation:

Q DP problem:
The TRS P consists of the following rules:

IN_IN_GA(s(x0)) → U1_GA(s(x0), U5_ga(less_in_ga(x0)))
U1_GA(s(z0), less_out_ga) → IN_IN_GA(s(z0))
IN_IN_GA(s(x0)) → U3_GA(s(x0), less_out_ag(0))
U3_GA(X, less_out_ag(Y)) → IN_IN_GA(X)
IN_IN_GA(s(x0)) → U3_GA(s(x0), U5_ag(less_in_ag(x0)))

The TRS R consists of the following rules:

less_in_ga(0) → less_out_ga
less_in_ga(s(X)) → U5_ga(less_in_ga(X))
less_in_ag(s(X5)) → less_out_ag(0)
less_in_ag(s(Y)) → U5_ag(less_in_ag(Y))
U5_ga(less_out_ga) → less_out_ga
U5_ag(less_out_ag(X)) → less_out_ag(s(X))

The set Q consists of the following terms:

less_in_ga(x0)
less_in_ag(x0)
U5_ga(x0)
U5_ag(x0)

We have to consider all (P,Q,R)-chains.

(42) Instantiation (EQUIVALENT transformation)

By instantiating [LPAR04] the rule U3_GA(X, less_out_ag(Y)) → IN_IN_GA(X) we obtained the following new rules [LPAR04]:

U3_GA(s(z0), less_out_ag(0)) → IN_IN_GA(s(z0))
U3_GA(s(z0), less_out_ag(x1)) → IN_IN_GA(s(z0))

(43) Obligation:

Q DP problem:
The TRS P consists of the following rules:

IN_IN_GA(s(x0)) → U1_GA(s(x0), U5_ga(less_in_ga(x0)))
U1_GA(s(z0), less_out_ga) → IN_IN_GA(s(z0))
IN_IN_GA(s(x0)) → U3_GA(s(x0), less_out_ag(0))
IN_IN_GA(s(x0)) → U3_GA(s(x0), U5_ag(less_in_ag(x0)))
U3_GA(s(z0), less_out_ag(0)) → IN_IN_GA(s(z0))
U3_GA(s(z0), less_out_ag(x1)) → IN_IN_GA(s(z0))

The TRS R consists of the following rules:

less_in_ga(0) → less_out_ga
less_in_ga(s(X)) → U5_ga(less_in_ga(X))
less_in_ag(s(X5)) → less_out_ag(0)
less_in_ag(s(Y)) → U5_ag(less_in_ag(Y))
U5_ga(less_out_ga) → less_out_ga
U5_ag(less_out_ag(X)) → less_out_ag(s(X))

The set Q consists of the following terms:

less_in_ga(x0)
less_in_ag(x0)
U5_ga(x0)
U5_ag(x0)

We have to consider all (P,Q,R)-chains.

(44) NonTerminationProof (EQUIVALENT transformation)

We used the non-termination processor [FROCOS05] to show that the DP problem is infinite.
Found a loop by narrowing to the left:

s = U3_GA(s(z0), less_out_ag(0)) evaluates to t =U3_GA(s(z0), less_out_ag(0))

Thus s starts an infinite chain as s semiunifies with t with the following substitutions:
  • Matcher: [ ]
  • Semiunifier: [ ]




Rewriting sequence

U3_GA(s(z0), less_out_ag(0))IN_IN_GA(s(z0))
with rule U3_GA(s(z0'), less_out_ag(0)) → IN_IN_GA(s(z0')) at position [] and matcher [z0' / z0]

IN_IN_GA(s(z0))U3_GA(s(z0), less_out_ag(0))
with rule IN_IN_GA(s(x0)) → U3_GA(s(x0), less_out_ag(0))

Now applying the matcher to the start term leads to a term which is equal to the last term in the rewriting sequence


All these steps are and every following step will be a correct step w.r.t to Q.



(45) FALSE

(46) PrologToPiTRSProof (SOUND transformation)

We use the technique of [LOPSTR]. With regard to the inferred argument filtering the predicates were used in the following modes:
in_in: (b,f)
less_in: (b,f) (f,b)
Transforming Prolog into the following Term Rewriting System:
Pi-finite rewrite system:
The TRS R consists of the following rules:

in_in_ga(X, tree(X, X1, X2)) → in_out_ga(X, tree(X, X1, X2))
in_in_ga(X, tree(Y, Left, X3)) → U1_ga(X, Y, Left, X3, less_in_ga(X, Y))
less_in_ga(0, s(X5)) → less_out_ga(0, s(X5))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U1_ga(X, Y, Left, X3, less_out_ga(X, Y)) → U2_ga(X, Y, Left, X3, in_in_ga(X, Left))
in_in_ga(X, tree(Y, X4, Right)) → U3_ga(X, Y, X4, Right, less_in_ag(Y, X))
less_in_ag(0, s(X5)) → less_out_ag(0, s(X5))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))
U3_ga(X, Y, X4, Right, less_out_ag(Y, X)) → U4_ga(X, Y, X4, Right, in_in_ga(X, Right))
U4_ga(X, Y, X4, Right, in_out_ga(X, Right)) → in_out_ga(X, tree(Y, X4, Right))
U2_ga(X, Y, Left, X3, in_out_ga(X, Left)) → in_out_ga(X, tree(Y, Left, X3))

The argument filtering Pi contains the following mapping:
in_in_ga(x1, x2)  =  in_in_ga(x1)
in_out_ga(x1, x2)  =  in_out_ga(x1)
U1_ga(x1, x2, x3, x4, x5)  =  U1_ga(x1, x5)
less_in_ga(x1, x2)  =  less_in_ga(x1)
0  =  0
less_out_ga(x1, x2)  =  less_out_ga(x1)
s(x1)  =  s(x1)
U5_ga(x1, x2, x3)  =  U5_ga(x1, x3)
U2_ga(x1, x2, x3, x4, x5)  =  U2_ga(x1, x5)
U3_ga(x1, x2, x3, x4, x5)  =  U3_ga(x1, x5)
less_in_ag(x1, x2)  =  less_in_ag(x2)
less_out_ag(x1, x2)  =  less_out_ag(x1, x2)
U5_ag(x1, x2, x3)  =  U5_ag(x2, x3)
U4_ga(x1, x2, x3, x4, x5)  =  U4_ga(x1, x5)

Infinitary Constructor Rewriting Termination of PiTRS implies Termination of Prolog

(47) Obligation:

Pi-finite rewrite system:
The TRS R consists of the following rules:

in_in_ga(X, tree(X, X1, X2)) → in_out_ga(X, tree(X, X1, X2))
in_in_ga(X, tree(Y, Left, X3)) → U1_ga(X, Y, Left, X3, less_in_ga(X, Y))
less_in_ga(0, s(X5)) → less_out_ga(0, s(X5))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U1_ga(X, Y, Left, X3, less_out_ga(X, Y)) → U2_ga(X, Y, Left, X3, in_in_ga(X, Left))
in_in_ga(X, tree(Y, X4, Right)) → U3_ga(X, Y, X4, Right, less_in_ag(Y, X))
less_in_ag(0, s(X5)) → less_out_ag(0, s(X5))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))
U3_ga(X, Y, X4, Right, less_out_ag(Y, X)) → U4_ga(X, Y, X4, Right, in_in_ga(X, Right))
U4_ga(X, Y, X4, Right, in_out_ga(X, Right)) → in_out_ga(X, tree(Y, X4, Right))
U2_ga(X, Y, Left, X3, in_out_ga(X, Left)) → in_out_ga(X, tree(Y, Left, X3))

The argument filtering Pi contains the following mapping:
in_in_ga(x1, x2)  =  in_in_ga(x1)
in_out_ga(x1, x2)  =  in_out_ga(x1)
U1_ga(x1, x2, x3, x4, x5)  =  U1_ga(x1, x5)
less_in_ga(x1, x2)  =  less_in_ga(x1)
0  =  0
less_out_ga(x1, x2)  =  less_out_ga(x1)
s(x1)  =  s(x1)
U5_ga(x1, x2, x3)  =  U5_ga(x1, x3)
U2_ga(x1, x2, x3, x4, x5)  =  U2_ga(x1, x5)
U3_ga(x1, x2, x3, x4, x5)  =  U3_ga(x1, x5)
less_in_ag(x1, x2)  =  less_in_ag(x2)
less_out_ag(x1, x2)  =  less_out_ag(x1, x2)
U5_ag(x1, x2, x3)  =  U5_ag(x2, x3)
U4_ga(x1, x2, x3, x4, x5)  =  U4_ga(x1, x5)

(48) DependencyPairsProof (EQUIVALENT transformation)

Using Dependency Pairs [AG00,LOPSTR] we result in the following initial DP problem:
Pi DP problem:
The TRS P consists of the following rules:

IN_IN_GA(X, tree(Y, Left, X3)) → U1_GA(X, Y, Left, X3, less_in_ga(X, Y))
IN_IN_GA(X, tree(Y, Left, X3)) → LESS_IN_GA(X, Y)
LESS_IN_GA(s(X), s(Y)) → U5_GA(X, Y, less_in_ga(X, Y))
LESS_IN_GA(s(X), s(Y)) → LESS_IN_GA(X, Y)
U1_GA(X, Y, Left, X3, less_out_ga(X, Y)) → U2_GA(X, Y, Left, X3, in_in_ga(X, Left))
U1_GA(X, Y, Left, X3, less_out_ga(X, Y)) → IN_IN_GA(X, Left)
IN_IN_GA(X, tree(Y, X4, Right)) → U3_GA(X, Y, X4, Right, less_in_ag(Y, X))
IN_IN_GA(X, tree(Y, X4, Right)) → LESS_IN_AG(Y, X)
LESS_IN_AG(s(X), s(Y)) → U5_AG(X, Y, less_in_ag(X, Y))
LESS_IN_AG(s(X), s(Y)) → LESS_IN_AG(X, Y)
U3_GA(X, Y, X4, Right, less_out_ag(Y, X)) → U4_GA(X, Y, X4, Right, in_in_ga(X, Right))
U3_GA(X, Y, X4, Right, less_out_ag(Y, X)) → IN_IN_GA(X, Right)

The TRS R consists of the following rules:

in_in_ga(X, tree(X, X1, X2)) → in_out_ga(X, tree(X, X1, X2))
in_in_ga(X, tree(Y, Left, X3)) → U1_ga(X, Y, Left, X3, less_in_ga(X, Y))
less_in_ga(0, s(X5)) → less_out_ga(0, s(X5))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U1_ga(X, Y, Left, X3, less_out_ga(X, Y)) → U2_ga(X, Y, Left, X3, in_in_ga(X, Left))
in_in_ga(X, tree(Y, X4, Right)) → U3_ga(X, Y, X4, Right, less_in_ag(Y, X))
less_in_ag(0, s(X5)) → less_out_ag(0, s(X5))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))
U3_ga(X, Y, X4, Right, less_out_ag(Y, X)) → U4_ga(X, Y, X4, Right, in_in_ga(X, Right))
U4_ga(X, Y, X4, Right, in_out_ga(X, Right)) → in_out_ga(X, tree(Y, X4, Right))
U2_ga(X, Y, Left, X3, in_out_ga(X, Left)) → in_out_ga(X, tree(Y, Left, X3))

The argument filtering Pi contains the following mapping:
in_in_ga(x1, x2)  =  in_in_ga(x1)
in_out_ga(x1, x2)  =  in_out_ga(x1)
U1_ga(x1, x2, x3, x4, x5)  =  U1_ga(x1, x5)
less_in_ga(x1, x2)  =  less_in_ga(x1)
0  =  0
less_out_ga(x1, x2)  =  less_out_ga(x1)
s(x1)  =  s(x1)
U5_ga(x1, x2, x3)  =  U5_ga(x1, x3)
U2_ga(x1, x2, x3, x4, x5)  =  U2_ga(x1, x5)
U3_ga(x1, x2, x3, x4, x5)  =  U3_ga(x1, x5)
less_in_ag(x1, x2)  =  less_in_ag(x2)
less_out_ag(x1, x2)  =  less_out_ag(x1, x2)
U5_ag(x1, x2, x3)  =  U5_ag(x2, x3)
U4_ga(x1, x2, x3, x4, x5)  =  U4_ga(x1, x5)
IN_IN_GA(x1, x2)  =  IN_IN_GA(x1)
U1_GA(x1, x2, x3, x4, x5)  =  U1_GA(x1, x5)
LESS_IN_GA(x1, x2)  =  LESS_IN_GA(x1)
U5_GA(x1, x2, x3)  =  U5_GA(x1, x3)
U2_GA(x1, x2, x3, x4, x5)  =  U2_GA(x1, x5)
U3_GA(x1, x2, x3, x4, x5)  =  U3_GA(x1, x5)
LESS_IN_AG(x1, x2)  =  LESS_IN_AG(x2)
U5_AG(x1, x2, x3)  =  U5_AG(x2, x3)
U4_GA(x1, x2, x3, x4, x5)  =  U4_GA(x1, x5)

We have to consider all (P,R,Pi)-chains

(49) Obligation:

Pi DP problem:
The TRS P consists of the following rules:

IN_IN_GA(X, tree(Y, Left, X3)) → U1_GA(X, Y, Left, X3, less_in_ga(X, Y))
IN_IN_GA(X, tree(Y, Left, X3)) → LESS_IN_GA(X, Y)
LESS_IN_GA(s(X), s(Y)) → U5_GA(X, Y, less_in_ga(X, Y))
LESS_IN_GA(s(X), s(Y)) → LESS_IN_GA(X, Y)
U1_GA(X, Y, Left, X3, less_out_ga(X, Y)) → U2_GA(X, Y, Left, X3, in_in_ga(X, Left))
U1_GA(X, Y, Left, X3, less_out_ga(X, Y)) → IN_IN_GA(X, Left)
IN_IN_GA(X, tree(Y, X4, Right)) → U3_GA(X, Y, X4, Right, less_in_ag(Y, X))
IN_IN_GA(X, tree(Y, X4, Right)) → LESS_IN_AG(Y, X)
LESS_IN_AG(s(X), s(Y)) → U5_AG(X, Y, less_in_ag(X, Y))
LESS_IN_AG(s(X), s(Y)) → LESS_IN_AG(X, Y)
U3_GA(X, Y, X4, Right, less_out_ag(Y, X)) → U4_GA(X, Y, X4, Right, in_in_ga(X, Right))
U3_GA(X, Y, X4, Right, less_out_ag(Y, X)) → IN_IN_GA(X, Right)

The TRS R consists of the following rules:

in_in_ga(X, tree(X, X1, X2)) → in_out_ga(X, tree(X, X1, X2))
in_in_ga(X, tree(Y, Left, X3)) → U1_ga(X, Y, Left, X3, less_in_ga(X, Y))
less_in_ga(0, s(X5)) → less_out_ga(0, s(X5))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U1_ga(X, Y, Left, X3, less_out_ga(X, Y)) → U2_ga(X, Y, Left, X3, in_in_ga(X, Left))
in_in_ga(X, tree(Y, X4, Right)) → U3_ga(X, Y, X4, Right, less_in_ag(Y, X))
less_in_ag(0, s(X5)) → less_out_ag(0, s(X5))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))
U3_ga(X, Y, X4, Right, less_out_ag(Y, X)) → U4_ga(X, Y, X4, Right, in_in_ga(X, Right))
U4_ga(X, Y, X4, Right, in_out_ga(X, Right)) → in_out_ga(X, tree(Y, X4, Right))
U2_ga(X, Y, Left, X3, in_out_ga(X, Left)) → in_out_ga(X, tree(Y, Left, X3))

The argument filtering Pi contains the following mapping:
in_in_ga(x1, x2)  =  in_in_ga(x1)
in_out_ga(x1, x2)  =  in_out_ga(x1)
U1_ga(x1, x2, x3, x4, x5)  =  U1_ga(x1, x5)
less_in_ga(x1, x2)  =  less_in_ga(x1)
0  =  0
less_out_ga(x1, x2)  =  less_out_ga(x1)
s(x1)  =  s(x1)
U5_ga(x1, x2, x3)  =  U5_ga(x1, x3)
U2_ga(x1, x2, x3, x4, x5)  =  U2_ga(x1, x5)
U3_ga(x1, x2, x3, x4, x5)  =  U3_ga(x1, x5)
less_in_ag(x1, x2)  =  less_in_ag(x2)
less_out_ag(x1, x2)  =  less_out_ag(x1, x2)
U5_ag(x1, x2, x3)  =  U5_ag(x2, x3)
U4_ga(x1, x2, x3, x4, x5)  =  U4_ga(x1, x5)
IN_IN_GA(x1, x2)  =  IN_IN_GA(x1)
U1_GA(x1, x2, x3, x4, x5)  =  U1_GA(x1, x5)
LESS_IN_GA(x1, x2)  =  LESS_IN_GA(x1)
U5_GA(x1, x2, x3)  =  U5_GA(x1, x3)
U2_GA(x1, x2, x3, x4, x5)  =  U2_GA(x1, x5)
U3_GA(x1, x2, x3, x4, x5)  =  U3_GA(x1, x5)
LESS_IN_AG(x1, x2)  =  LESS_IN_AG(x2)
U5_AG(x1, x2, x3)  =  U5_AG(x2, x3)
U4_GA(x1, x2, x3, x4, x5)  =  U4_GA(x1, x5)

We have to consider all (P,R,Pi)-chains

(50) DependencyGraphProof (EQUIVALENT transformation)

The approximation of the Dependency Graph [LOPSTR] contains 3 SCCs with 6 less nodes.

(51) Complex Obligation (AND)

(52) Obligation:

Pi DP problem:
The TRS P consists of the following rules:

LESS_IN_AG(s(X), s(Y)) → LESS_IN_AG(X, Y)

The TRS R consists of the following rules:

in_in_ga(X, tree(X, X1, X2)) → in_out_ga(X, tree(X, X1, X2))
in_in_ga(X, tree(Y, Left, X3)) → U1_ga(X, Y, Left, X3, less_in_ga(X, Y))
less_in_ga(0, s(X5)) → less_out_ga(0, s(X5))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U1_ga(X, Y, Left, X3, less_out_ga(X, Y)) → U2_ga(X, Y, Left, X3, in_in_ga(X, Left))
in_in_ga(X, tree(Y, X4, Right)) → U3_ga(X, Y, X4, Right, less_in_ag(Y, X))
less_in_ag(0, s(X5)) → less_out_ag(0, s(X5))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))
U3_ga(X, Y, X4, Right, less_out_ag(Y, X)) → U4_ga(X, Y, X4, Right, in_in_ga(X, Right))
U4_ga(X, Y, X4, Right, in_out_ga(X, Right)) → in_out_ga(X, tree(Y, X4, Right))
U2_ga(X, Y, Left, X3, in_out_ga(X, Left)) → in_out_ga(X, tree(Y, Left, X3))

The argument filtering Pi contains the following mapping:
in_in_ga(x1, x2)  =  in_in_ga(x1)
in_out_ga(x1, x2)  =  in_out_ga(x1)
U1_ga(x1, x2, x3, x4, x5)  =  U1_ga(x1, x5)
less_in_ga(x1, x2)  =  less_in_ga(x1)
0  =  0
less_out_ga(x1, x2)  =  less_out_ga(x1)
s(x1)  =  s(x1)
U5_ga(x1, x2, x3)  =  U5_ga(x1, x3)
U2_ga(x1, x2, x3, x4, x5)  =  U2_ga(x1, x5)
U3_ga(x1, x2, x3, x4, x5)  =  U3_ga(x1, x5)
less_in_ag(x1, x2)  =  less_in_ag(x2)
less_out_ag(x1, x2)  =  less_out_ag(x1, x2)
U5_ag(x1, x2, x3)  =  U5_ag(x2, x3)
U4_ga(x1, x2, x3, x4, x5)  =  U4_ga(x1, x5)
LESS_IN_AG(x1, x2)  =  LESS_IN_AG(x2)

We have to consider all (P,R,Pi)-chains

(53) UsableRulesProof (EQUIVALENT transformation)

For (infinitary) constructor rewriting [LOPSTR] we can delete all non-usable rules from R.

(54) Obligation:

Pi DP problem:
The TRS P consists of the following rules:

LESS_IN_AG(s(X), s(Y)) → LESS_IN_AG(X, Y)

R is empty.
The argument filtering Pi contains the following mapping:
s(x1)  =  s(x1)
LESS_IN_AG(x1, x2)  =  LESS_IN_AG(x2)

We have to consider all (P,R,Pi)-chains

(55) PiDPToQDPProof (SOUND transformation)

Transforming (infinitary) constructor rewriting Pi-DP problem [LOPSTR] into ordinary QDP problem [LPAR04] by application of Pi.

(56) Obligation:

Q DP problem:
The TRS P consists of the following rules:

LESS_IN_AG(s(Y)) → LESS_IN_AG(Y)

R is empty.
Q is empty.
We have to consider all (P,Q,R)-chains.

(57) QDPSizeChangeProof (EQUIVALENT transformation)

By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem.

From the DPs we obtained the following set of size-change graphs:

  • LESS_IN_AG(s(Y)) → LESS_IN_AG(Y)
    The graph contains the following edges 1 > 1

(58) TRUE

(59) Obligation:

Pi DP problem:
The TRS P consists of the following rules:

LESS_IN_GA(s(X), s(Y)) → LESS_IN_GA(X, Y)

The TRS R consists of the following rules:

in_in_ga(X, tree(X, X1, X2)) → in_out_ga(X, tree(X, X1, X2))
in_in_ga(X, tree(Y, Left, X3)) → U1_ga(X, Y, Left, X3, less_in_ga(X, Y))
less_in_ga(0, s(X5)) → less_out_ga(0, s(X5))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U1_ga(X, Y, Left, X3, less_out_ga(X, Y)) → U2_ga(X, Y, Left, X3, in_in_ga(X, Left))
in_in_ga(X, tree(Y, X4, Right)) → U3_ga(X, Y, X4, Right, less_in_ag(Y, X))
less_in_ag(0, s(X5)) → less_out_ag(0, s(X5))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))
U3_ga(X, Y, X4, Right, less_out_ag(Y, X)) → U4_ga(X, Y, X4, Right, in_in_ga(X, Right))
U4_ga(X, Y, X4, Right, in_out_ga(X, Right)) → in_out_ga(X, tree(Y, X4, Right))
U2_ga(X, Y, Left, X3, in_out_ga(X, Left)) → in_out_ga(X, tree(Y, Left, X3))

The argument filtering Pi contains the following mapping:
in_in_ga(x1, x2)  =  in_in_ga(x1)
in_out_ga(x1, x2)  =  in_out_ga(x1)
U1_ga(x1, x2, x3, x4, x5)  =  U1_ga(x1, x5)
less_in_ga(x1, x2)  =  less_in_ga(x1)
0  =  0
less_out_ga(x1, x2)  =  less_out_ga(x1)
s(x1)  =  s(x1)
U5_ga(x1, x2, x3)  =  U5_ga(x1, x3)
U2_ga(x1, x2, x3, x4, x5)  =  U2_ga(x1, x5)
U3_ga(x1, x2, x3, x4, x5)  =  U3_ga(x1, x5)
less_in_ag(x1, x2)  =  less_in_ag(x2)
less_out_ag(x1, x2)  =  less_out_ag(x1, x2)
U5_ag(x1, x2, x3)  =  U5_ag(x2, x3)
U4_ga(x1, x2, x3, x4, x5)  =  U4_ga(x1, x5)
LESS_IN_GA(x1, x2)  =  LESS_IN_GA(x1)

We have to consider all (P,R,Pi)-chains

(60) UsableRulesProof (EQUIVALENT transformation)

For (infinitary) constructor rewriting [LOPSTR] we can delete all non-usable rules from R.

(61) Obligation:

Pi DP problem:
The TRS P consists of the following rules:

LESS_IN_GA(s(X), s(Y)) → LESS_IN_GA(X, Y)

R is empty.
The argument filtering Pi contains the following mapping:
s(x1)  =  s(x1)
LESS_IN_GA(x1, x2)  =  LESS_IN_GA(x1)

We have to consider all (P,R,Pi)-chains

(62) PiDPToQDPProof (SOUND transformation)

Transforming (infinitary) constructor rewriting Pi-DP problem [LOPSTR] into ordinary QDP problem [LPAR04] by application of Pi.

(63) Obligation:

Q DP problem:
The TRS P consists of the following rules:

LESS_IN_GA(s(X)) → LESS_IN_GA(X)

R is empty.
Q is empty.
We have to consider all (P,Q,R)-chains.

(64) QDPSizeChangeProof (EQUIVALENT transformation)

By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem.

From the DPs we obtained the following set of size-change graphs:

  • LESS_IN_GA(s(X)) → LESS_IN_GA(X)
    The graph contains the following edges 1 > 1

(65) TRUE

(66) Obligation:

Pi DP problem:
The TRS P consists of the following rules:

U1_GA(X, Y, Left, X3, less_out_ga(X, Y)) → IN_IN_GA(X, Left)
IN_IN_GA(X, tree(Y, Left, X3)) → U1_GA(X, Y, Left, X3, less_in_ga(X, Y))
IN_IN_GA(X, tree(Y, X4, Right)) → U3_GA(X, Y, X4, Right, less_in_ag(Y, X))
U3_GA(X, Y, X4, Right, less_out_ag(Y, X)) → IN_IN_GA(X, Right)

The TRS R consists of the following rules:

in_in_ga(X, tree(X, X1, X2)) → in_out_ga(X, tree(X, X1, X2))
in_in_ga(X, tree(Y, Left, X3)) → U1_ga(X, Y, Left, X3, less_in_ga(X, Y))
less_in_ga(0, s(X5)) → less_out_ga(0, s(X5))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U1_ga(X, Y, Left, X3, less_out_ga(X, Y)) → U2_ga(X, Y, Left, X3, in_in_ga(X, Left))
in_in_ga(X, tree(Y, X4, Right)) → U3_ga(X, Y, X4, Right, less_in_ag(Y, X))
less_in_ag(0, s(X5)) → less_out_ag(0, s(X5))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))
U3_ga(X, Y, X4, Right, less_out_ag(Y, X)) → U4_ga(X, Y, X4, Right, in_in_ga(X, Right))
U4_ga(X, Y, X4, Right, in_out_ga(X, Right)) → in_out_ga(X, tree(Y, X4, Right))
U2_ga(X, Y, Left, X3, in_out_ga(X, Left)) → in_out_ga(X, tree(Y, Left, X3))

The argument filtering Pi contains the following mapping:
in_in_ga(x1, x2)  =  in_in_ga(x1)
in_out_ga(x1, x2)  =  in_out_ga(x1)
U1_ga(x1, x2, x3, x4, x5)  =  U1_ga(x1, x5)
less_in_ga(x1, x2)  =  less_in_ga(x1)
0  =  0
less_out_ga(x1, x2)  =  less_out_ga(x1)
s(x1)  =  s(x1)
U5_ga(x1, x2, x3)  =  U5_ga(x1, x3)
U2_ga(x1, x2, x3, x4, x5)  =  U2_ga(x1, x5)
U3_ga(x1, x2, x3, x4, x5)  =  U3_ga(x1, x5)
less_in_ag(x1, x2)  =  less_in_ag(x2)
less_out_ag(x1, x2)  =  less_out_ag(x1, x2)
U5_ag(x1, x2, x3)  =  U5_ag(x2, x3)
U4_ga(x1, x2, x3, x4, x5)  =  U4_ga(x1, x5)
IN_IN_GA(x1, x2)  =  IN_IN_GA(x1)
U1_GA(x1, x2, x3, x4, x5)  =  U1_GA(x1, x5)
U3_GA(x1, x2, x3, x4, x5)  =  U3_GA(x1, x5)

We have to consider all (P,R,Pi)-chains

(67) UsableRulesProof (EQUIVALENT transformation)

For (infinitary) constructor rewriting [LOPSTR] we can delete all non-usable rules from R.

(68) Obligation:

Pi DP problem:
The TRS P consists of the following rules:

U1_GA(X, Y, Left, X3, less_out_ga(X, Y)) → IN_IN_GA(X, Left)
IN_IN_GA(X, tree(Y, Left, X3)) → U1_GA(X, Y, Left, X3, less_in_ga(X, Y))
IN_IN_GA(X, tree(Y, X4, Right)) → U3_GA(X, Y, X4, Right, less_in_ag(Y, X))
U3_GA(X, Y, X4, Right, less_out_ag(Y, X)) → IN_IN_GA(X, Right)

The TRS R consists of the following rules:

less_in_ga(0, s(X5)) → less_out_ga(0, s(X5))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
less_in_ag(0, s(X5)) → less_out_ag(0, s(X5))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))

The argument filtering Pi contains the following mapping:
less_in_ga(x1, x2)  =  less_in_ga(x1)
0  =  0
less_out_ga(x1, x2)  =  less_out_ga(x1)
s(x1)  =  s(x1)
U5_ga(x1, x2, x3)  =  U5_ga(x1, x3)
less_in_ag(x1, x2)  =  less_in_ag(x2)
less_out_ag(x1, x2)  =  less_out_ag(x1, x2)
U5_ag(x1, x2, x3)  =  U5_ag(x2, x3)
IN_IN_GA(x1, x2)  =  IN_IN_GA(x1)
U1_GA(x1, x2, x3, x4, x5)  =  U1_GA(x1, x5)
U3_GA(x1, x2, x3, x4, x5)  =  U3_GA(x1, x5)

We have to consider all (P,R,Pi)-chains

(69) PiDPToQDPProof (SOUND transformation)

Transforming (infinitary) constructor rewriting Pi-DP problem [LOPSTR] into ordinary QDP problem [LPAR04] by application of Pi.

(70) Obligation:

Q DP problem:
The TRS P consists of the following rules:

U1_GA(X, less_out_ga(X)) → IN_IN_GA(X)
IN_IN_GA(X) → U1_GA(X, less_in_ga(X))
IN_IN_GA(X) → U3_GA(X, less_in_ag(X))
U3_GA(X, less_out_ag(Y, X)) → IN_IN_GA(X)

The TRS R consists of the following rules:

less_in_ga(0) → less_out_ga(0)
less_in_ga(s(X)) → U5_ga(X, less_in_ga(X))
less_in_ag(s(X5)) → less_out_ag(0, s(X5))
less_in_ag(s(Y)) → U5_ag(Y, less_in_ag(Y))
U5_ga(X, less_out_ga(X)) → less_out_ga(s(X))
U5_ag(Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))

The set Q consists of the following terms:

less_in_ga(x0)
less_in_ag(x0)
U5_ga(x0, x1)
U5_ag(x0, x1)

We have to consider all (P,Q,R)-chains.

(71) Narrowing (SOUND transformation)

By narrowing [LPAR04] the rule IN_IN_GA(X) → U1_GA(X, less_in_ga(X)) at position [1] we obtained the following new rules [LPAR04]:

IN_IN_GA(0) → U1_GA(0, less_out_ga(0))
IN_IN_GA(s(x0)) → U1_GA(s(x0), U5_ga(x0, less_in_ga(x0)))

(72) Obligation:

Q DP problem:
The TRS P consists of the following rules:

U1_GA(X, less_out_ga(X)) → IN_IN_GA(X)
IN_IN_GA(X) → U3_GA(X, less_in_ag(X))
U3_GA(X, less_out_ag(Y, X)) → IN_IN_GA(X)
IN_IN_GA(0) → U1_GA(0, less_out_ga(0))
IN_IN_GA(s(x0)) → U1_GA(s(x0), U5_ga(x0, less_in_ga(x0)))

The TRS R consists of the following rules:

less_in_ga(0) → less_out_ga(0)
less_in_ga(s(X)) → U5_ga(X, less_in_ga(X))
less_in_ag(s(X5)) → less_out_ag(0, s(X5))
less_in_ag(s(Y)) → U5_ag(Y, less_in_ag(Y))
U5_ga(X, less_out_ga(X)) → less_out_ga(s(X))
U5_ag(Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))

The set Q consists of the following terms:

less_in_ga(x0)
less_in_ag(x0)
U5_ga(x0, x1)
U5_ag(x0, x1)

We have to consider all (P,Q,R)-chains.

(73) Narrowing (SOUND transformation)

By narrowing [LPAR04] the rule IN_IN_GA(X) → U3_GA(X, less_in_ag(X)) at position [1] we obtained the following new rules [LPAR04]:

IN_IN_GA(s(x0)) → U3_GA(s(x0), less_out_ag(0, s(x0)))
IN_IN_GA(s(x0)) → U3_GA(s(x0), U5_ag(x0, less_in_ag(x0)))

(74) Obligation:

Q DP problem:
The TRS P consists of the following rules:

U1_GA(X, less_out_ga(X)) → IN_IN_GA(X)
U3_GA(X, less_out_ag(Y, X)) → IN_IN_GA(X)
IN_IN_GA(0) → U1_GA(0, less_out_ga(0))
IN_IN_GA(s(x0)) → U1_GA(s(x0), U5_ga(x0, less_in_ga(x0)))
IN_IN_GA(s(x0)) → U3_GA(s(x0), less_out_ag(0, s(x0)))
IN_IN_GA(s(x0)) → U3_GA(s(x0), U5_ag(x0, less_in_ag(x0)))

The TRS R consists of the following rules:

less_in_ga(0) → less_out_ga(0)
less_in_ga(s(X)) → U5_ga(X, less_in_ga(X))
less_in_ag(s(X5)) → less_out_ag(0, s(X5))
less_in_ag(s(Y)) → U5_ag(Y, less_in_ag(Y))
U5_ga(X, less_out_ga(X)) → less_out_ga(s(X))
U5_ag(Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))

The set Q consists of the following terms:

less_in_ga(x0)
less_in_ag(x0)
U5_ga(x0, x1)
U5_ag(x0, x1)

We have to consider all (P,Q,R)-chains.

(75) Instantiation (EQUIVALENT transformation)

By instantiating [LPAR04] the rule U1_GA(X, less_out_ga(X)) → IN_IN_GA(X) we obtained the following new rules [LPAR04]:

U1_GA(0, less_out_ga(0)) → IN_IN_GA(0)
U1_GA(s(z0), less_out_ga(s(z0))) → IN_IN_GA(s(z0))

(76) Obligation:

Q DP problem:
The TRS P consists of the following rules:

U3_GA(X, less_out_ag(Y, X)) → IN_IN_GA(X)
IN_IN_GA(0) → U1_GA(0, less_out_ga(0))
IN_IN_GA(s(x0)) → U1_GA(s(x0), U5_ga(x0, less_in_ga(x0)))
IN_IN_GA(s(x0)) → U3_GA(s(x0), less_out_ag(0, s(x0)))
IN_IN_GA(s(x0)) → U3_GA(s(x0), U5_ag(x0, less_in_ag(x0)))
U1_GA(0, less_out_ga(0)) → IN_IN_GA(0)
U1_GA(s(z0), less_out_ga(s(z0))) → IN_IN_GA(s(z0))

The TRS R consists of the following rules:

less_in_ga(0) → less_out_ga(0)
less_in_ga(s(X)) → U5_ga(X, less_in_ga(X))
less_in_ag(s(X5)) → less_out_ag(0, s(X5))
less_in_ag(s(Y)) → U5_ag(Y, less_in_ag(Y))
U5_ga(X, less_out_ga(X)) → less_out_ga(s(X))
U5_ag(Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))

The set Q consists of the following terms:

less_in_ga(x0)
less_in_ag(x0)
U5_ga(x0, x1)
U5_ag(x0, x1)

We have to consider all (P,Q,R)-chains.

(77) DependencyGraphProof (EQUIVALENT transformation)

The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs.

(78) Complex Obligation (AND)

(79) Obligation:

Q DP problem:
The TRS P consists of the following rules:

U1_GA(0, less_out_ga(0)) → IN_IN_GA(0)
IN_IN_GA(0) → U1_GA(0, less_out_ga(0))

The TRS R consists of the following rules:

less_in_ga(0) → less_out_ga(0)
less_in_ga(s(X)) → U5_ga(X, less_in_ga(X))
less_in_ag(s(X5)) → less_out_ag(0, s(X5))
less_in_ag(s(Y)) → U5_ag(Y, less_in_ag(Y))
U5_ga(X, less_out_ga(X)) → less_out_ga(s(X))
U5_ag(Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))

The set Q consists of the following terms:

less_in_ga(x0)
less_in_ag(x0)
U5_ga(x0, x1)
U5_ag(x0, x1)

We have to consider all (P,Q,R)-chains.

(80) UsableRulesProof (EQUIVALENT transformation)

As all Q-normal forms are R-normal forms we are in the innermost case. Hence, by the usable rules processor [LPAR04] we can delete all non-usable rules [FROCOS05] from R.

(81) Obligation:

Q DP problem:
The TRS P consists of the following rules:

U1_GA(0, less_out_ga(0)) → IN_IN_GA(0)
IN_IN_GA(0) → U1_GA(0, less_out_ga(0))

R is empty.
The set Q consists of the following terms:

less_in_ga(x0)
less_in_ag(x0)
U5_ga(x0, x1)
U5_ag(x0, x1)

We have to consider all (P,Q,R)-chains.

(82) QReductionProof (EQUIVALENT transformation)

We deleted the following terms from Q as each root-symbol of these terms does neither occur in P nor in R.[THIEMANN].

less_in_ga(x0)
less_in_ag(x0)
U5_ga(x0, x1)
U5_ag(x0, x1)

(83) Obligation:

Q DP problem:
The TRS P consists of the following rules:

U1_GA(0, less_out_ga(0)) → IN_IN_GA(0)
IN_IN_GA(0) → U1_GA(0, less_out_ga(0))

R is empty.
Q is empty.
We have to consider all (P,Q,R)-chains.

(84) NonTerminationProof (EQUIVALENT transformation)

We used the non-termination processor [FROCOS05] to show that the DP problem is infinite.
Found a loop by narrowing to the left:

s = IN_IN_GA(0) evaluates to t =IN_IN_GA(0)

Thus s starts an infinite chain as s semiunifies with t with the following substitutions:
  • Matcher: [ ]
  • Semiunifier: [ ]




Rewriting sequence

IN_IN_GA(0)U1_GA(0, less_out_ga(0))
with rule IN_IN_GA(0) → U1_GA(0, less_out_ga(0)) at position [] and matcher [ ]

U1_GA(0, less_out_ga(0))IN_IN_GA(0)
with rule U1_GA(0, less_out_ga(0)) → IN_IN_GA(0)

Now applying the matcher to the start term leads to a term which is equal to the last term in the rewriting sequence


All these steps are and every following step will be a correct step w.r.t to Q.



(85) FALSE

(86) Obligation:

Q DP problem:
The TRS P consists of the following rules:

IN_IN_GA(s(x0)) → U1_GA(s(x0), U5_ga(x0, less_in_ga(x0)))
U1_GA(s(z0), less_out_ga(s(z0))) → IN_IN_GA(s(z0))
IN_IN_GA(s(x0)) → U3_GA(s(x0), less_out_ag(0, s(x0)))
U3_GA(X, less_out_ag(Y, X)) → IN_IN_GA(X)
IN_IN_GA(s(x0)) → U3_GA(s(x0), U5_ag(x0, less_in_ag(x0)))

The TRS R consists of the following rules:

less_in_ga(0) → less_out_ga(0)
less_in_ga(s(X)) → U5_ga(X, less_in_ga(X))
less_in_ag(s(X5)) → less_out_ag(0, s(X5))
less_in_ag(s(Y)) → U5_ag(Y, less_in_ag(Y))
U5_ga(X, less_out_ga(X)) → less_out_ga(s(X))
U5_ag(Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))

The set Q consists of the following terms:

less_in_ga(x0)
less_in_ag(x0)
U5_ga(x0, x1)
U5_ag(x0, x1)

We have to consider all (P,Q,R)-chains.

(87) Instantiation (EQUIVALENT transformation)

By instantiating [LPAR04] the rule U3_GA(X, less_out_ag(Y, X)) → IN_IN_GA(X) we obtained the following new rules [LPAR04]:

U3_GA(s(z0), less_out_ag(0, s(z0))) → IN_IN_GA(s(z0))
U3_GA(s(z0), less_out_ag(x1, s(z0))) → IN_IN_GA(s(z0))

(88) Obligation:

Q DP problem:
The TRS P consists of the following rules:

IN_IN_GA(s(x0)) → U1_GA(s(x0), U5_ga(x0, less_in_ga(x0)))
U1_GA(s(z0), less_out_ga(s(z0))) → IN_IN_GA(s(z0))
IN_IN_GA(s(x0)) → U3_GA(s(x0), less_out_ag(0, s(x0)))
IN_IN_GA(s(x0)) → U3_GA(s(x0), U5_ag(x0, less_in_ag(x0)))
U3_GA(s(z0), less_out_ag(0, s(z0))) → IN_IN_GA(s(z0))
U3_GA(s(z0), less_out_ag(x1, s(z0))) → IN_IN_GA(s(z0))

The TRS R consists of the following rules:

less_in_ga(0) → less_out_ga(0)
less_in_ga(s(X)) → U5_ga(X, less_in_ga(X))
less_in_ag(s(X5)) → less_out_ag(0, s(X5))
less_in_ag(s(Y)) → U5_ag(Y, less_in_ag(Y))
U5_ga(X, less_out_ga(X)) → less_out_ga(s(X))
U5_ag(Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))

The set Q consists of the following terms:

less_in_ga(x0)
less_in_ag(x0)
U5_ga(x0, x1)
U5_ag(x0, x1)

We have to consider all (P,Q,R)-chains.

(89) NonTerminationProof (EQUIVALENT transformation)

We used the non-termination processor [FROCOS05] to show that the DP problem is infinite.
Found a loop by narrowing to the left:

s = U3_GA(s(z0), less_out_ag(0, s(z0))) evaluates to t =U3_GA(s(z0), less_out_ag(0, s(z0)))

Thus s starts an infinite chain as s semiunifies with t with the following substitutions:
  • Semiunifier: [ ]
  • Matcher: [ ]




Rewriting sequence

U3_GA(s(z0), less_out_ag(0, s(z0)))IN_IN_GA(s(z0))
with rule U3_GA(s(z0'), less_out_ag(0, s(z0'))) → IN_IN_GA(s(z0')) at position [] and matcher [z0' / z0]

IN_IN_GA(s(z0))U3_GA(s(z0), less_out_ag(0, s(z0)))
with rule IN_IN_GA(s(x0)) → U3_GA(s(x0), less_out_ag(0, s(x0)))

Now applying the matcher to the start term leads to a term which is equal to the last term in the rewriting sequence


All these steps are and every following step will be a correct step w.r.t to Q.



(90) FALSE