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