active#( first( s( X ) , cons( Y , Z ) ) ) | → | cons#( Y , first( X , Z ) ) |
active#( first( s( X ) , cons( Y , Z ) ) ) | → | first#( X , Z ) |
active#( from( X ) ) | → | cons#( X , from( s( X ) ) ) |
active#( from( X ) ) | → | from#( s( X ) ) |
active#( from( X ) ) | → | s#( X ) |
active#( first( X1 , X2 ) ) | → | first#( active( X1 ) , X2 ) |
active#( first( X1 , X2 ) ) | → | active#( X1 ) |
active#( first( X1 , X2 ) ) | → | first#( X1 , active( X2 ) ) |
active#( first( X1 , X2 ) ) | → | active#( X2 ) |
active#( s( X ) ) | → | s#( active( X ) ) |
active#( s( X ) ) | → | active#( X ) |
active#( cons( X1 , X2 ) ) | → | cons#( active( X1 ) , X2 ) |
active#( cons( X1 , X2 ) ) | → | active#( X1 ) |
active#( from( X ) ) | → | from#( active( X ) ) |
active#( from( X ) ) | → | active#( X ) |
first#( mark( X1 ) , X2 ) | → | first#( X1 , X2 ) |
first#( X1 , mark( X2 ) ) | → | first#( X1 , X2 ) |
s#( mark( X ) ) | → | s#( X ) |
cons#( mark( X1 ) , X2 ) | → | cons#( X1 , X2 ) |
from#( mark( X ) ) | → | from#( X ) |
proper#( first( X1 , X2 ) ) | → | first#( proper( X1 ) , proper( X2 ) ) |
proper#( first( X1 , X2 ) ) | → | proper#( X1 ) |
proper#( first( X1 , X2 ) ) | → | proper#( X2 ) |
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#( from( X ) ) | → | from#( proper( X ) ) |
proper#( from( X ) ) | → | proper#( X ) |
first#( ok( X1 ) , ok( X2 ) ) | → | first#( X1 , X2 ) |
s#( ok( X ) ) | → | s#( X ) |
cons#( ok( X1 ) , ok( X2 ) ) | → | cons#( X1 , X2 ) |
from#( ok( X ) ) | → | from#( X ) |
top#( mark( X ) ) | → | top#( proper( X ) ) |
top#( mark( X ) ) | → | proper#( X ) |
top#( ok( X ) ) | → | top#( active( X ) ) |
top#( ok( X ) ) | → | active#( X ) |
The dependency pairs are split into 7 component(s).
top#( ok( X ) ) | → | top#( active( X ) ) |
top#( mark( X ) ) | → | top#( proper( X ) ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 + 1 | |
[mark (x1) ] | = | x1 + 1 | |
[first (x1, x2) ] | = | 2 x1 + x2 + 1 | |
[active (x1) ] | = | x1 | |
[0] | = | 0 | |
[s (x1) ] | = | x1 | |
[top# (x1) ] | = | x1 | |
[ok (x1) ] | = | x1 | |
[nil] | = | 0 | |
[cons (x1, x2) ] | = | x1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
top#( ok( X ) ) | → | top#( active( X ) ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 + 1 | |
[mark (x1) ] | = | x1 | |
[first (x1, x2) ] | = | x1 | |
[active (x1) ] | = | x1 | |
[0] | = | 0 | |
[s (x1) ] | = | x1 | |
[top# (x1) ] | = | x1 | |
[ok (x1) ] | = | x1 + 1 | |
[nil] | = | 0 | |
[cons (x1, x2) ] | = | x1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 2 x1 + 1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.
active#( first( X1 , X2 ) ) | → | active#( X2 ) |
active#( first( X1 , X2 ) ) | → | active#( X1 ) |
active#( s( X ) ) | → | active#( X ) |
active#( cons( X1 , X2 ) ) | → | active#( X1 ) |
active#( from( X ) ) | → | active#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 + 2 | |
[mark (x1) ] | = | 3 | |
[active# (x1) ] | = | 2 x1 | |
[first (x1, x2) ] | = | 2 x1 + x2 + 3 | |
[active (x1) ] | = | 2 x1 | |
[s (x1) ] | = | 2 x1 | |
[0] | = | 1 | |
[ok (x1) ] | = | x1 | |
[nil] | = | 3 | |
[cons (x1, x2) ] | = | x1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 2 x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
active#( s( X ) ) | → | active#( X ) |
active#( cons( X1 , X2 ) ) | → | active#( X1 ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 0 | |
[mark (x1) ] | = | 0 | |
[active# (x1) ] | = | x1 | |
[first (x1, x2) ] | = | 3 x1 | |
[active (x1) ] | = | 2 x1 | |
[s (x1) ] | = | 2 x1 | |
[0] | = | 0 | |
[ok (x1) ] | = | x1 | |
[nil] | = | 0 | |
[cons (x1, x2) ] | = | x1 + 3 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
active#( s( X ) ) | → | active#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 1 | |
[mark (x1) ] | = | 0 | |
[active# (x1) ] | = | 3 x1 | |
[first (x1, x2) ] | = | 2 x1 + 3 x2 | |
[active (x1) ] | = | 2 x1 | |
[s (x1) ] | = | x1 + 3 | |
[0] | = | 3 | |
[ok (x1) ] | = | 0 | |
[nil] | = | 3 | |
[cons (x1, x2) ] | = | 3 x1 + 2 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.
proper#( first( X1 , X2 ) ) | → | proper#( X2 ) |
proper#( first( X1 , X2 ) ) | → | proper#( X1 ) |
proper#( s( X ) ) | → | proper#( X ) |
proper#( cons( X1 , X2 ) ) | → | proper#( X1 ) |
proper#( cons( X1 , X2 ) ) | → | proper#( X2 ) |
proper#( from( X ) ) | → | proper#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 | |
[mark (x1) ] | = | 0 | |
[proper# (x1) ] | = | 2 x1 | |
[first (x1, x2) ] | = | x1 + x2 + 3 | |
[active (x1) ] | = | 2 x1 | |
[s (x1) ] | = | 2 x1 | |
[0] | = | 1 | |
[ok (x1) ] | = | x1 | |
[nil] | = | 3 | |
[cons (x1, x2) ] | = | x1 + 2 x2 + 2 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 2 x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
proper#( s( X ) ) | → | proper#( X ) |
proper#( from( X ) ) | → | proper#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 + 1 | |
[mark (x1) ] | = | 0 | |
[proper# (x1) ] | = | 2 x1 | |
[first (x1, x2) ] | = | 3 x1 | |
[active (x1) ] | = | x1 | |
[s (x1) ] | = | 2 x1 | |
[0] | = | 0 | |
[ok (x1) ] | = | 0 | |
[nil] | = | 2 | |
[cons (x1, x2) ] | = | x1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 2 x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
proper#( s( X ) ) | → | proper#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 1 | |
[mark (x1) ] | = | 0 | |
[proper# (x1) ] | = | 3 x1 | |
[first (x1, x2) ] | = | 2 x1 + 3 x2 | |
[active (x1) ] | = | 2 x1 | |
[s (x1) ] | = | x1 + 3 | |
[0] | = | 3 | |
[ok (x1) ] | = | 0 | |
[nil] | = | 3 | |
[cons (x1, x2) ] | = | 3 x1 + 2 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.
first#( X1 , mark( X2 ) ) | → | first#( X1 , X2 ) |
first#( mark( X1 ) , X2 ) | → | first#( X1 , X2 ) |
first#( ok( X1 ) , ok( X2 ) ) | → | first#( X1 , X2 ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | x1 | |
[mark (x1) ] | = | x1 | |
[first (x1, x2) ] | = | x1 | |
[active (x1) ] | = | 2 x1 | |
[first# (x1, x2) ] | = | 2 x1 | |
[0] | = | 0 | |
[s (x1) ] | = | x1 | |
[ok (x1) ] | = | x1 + 1 | |
[nil] | = | 0 | |
[cons (x1, x2) ] | = | x1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 2 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
first#( X1 , mark( X2 ) ) | → | first#( X1 , X2 ) |
first#( mark( X1 ) , X2 ) | → | first#( X1 , X2 ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | x1 | |
[mark (x1) ] | = | x1 + 1 | |
[first (x1, x2) ] | = | 2 x1 + 2 x2 + 3 | |
[active (x1) ] | = | 2 x1 + 2 | |
[first# (x1, x2) ] | = | 2 x1 | |
[0] | = | 0 | |
[s (x1) ] | = | x1 | |
[ok (x1) ] | = | 0 | |
[nil] | = | 0 | |
[cons (x1, x2) ] | = | x1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 2 x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
first#( X1 , mark( X2 ) ) | → | first#( X1 , X2 ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 + 2 | |
[mark (x1) ] | = | x1 + 1 | |
[first (x1, x2) ] | = | x1 + 2 x2 | |
[active (x1) ] | = | x1 | |
[first# (x1, x2) ] | = | x1 | |
[0] | = | 3 | |
[s (x1) ] | = | x1 + 1 | |
[ok (x1) ] | = | x1 | |
[nil] | = | 1 | |
[cons (x1, x2) ] | = | x1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 2 x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.
s#( ok( X ) ) | → | s#( X ) |
s#( mark( X ) ) | → | s#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 + 2 | |
[mark (x1) ] | = | x1 + 2 | |
[first (x1, x2) ] | = | x1 + x2 | |
[active (x1) ] | = | 3 x1 + 3 | |
[0] | = | 0 | |
[s (x1) ] | = | x1 | |
[ok (x1) ] | = | x1 | |
[nil] | = | 0 | |
[cons (x1, x2) ] | = | x1 | |
[s# (x1) ] | = | 2 x1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 2 x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
s#( ok( X ) ) | → | s#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | x1 | |
[mark (x1) ] | = | 0 | |
[first (x1, x2) ] | = | x1 | |
[active (x1) ] | = | x1 | |
[0] | = | 2 | |
[s (x1) ] | = | x1 | |
[ok (x1) ] | = | x1 + 1 | |
[nil] | = | 0 | |
[cons (x1, x2) ] | = | x1 | |
[s# (x1) ] | = | 2 x1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | x1 + 1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.
cons#( ok( X1 ) , ok( X2 ) ) | → | cons#( X1 , X2 ) |
cons#( mark( X1 ) , X2 ) | → | cons#( X1 , X2 ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | x1 | |
[mark (x1) ] | = | 0 | |
[first (x1, x2) ] | = | x1 | |
[cons# (x1, x2) ] | = | 3 x1 | |
[active (x1) ] | = | 2 x1 | |
[0] | = | 1 | |
[s (x1) ] | = | x1 | |
[ok (x1) ] | = | x1 + 1 | |
[nil] | = | 2 | |
[cons (x1, x2) ] | = | 2 x1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 2 x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
cons#( mark( X1 ) , X2 ) | → | cons#( X1 , X2 ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 + 2 | |
[mark (x1) ] | = | x1 + 1 | |
[first (x1, x2) ] | = | x1 + 2 x2 | |
[cons# (x1, x2) ] | = | x1 | |
[active (x1) ] | = | x1 | |
[0] | = | 3 | |
[s (x1) ] | = | x1 + 1 | |
[ok (x1) ] | = | x1 | |
[nil] | = | 1 | |
[cons (x1, x2) ] | = | x1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 2 x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.
from#( ok( X ) ) | → | from#( X ) |
from#( mark( X ) ) | → | from#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 + 2 | |
[mark (x1) ] | = | x1 + 2 | |
[first (x1, x2) ] | = | x1 + x2 | |
[active (x1) ] | = | 3 x1 + 3 | |
[0] | = | 0 | |
[s (x1) ] | = | x1 | |
[from# (x1) ] | = | 2 x1 | |
[ok (x1) ] | = | x1 | |
[nil] | = | 0 | |
[cons (x1, x2) ] | = | x1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 2 x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
from#( ok( X ) ) | → | from#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | x1 | |
[mark (x1) ] | = | 0 | |
[first (x1, x2) ] | = | x1 | |
[active (x1) ] | = | x1 | |
[0] | = | 2 | |
[s (x1) ] | = | x1 | |
[from# (x1) ] | = | 2 x1 | |
[ok (x1) ] | = | x1 + 1 | |
[nil] | = | 0 | |
[cons (x1, x2) ] | = | x1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | x1 + 1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.