MAYBE Problem: active(from(X)) -> mark(cons(X,from(s(X)))) active(first(0(),Z)) -> mark(nil()) active(first(s(X),cons(Y,Z))) -> mark(cons(Y,first(X,Z))) active(sel(0(),cons(X,Z))) -> mark(X) active(sel(s(X),cons(Y,Z))) -> mark(sel(X,Z)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) active(first(X1,X2)) -> first(active(X1),X2) active(first(X1,X2)) -> first(X1,active(X2)) active(sel(X1,X2)) -> sel(active(X1),X2) active(sel(X1,X2)) -> sel(X1,active(X2)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) first(mark(X1),X2) -> mark(first(X1,X2)) first(X1,mark(X2)) -> mark(first(X1,X2)) sel(mark(X1),X2) -> mark(sel(X1,X2)) sel(X1,mark(X2)) -> mark(sel(X1,X2)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(first(X1,X2)) -> first(proper(X1),proper(X2)) proper(0()) -> ok(0()) proper(nil()) -> ok(nil()) proper(sel(X1,X2)) -> sel(proper(X1),proper(X2)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) first(ok(X1),ok(X2)) -> ok(first(X1,X2)) sel(ok(X1),ok(X2)) -> ok(sel(X1,X2)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Proof: DP Processor: DPs: active#(from(X)) -> s#(X) active#(from(X)) -> from#(s(X)) active#(from(X)) -> cons#(X,from(s(X))) active#(first(s(X),cons(Y,Z))) -> first#(X,Z) active#(first(s(X),cons(Y,Z))) -> cons#(Y,first(X,Z)) active#(sel(s(X),cons(Y,Z))) -> sel#(X,Z) active#(from(X)) -> active#(X) active#(from(X)) -> from#(active(X)) active#(cons(X1,X2)) -> active#(X1) active#(cons(X1,X2)) -> cons#(active(X1),X2) active#(s(X)) -> active#(X) active#(s(X)) -> s#(active(X)) active#(first(X1,X2)) -> active#(X1) active#(first(X1,X2)) -> first#(active(X1),X2) active#(first(X1,X2)) -> active#(X2) active#(first(X1,X2)) -> first#(X1,active(X2)) active#(sel(X1,X2)) -> active#(X1) active#(sel(X1,X2)) -> sel#(active(X1),X2) active#(sel(X1,X2)) -> active#(X2) active#(sel(X1,X2)) -> sel#(X1,active(X2)) from#(mark(X)) -> from#(X) cons#(mark(X1),X2) -> cons#(X1,X2) s#(mark(X)) -> s#(X) first#(mark(X1),X2) -> first#(X1,X2) first#(X1,mark(X2)) -> first#(X1,X2) sel#(mark(X1),X2) -> sel#(X1,X2) sel#(X1,mark(X2)) -> sel#(X1,X2) proper#(from(X)) -> proper#(X) proper#(from(X)) -> from#(proper(X)) proper#(cons(X1,X2)) -> proper#(X2) proper#(cons(X1,X2)) -> proper#(X1) proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) proper#(s(X)) -> proper#(X) proper#(s(X)) -> s#(proper(X)) proper#(first(X1,X2)) -> proper#(X2) proper#(first(X1,X2)) -> proper#(X1) proper#(first(X1,X2)) -> first#(proper(X1),proper(X2)) proper#(sel(X1,X2)) -> proper#(X2) proper#(sel(X1,X2)) -> proper#(X1) proper#(sel(X1,X2)) -> sel#(proper(X1),proper(X2)) from#(ok(X)) -> from#(X) cons#(ok(X1),ok(X2)) -> cons#(X1,X2) s#(ok(X)) -> s#(X) first#(ok(X1),ok(X2)) -> first#(X1,X2) sel#(ok(X1),ok(X2)) -> sel#(X1,X2) top#(mark(X)) -> proper#(X) top#(mark(X)) -> top#(proper(X)) top#(ok(X)) -> active#(X) top#(ok(X)) -> top#(active(X)) TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(first(0(),Z)) -> mark(nil()) active(first(s(X),cons(Y,Z))) -> mark(cons(Y,first(X,Z))) active(sel(0(),cons(X,Z))) -> mark(X) active(sel(s(X),cons(Y,Z))) -> mark(sel(X,Z)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) active(first(X1,X2)) -> first(active(X1),X2) active(first(X1,X2)) -> first(X1,active(X2)) active(sel(X1,X2)) -> sel(active(X1),X2) active(sel(X1,X2)) -> sel(X1,active(X2)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) first(mark(X1),X2) -> mark(first(X1,X2)) first(X1,mark(X2)) -> mark(first(X1,X2)) sel(mark(X1),X2) -> mark(sel(X1,X2)) sel(X1,mark(X2)) -> mark(sel(X1,X2)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(first(X1,X2)) -> first(proper(X1),proper(X2)) proper(0()) -> ok(0()) proper(nil()) -> ok(nil()) proper(sel(X1,X2)) -> sel(proper(X1),proper(X2)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) first(ok(X1),ok(X2)) -> ok(first(X1,X2)) sel(ok(X1),ok(X2)) -> ok(sel(X1,X2)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) EDG Processor: DPs: active#(from(X)) -> s#(X) active#(from(X)) -> from#(s(X)) active#(from(X)) -> cons#(X,from(s(X))) active#(first(s(X),cons(Y,Z))) -> first#(X,Z) active#(first(s(X),cons(Y,Z))) -> cons#(Y,first(X,Z)) active#(sel(s(X),cons(Y,Z))) -> sel#(X,Z) active#(from(X)) -> active#(X) active#(from(X)) -> from#(active(X)) active#(cons(X1,X2)) -> active#(X1) active#(cons(X1,X2)) -> cons#(active(X1),X2) active#(s(X)) -> active#(X) active#(s(X)) -> s#(active(X)) active#(first(X1,X2)) -> active#(X1) active#(first(X1,X2)) -> first#(active(X1),X2) active#(first(X1,X2)) -> active#(X2) active#(first(X1,X2)) -> first#(X1,active(X2)) active#(sel(X1,X2)) -> active#(X1) active#(sel(X1,X2)) -> sel#(active(X1),X2) active#(sel(X1,X2)) -> active#(X2) active#(sel(X1,X2)) -> sel#(X1,active(X2)) from#(mark(X)) -> from#(X) cons#(mark(X1),X2) -> cons#(X1,X2) s#(mark(X)) -> s#(X) first#(mark(X1),X2) -> first#(X1,X2) first#(X1,mark(X2)) -> first#(X1,X2) sel#(mark(X1),X2) -> sel#(X1,X2) sel#(X1,mark(X2)) -> sel#(X1,X2) proper#(from(X)) -> proper#(X) proper#(from(X)) -> from#(proper(X)) proper#(cons(X1,X2)) -> proper#(X2) proper#(cons(X1,X2)) -> proper#(X1) proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) proper#(s(X)) -> proper#(X) proper#(s(X)) -> s#(proper(X)) proper#(first(X1,X2)) -> proper#(X2) proper#(first(X1,X2)) -> proper#(X1) proper#(first(X1,X2)) -> first#(proper(X1),proper(X2)) proper#(sel(X1,X2)) -> proper#(X2) proper#(sel(X1,X2)) -> proper#(X1) proper#(sel(X1,X2)) -> sel#(proper(X1),proper(X2)) from#(ok(X)) -> from#(X) cons#(ok(X1),ok(X2)) -> cons#(X1,X2) s#(ok(X)) -> s#(X) first#(ok(X1),ok(X2)) -> first#(X1,X2) sel#(ok(X1),ok(X2)) -> sel#(X1,X2) top#(mark(X)) -> proper#(X) top#(mark(X)) -> top#(proper(X)) top#(ok(X)) -> active#(X) top#(ok(X)) -> top#(active(X)) TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(first(0(),Z)) -> mark(nil()) active(first(s(X),cons(Y,Z))) -> mark(cons(Y,first(X,Z))) active(sel(0(),cons(X,Z))) -> mark(X) active(sel(s(X),cons(Y,Z))) -> mark(sel(X,Z)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) active(first(X1,X2)) -> first(active(X1),X2) active(first(X1,X2)) -> first(X1,active(X2)) active(sel(X1,X2)) -> sel(active(X1),X2) active(sel(X1,X2)) -> sel(X1,active(X2)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) first(mark(X1),X2) -> mark(first(X1,X2)) first(X1,mark(X2)) -> mark(first(X1,X2)) sel(mark(X1),X2) -> mark(sel(X1,X2)) sel(X1,mark(X2)) -> mark(sel(X1,X2)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(first(X1,X2)) -> first(proper(X1),proper(X2)) proper(0()) -> ok(0()) proper(nil()) -> ok(nil()) proper(sel(X1,X2)) -> sel(proper(X1),proper(X2)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) first(ok(X1),ok(X2)) -> ok(first(X1,X2)) sel(ok(X1),ok(X2)) -> ok(sel(X1,X2)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) graph: top#(ok(X)) -> top#(active(X)) -> top#(mark(X)) -> proper#(X) top#(ok(X)) -> top#(active(X)) -> top#(mark(X)) -> top#(proper(X)) top#(ok(X)) -> top#(active(X)) -> top#(ok(X)) -> active#(X) top#(ok(X)) -> top#(active(X)) -> top#(ok(X)) -> top#(active(X)) top#(ok(X)) -> active#(X) -> active#(from(X)) -> s#(X) top#(ok(X)) -> active#(X) -> active#(from(X)) -> from#(s(X)) top#(ok(X)) -> active#(X) -> active#(from(X)) -> cons#(X,from(s(X))) top#(ok(X)) -> active#(X) -> active#(first(s(X),cons(Y,Z))) -> first#(X,Z) top#(ok(X)) -> active#(X) -> active#(first(s(X),cons(Y,Z))) -> cons#(Y,first(X,Z)) top#(ok(X)) -> active#(X) -> active#(sel(s(X),cons(Y,Z))) -> sel#(X,Z) top#(ok(X)) -> active#(X) -> active#(from(X)) -> active#(X) top#(ok(X)) -> active#(X) -> active#(from(X)) -> from#(active(X)) top#(ok(X)) -> active#(X) -> active#(cons(X1,X2)) -> active#(X1) top#(ok(X)) -> active#(X) -> active#(cons(X1,X2)) -> cons#(active(X1),X2) top#(ok(X)) -> active#(X) -> active#(s(X)) -> active#(X) top#(ok(X)) -> active#(X) -> active#(s(X)) -> s#(active(X)) top#(ok(X)) -> active#(X) -> active#(first(X1,X2)) -> active#(X1) top#(ok(X)) -> active#(X) -> active#(first(X1,X2)) -> first#(active(X1),X2) top#(ok(X)) -> active#(X) -> active#(first(X1,X2)) -> active#(X2) top#(ok(X)) -> active#(X) -> active#(first(X1,X2)) -> first#(X1,active(X2)) top#(ok(X)) -> active#(X) -> active#(sel(X1,X2)) -> active#(X1) top#(ok(X)) -> active#(X) -> active#(sel(X1,X2)) -> sel#(active(X1),X2) top#(ok(X)) -> active#(X) -> active#(sel(X1,X2)) -> active#(X2) top#(ok(X)) -> active#(X) -> active#(sel(X1,X2)) -> sel#(X1,active(X2)) top#(mark(X)) -> top#(proper(X)) -> top#(mark(X)) -> proper#(X) top#(mark(X)) -> top#(proper(X)) -> top#(mark(X)) -> top#(proper(X)) top#(mark(X)) -> top#(proper(X)) -> top#(ok(X)) -> active#(X) top#(mark(X)) -> top#(proper(X)) -> top#(ok(X)) -> top#(active(X)) top#(mark(X)) -> proper#(X) -> proper#(from(X)) -> proper#(X) top#(mark(X)) -> proper#(X) -> proper#(from(X)) -> from#(proper(X)) top#(mark(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> proper#(X2) top#(mark(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> proper#(X1) top#(mark(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) top#(mark(X)) -> proper#(X) -> proper#(s(X)) -> proper#(X) top#(mark(X)) -> proper#(X) -> proper#(s(X)) -> s#(proper(X)) top#(mark(X)) -> proper#(X) -> proper#(first(X1,X2)) -> proper#(X2) top#(mark(X)) -> proper#(X) -> proper#(first(X1,X2)) -> proper#(X1) top#(mark(X)) -> proper#(X) -> proper#(first(X1,X2)) -> first#(proper(X1),proper(X2)) top#(mark(X)) -> proper#(X) -> proper#(sel(X1,X2)) -> proper#(X2) top#(mark(X)) -> proper#(X) -> proper#(sel(X1,X2)) -> proper#(X1) top#(mark(X)) -> proper#(X) -> proper#(sel(X1,X2)) -> sel#(proper(X1),proper(X2)) proper#(sel(X1,X2)) -> proper#(X2) -> proper#(from(X)) -> proper#(X) proper#(sel(X1,X2)) -> proper#(X2) -> proper#(from(X)) -> from#(proper(X)) proper#(sel(X1,X2)) -> proper#(X2) -> proper#(cons(X1,X2)) -> proper#(X2) proper#(sel(X1,X2)) -> proper#(X2) -> proper#(cons(X1,X2)) -> proper#(X1) proper#(sel(X1,X2)) -> proper#(X2) -> proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) proper#(sel(X1,X2)) -> proper#(X2) -> proper#(s(X)) -> proper#(X) proper#(sel(X1,X2)) -> proper#(X2) -> proper#(s(X)) -> s#(proper(X)) proper#(sel(X1,X2)) -> proper#(X2) -> proper#(first(X1,X2)) -> proper#(X2) proper#(sel(X1,X2)) -> proper#(X2) -> proper#(first(X1,X2)) -> proper#(X1) proper#(sel(X1,X2)) -> proper#(X2) -> proper#(first(X1,X2)) -> first#(proper(X1),proper(X2)) proper#(sel(X1,X2)) -> proper#(X2) -> proper#(sel(X1,X2)) -> proper#(X2) proper#(sel(X1,X2)) -> proper#(X2) -> proper#(sel(X1,X2)) -> proper#(X1) proper#(sel(X1,X2)) -> proper#(X2) -> proper#(sel(X1,X2)) -> sel#(proper(X1),proper(X2)) proper#(sel(X1,X2)) -> proper#(X1) -> proper#(from(X)) -> proper#(X) proper#(sel(X1,X2)) -> proper#(X1) -> proper#(from(X)) -> from#(proper(X)) proper#(sel(X1,X2)) -> proper#(X1) -> proper#(cons(X1,X2)) -> proper#(X2) proper#(sel(X1,X2)) -> proper#(X1) -> proper#(cons(X1,X2)) -> proper#(X1) proper#(sel(X1,X2)) -> proper#(X1) -> proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) proper#(sel(X1,X2)) -> proper#(X1) -> proper#(s(X)) -> proper#(X) proper#(sel(X1,X2)) -> proper#(X1) -> proper#(s(X)) -> s#(proper(X)) proper#(sel(X1,X2)) -> proper#(X1) -> proper#(first(X1,X2)) -> proper#(X2) proper#(sel(X1,X2)) -> proper#(X1) -> proper#(first(X1,X2)) -> proper#(X1) proper#(sel(X1,X2)) -> proper#(X1) -> proper#(first(X1,X2)) -> first#(proper(X1),proper(X2)) proper#(sel(X1,X2)) -> proper#(X1) -> proper#(sel(X1,X2)) -> proper#(X2) proper#(sel(X1,X2)) -> proper#(X1) -> proper#(sel(X1,X2)) -> proper#(X1) proper#(sel(X1,X2)) -> proper#(X1) -> proper#(sel(X1,X2)) -> sel#(proper(X1),proper(X2)) proper#(sel(X1,X2)) -> sel#(proper(X1),proper(X2)) -> sel#(mark(X1),X2) -> sel#(X1,X2) proper#(sel(X1,X2)) -> sel#(proper(X1),proper(X2)) -> sel#(X1,mark(X2)) -> sel#(X1,X2) proper#(sel(X1,X2)) -> sel#(proper(X1),proper(X2)) -> sel#(ok(X1),ok(X2)) -> sel#(X1,X2) proper#(first(X1,X2)) -> proper#(X2) -> proper#(from(X)) -> proper#(X) proper#(first(X1,X2)) -> proper#(X2) -> proper#(from(X)) -> from#(proper(X)) proper#(first(X1,X2)) -> proper#(X2) -> proper#(cons(X1,X2)) -> proper#(X2) proper#(first(X1,X2)) -> proper#(X2) -> proper#(cons(X1,X2)) -> proper#(X1) proper#(first(X1,X2)) -> proper#(X2) -> proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) proper#(first(X1,X2)) -> proper#(X2) -> proper#(s(X)) -> proper#(X) proper#(first(X1,X2)) -> proper#(X2) -> proper#(s(X)) -> s#(proper(X)) proper#(first(X1,X2)) -> proper#(X2) -> proper#(first(X1,X2)) -> proper#(X2) proper#(first(X1,X2)) -> proper#(X2) -> proper#(first(X1,X2)) -> proper#(X1) proper#(first(X1,X2)) -> proper#(X2) -> proper#(first(X1,X2)) -> first#(proper(X1),proper(X2)) proper#(first(X1,X2)) -> proper#(X2) -> proper#(sel(X1,X2)) -> proper#(X2) proper#(first(X1,X2)) -> proper#(X2) -> proper#(sel(X1,X2)) -> proper#(X1) proper#(first(X1,X2)) -> proper#(X2) -> proper#(sel(X1,X2)) -> sel#(proper(X1),proper(X2)) proper#(first(X1,X2)) -> proper#(X1) -> proper#(from(X)) -> proper#(X) proper#(first(X1,X2)) -> proper#(X1) -> proper#(from(X)) -> from#(proper(X)) proper#(first(X1,X2)) -> proper#(X1) -> proper#(cons(X1,X2)) -> proper#(X2) proper#(first(X1,X2)) -> proper#(X1) -> proper#(cons(X1,X2)) -> proper#(X1) proper#(first(X1,X2)) -> proper#(X1) -> proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) proper#(first(X1,X2)) -> proper#(X1) -> proper#(s(X)) -> proper#(X) proper#(first(X1,X2)) -> proper#(X1) -> proper#(s(X)) -> s#(proper(X)) proper#(first(X1,X2)) -> proper#(X1) -> proper#(first(X1,X2)) -> proper#(X2) proper#(first(X1,X2)) -> proper#(X1) -> proper#(first(X1,X2)) -> proper#(X1) proper#(first(X1,X2)) -> proper#(X1) -> proper#(first(X1,X2)) -> first#(proper(X1),proper(X2)) proper#(first(X1,X2)) -> proper#(X1) -> proper#(sel(X1,X2)) -> proper#(X2) proper#(first(X1,X2)) -> proper#(X1) -> proper#(sel(X1,X2)) -> proper#(X1) proper#(first(X1,X2)) -> proper#(X1) -> proper#(sel(X1,X2)) -> sel#(proper(X1),proper(X2)) proper#(first(X1,X2)) -> first#(proper(X1),proper(X2)) -> first#(mark(X1),X2) -> first#(X1,X2) proper#(first(X1,X2)) -> first#(proper(X1),proper(X2)) -> first#(X1,mark(X2)) -> first#(X1,X2) proper#(first(X1,X2)) -> first#(proper(X1),proper(X2)) -> first#(ok(X1),ok(X2)) -> first#(X1,X2) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(from(X)) -> proper#(X) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(from(X)) -> from#(proper(X)) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(cons(X1,X2)) -> proper#(X2) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(cons(X1,X2)) -> proper#(X1) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(s(X)) -> proper#(X) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(s(X)) -> s#(proper(X)) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(first(X1,X2)) -> proper#(X2) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(first(X1,X2)) -> proper#(X1) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(first(X1,X2)) -> first#(proper(X1),proper(X2)) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(sel(X1,X2)) -> proper#(X2) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(sel(X1,X2)) -> proper#(X1) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(sel(X1,X2)) -> sel#(proper(X1),proper(X2)) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(from(X)) -> proper#(X) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(from(X)) -> from#(proper(X)) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(cons(X1,X2)) -> proper#(X2) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(cons(X1,X2)) -> proper#(X1) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(s(X)) -> proper#(X) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(s(X)) -> s#(proper(X)) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(first(X1,X2)) -> proper#(X2) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(first(X1,X2)) -> proper#(X1) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(first(X1,X2)) -> first#(proper(X1),proper(X2)) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(sel(X1,X2)) -> proper#(X2) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(sel(X1,X2)) -> proper#(X1) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(sel(X1,X2)) -> sel#(proper(X1),proper(X2)) proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) -> cons#(mark(X1),X2) -> cons#(X1,X2) proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) -> cons#(ok(X1),ok(X2)) -> cons#(X1,X2) proper#(s(X)) -> proper#(X) -> proper#(from(X)) -> proper#(X) proper#(s(X)) -> proper#(X) -> proper#(from(X)) -> from#(proper(X)) proper#(s(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> proper#(X2) proper#(s(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> proper#(X1) proper#(s(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) proper#(s(X)) -> proper#(X) -> proper#(s(X)) -> proper#(X) proper#(s(X)) -> proper#(X) -> proper#(s(X)) -> s#(proper(X)) proper#(s(X)) -> proper#(X) -> proper#(first(X1,X2)) -> proper#(X2) proper#(s(X)) -> proper#(X) -> proper#(first(X1,X2)) -> proper#(X1) proper#(s(X)) -> proper#(X) -> proper#(first(X1,X2)) -> first#(proper(X1),proper(X2)) proper#(s(X)) -> proper#(X) -> proper#(sel(X1,X2)) -> proper#(X2) proper#(s(X)) -> proper#(X) -> proper#(sel(X1,X2)) -> proper#(X1) proper#(s(X)) -> proper#(X) -> proper#(sel(X1,X2)) -> sel#(proper(X1),proper(X2)) proper#(s(X)) -> s#(proper(X)) -> s#(mark(X)) -> s#(X) proper#(s(X)) -> s#(proper(X)) -> s#(ok(X)) -> s#(X) proper#(from(X)) -> proper#(X) -> proper#(from(X)) -> proper#(X) proper#(from(X)) -> proper#(X) -> proper#(from(X)) -> from#(proper(X)) proper#(from(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> proper#(X2) proper#(from(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> proper#(X1) proper#(from(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) proper#(from(X)) -> proper#(X) -> proper#(s(X)) -> proper#(X) proper#(from(X)) -> proper#(X) -> proper#(s(X)) -> s#(proper(X)) proper#(from(X)) -> proper#(X) -> proper#(first(X1,X2)) -> proper#(X2) proper#(from(X)) -> proper#(X) -> proper#(first(X1,X2)) -> proper#(X1) proper#(from(X)) -> proper#(X) -> proper#(first(X1,X2)) -> first#(proper(X1),proper(X2)) proper#(from(X)) -> proper#(X) -> proper#(sel(X1,X2)) -> proper#(X2) proper#(from(X)) -> proper#(X) -> proper#(sel(X1,X2)) -> proper#(X1) proper#(from(X)) -> proper#(X) -> proper#(sel(X1,X2)) -> sel#(proper(X1),proper(X2)) proper#(from(X)) -> from#(proper(X)) -> from#(mark(X)) -> from#(X) proper#(from(X)) -> from#(proper(X)) -> from#(ok(X)) -> from#(X) sel#(ok(X1),ok(X2)) -> sel#(X1,X2) -> sel#(mark(X1),X2) -> sel#(X1,X2) sel#(ok(X1),ok(X2)) -> sel#(X1,X2) -> sel#(X1,mark(X2)) -> sel#(X1,X2) sel#(ok(X1),ok(X2)) -> sel#(X1,X2) -> sel#(ok(X1),ok(X2)) -> sel#(X1,X2) sel#(mark(X1),X2) -> sel#(X1,X2) -> sel#(mark(X1),X2) -> sel#(X1,X2) sel#(mark(X1),X2) -> sel#(X1,X2) -> sel#(X1,mark(X2)) -> sel#(X1,X2) sel#(mark(X1),X2) -> sel#(X1,X2) -> sel#(ok(X1),ok(X2)) -> sel#(X1,X2) sel#(X1,mark(X2)) -> sel#(X1,X2) -> sel#(mark(X1),X2) -> sel#(X1,X2) sel#(X1,mark(X2)) -> sel#(X1,X2) -> sel#(X1,mark(X2)) -> sel#(X1,X2) sel#(X1,mark(X2)) -> sel#(X1,X2) -> sel#(ok(X1),ok(X2)) -> sel#(X1,X2) first#(ok(X1),ok(X2)) -> first#(X1,X2) -> first#(mark(X1),X2) -> first#(X1,X2) first#(ok(X1),ok(X2)) -> first#(X1,X2) -> first#(X1,mark(X2)) -> first#(X1,X2) first#(ok(X1),ok(X2)) -> first#(X1,X2) -> first#(ok(X1),ok(X2)) -> first#(X1,X2) first#(mark(X1),X2) -> first#(X1,X2) -> first#(mark(X1),X2) -> first#(X1,X2) first#(mark(X1),X2) -> first#(X1,X2) -> first#(X1,mark(X2)) -> first#(X1,X2) first#(mark(X1),X2) -> first#(X1,X2) -> first#(ok(X1),ok(X2)) -> first#(X1,X2) first#(X1,mark(X2)) -> first#(X1,X2) -> first#(mark(X1),X2) -> first#(X1,X2) first#(X1,mark(X2)) -> first#(X1,X2) -> first#(X1,mark(X2)) -> first#(X1,X2) first#(X1,mark(X2)) -> first#(X1,X2) -> first#(ok(X1),ok(X2)) -> first#(X1,X2) cons#(ok(X1),ok(X2)) -> cons#(X1,X2) -> cons#(mark(X1),X2) -> cons#(X1,X2) cons#(ok(X1),ok(X2)) -> cons#(X1,X2) -> cons#(ok(X1),ok(X2)) -> cons#(X1,X2) cons#(mark(X1),X2) -> cons#(X1,X2) -> cons#(mark(X1),X2) -> cons#(X1,X2) cons#(mark(X1),X2) -> cons#(X1,X2) -> cons#(ok(X1),ok(X2)) -> cons#(X1,X2) from#(ok(X)) -> from#(X) -> from#(mark(X)) -> from#(X) from#(ok(X)) -> from#(X) -> from#(ok(X)) -> from#(X) from#(mark(X)) -> from#(X) -> from#(mark(X)) -> from#(X) from#(mark(X)) -> from#(X) -> from#(ok(X)) -> from#(X) s#(ok(X)) -> s#(X) -> s#(mark(X)) -> s#(X) s#(ok(X)) -> s#(X) -> s#(ok(X)) -> s#(X) s#(mark(X)) -> s#(X) -> s#(mark(X)) -> s#(X) s#(mark(X)) -> s#(X) -> s#(ok(X)) -> s#(X) active#(sel(s(X),cons(Y,Z))) -> sel#(X,Z) -> sel#(X1,mark(X2)) -> sel#(X1,X2) active#(sel(X1,X2)) -> sel#(active(X1),X2) -> sel#(mark(X1),X2) -> sel#(X1,X2) active#(sel(X1,X2)) -> sel#(active(X1),X2) -> sel#(ok(X1),ok(X2)) -> sel#(X1,X2) active#(sel(X1,X2)) -> sel#(X1,active(X2)) -> sel#(X1,mark(X2)) -> sel#(X1,X2) active#(sel(X1,X2)) -> sel#(X1,active(X2)) -> sel#(ok(X1),ok(X2)) -> sel#(X1,X2) active#(sel(X1,X2)) -> active#(X2) -> active#(from(X)) -> s#(X) active#(sel(X1,X2)) -> active#(X2) -> active#(from(X)) -> from#(s(X)) active#(sel(X1,X2)) -> active#(X2) -> active#(from(X)) -> cons#(X,from(s(X))) active#(sel(X1,X2)) -> active#(X2) -> active#(first(s(X),cons(Y,Z))) -> first#(X,Z) active#(sel(X1,X2)) -> active#(X2) -> active#(first(s(X),cons(Y,Z))) -> cons#(Y,first(X,Z)) active#(sel(X1,X2)) -> active#(X2) -> active#(sel(s(X),cons(Y,Z))) -> sel#(X,Z) active#(sel(X1,X2)) -> active#(X2) -> active#(from(X)) -> active#(X) active#(sel(X1,X2)) -> active#(X2) -> active#(from(X)) -> from#(active(X)) active#(sel(X1,X2)) -> active#(X2) -> active#(cons(X1,X2)) -> active#(X1) active#(sel(X1,X2)) -> active#(X2) -> active#(cons(X1,X2)) -> cons#(active(X1),X2) active#(sel(X1,X2)) -> active#(X2) -> active#(s(X)) -> active#(X) active#(sel(X1,X2)) -> active#(X2) -> active#(s(X)) -> s#(active(X)) active#(sel(X1,X2)) -> active#(X2) -> active#(first(X1,X2)) -> active#(X1) active#(sel(X1,X2)) -> active#(X2) -> active#(first(X1,X2)) -> first#(active(X1),X2) active#(sel(X1,X2)) -> active#(X2) -> active#(first(X1,X2)) -> active#(X2) active#(sel(X1,X2)) -> active#(X2) -> active#(first(X1,X2)) -> first#(X1,active(X2)) active#(sel(X1,X2)) -> active#(X2) -> active#(sel(X1,X2)) -> active#(X1) active#(sel(X1,X2)) -> active#(X2) -> active#(sel(X1,X2)) -> sel#(active(X1),X2) active#(sel(X1,X2)) -> active#(X2) -> active#(sel(X1,X2)) -> active#(X2) active#(sel(X1,X2)) -> active#(X2) -> active#(sel(X1,X2)) -> sel#(X1,active(X2)) active#(sel(X1,X2)) -> active#(X1) -> active#(from(X)) -> s#(X) active#(sel(X1,X2)) -> active#(X1) -> active#(from(X)) -> from#(s(X)) active#(sel(X1,X2)) -> active#(X1) -> active#(from(X)) -> cons#(X,from(s(X))) active#(sel(X1,X2)) -> active#(X1) -> active#(first(s(X),cons(Y,Z))) -> first#(X,Z) active#(sel(X1,X2)) -> active#(X1) -> active#(first(s(X),cons(Y,Z))) -> cons#(Y,first(X,Z)) active#(sel(X1,X2)) -> active#(X1) -> active#(sel(s(X),cons(Y,Z))) -> sel#(X,Z) active#(sel(X1,X2)) -> active#(X1) -> active#(from(X)) -> active#(X) active#(sel(X1,X2)) -> active#(X1) -> active#(from(X)) -> from#(active(X)) active#(sel(X1,X2)) -> active#(X1) -> active#(cons(X1,X2)) -> active#(X1) active#(sel(X1,X2)) -> active#(X1) -> active#(cons(X1,X2)) -> cons#(active(X1),X2) active#(sel(X1,X2)) -> active#(X1) -> active#(s(X)) -> active#(X) active#(sel(X1,X2)) -> active#(X1) -> active#(s(X)) -> s#(active(X)) active#(sel(X1,X2)) -> active#(X1) -> active#(first(X1,X2)) -> active#(X1) active#(sel(X1,X2)) -> active#(X1) -> active#(first(X1,X2)) -> first#(active(X1),X2) active#(sel(X1,X2)) -> active#(X1) -> active#(first(X1,X2)) -> active#(X2) active#(sel(X1,X2)) -> active#(X1) -> active#(first(X1,X2)) -> first#(X1,active(X2)) active#(sel(X1,X2)) -> active#(X1) -> active#(sel(X1,X2)) -> active#(X1) active#(sel(X1,X2)) -> active#(X1) -> active#(sel(X1,X2)) -> sel#(active(X1),X2) active#(sel(X1,X2)) -> active#(X1) -> active#(sel(X1,X2)) -> active#(X2) active#(sel(X1,X2)) -> active#(X1) -> active#(sel(X1,X2)) -> sel#(X1,active(X2)) active#(first(s(X),cons(Y,Z))) -> first#(X,Z) -> first#(X1,mark(X2)) -> first#(X1,X2) active#(first(s(X),cons(Y,Z))) -> cons#(Y,first(X,Z)) -> cons#(ok(X1),ok(X2)) -> cons#(X1,X2) active#(first(X1,X2)) -> first#(active(X1),X2) -> first#(mark(X1),X2) -> first#(X1,X2) active#(first(X1,X2)) -> first#(active(X1),X2) -> first#(ok(X1),ok(X2)) -> first#(X1,X2) active#(first(X1,X2)) -> first#(X1,active(X2)) -> first#(X1,mark(X2)) -> first#(X1,X2) active#(first(X1,X2)) -> first#(X1,active(X2)) -> first#(ok(X1),ok(X2)) -> first#(X1,X2) active#(first(X1,X2)) -> active#(X2) -> active#(from(X)) -> s#(X) active#(first(X1,X2)) -> active#(X2) -> active#(from(X)) -> from#(s(X)) active#(first(X1,X2)) -> active#(X2) -> active#(from(X)) -> cons#(X,from(s(X))) active#(first(X1,X2)) -> active#(X2) -> active#(first(s(X),cons(Y,Z))) -> first#(X,Z) active#(first(X1,X2)) -> active#(X2) -> active#(first(s(X),cons(Y,Z))) -> cons#(Y,first(X,Z)) active#(first(X1,X2)) -> active#(X2) -> active#(sel(s(X),cons(Y,Z))) -> sel#(X,Z) active#(first(X1,X2)) -> active#(X2) -> active#(from(X)) -> active#(X) active#(first(X1,X2)) -> active#(X2) -> active#(from(X)) -> from#(active(X)) active#(first(X1,X2)) -> active#(X2) -> active#(cons(X1,X2)) -> active#(X1) active#(first(X1,X2)) -> active#(X2) -> active#(cons(X1,X2)) -> cons#(active(X1),X2) active#(first(X1,X2)) -> active#(X2) -> active#(s(X)) -> active#(X) active#(first(X1,X2)) -> active#(X2) -> active#(s(X)) -> s#(active(X)) active#(first(X1,X2)) -> active#(X2) -> active#(first(X1,X2)) -> active#(X1) active#(first(X1,X2)) -> active#(X2) -> active#(first(X1,X2)) -> first#(active(X1),X2) active#(first(X1,X2)) -> active#(X2) -> active#(first(X1,X2)) -> active#(X2) active#(first(X1,X2)) -> active#(X2) -> active#(first(X1,X2)) -> first#(X1,active(X2)) active#(first(X1,X2)) -> active#(X2) -> active#(sel(X1,X2)) -> active#(X1) active#(first(X1,X2)) -> active#(X2) -> active#(sel(X1,X2)) -> sel#(active(X1),X2) active#(first(X1,X2)) -> active#(X2) -> active#(sel(X1,X2)) -> active#(X2) active#(first(X1,X2)) -> active#(X2) -> active#(sel(X1,X2)) -> sel#(X1,active(X2)) active#(first(X1,X2)) -> active#(X1) -> active#(from(X)) -> s#(X) active#(first(X1,X2)) -> active#(X1) -> active#(from(X)) -> from#(s(X)) active#(first(X1,X2)) -> active#(X1) -> active#(from(X)) -> cons#(X,from(s(X))) active#(first(X1,X2)) -> active#(X1) -> active#(first(s(X),cons(Y,Z))) -> first#(X,Z) active#(first(X1,X2)) -> active#(X1) -> active#(first(s(X),cons(Y,Z))) -> cons#(Y,first(X,Z)) active#(first(X1,X2)) -> active#(X1) -> active#(sel(s(X),cons(Y,Z))) -> sel#(X,Z) active#(first(X1,X2)) -> active#(X1) -> active#(from(X)) -> active#(X) active#(first(X1,X2)) -> active#(X1) -> active#(from(X)) -> from#(active(X)) active#(first(X1,X2)) -> active#(X1) -> active#(cons(X1,X2)) -> active#(X1) active#(first(X1,X2)) -> active#(X1) -> active#(cons(X1,X2)) -> cons#(active(X1),X2) active#(first(X1,X2)) -> active#(X1) -> active#(s(X)) -> active#(X) active#(first(X1,X2)) -> active#(X1) -> active#(s(X)) -> s#(active(X)) active#(first(X1,X2)) -> active#(X1) -> active#(first(X1,X2)) -> active#(X1) active#(first(X1,X2)) -> active#(X1) -> active#(first(X1,X2)) -> first#(active(X1),X2) active#(first(X1,X2)) -> active#(X1) -> active#(first(X1,X2)) -> active#(X2) active#(first(X1,X2)) -> active#(X1) -> active#(first(X1,X2)) -> first#(X1,active(X2)) active#(first(X1,X2)) -> active#(X1) -> active#(sel(X1,X2)) -> active#(X1) active#(first(X1,X2)) -> active#(X1) -> active#(sel(X1,X2)) -> sel#(active(X1),X2) active#(first(X1,X2)) -> active#(X1) -> active#(sel(X1,X2)) -> active#(X2) active#(first(X1,X2)) -> active#(X1) -> active#(sel(X1,X2)) -> sel#(X1,active(X2)) active#(cons(X1,X2)) -> cons#(active(X1),X2) -> cons#(mark(X1),X2) -> cons#(X1,X2) active#(cons(X1,X2)) -> cons#(active(X1),X2) -> cons#(ok(X1),ok(X2)) -> cons#(X1,X2) active#(cons(X1,X2)) -> active#(X1) -> active#(from(X)) -> s#(X) active#(cons(X1,X2)) -> active#(X1) -> active#(from(X)) -> from#(s(X)) active#(cons(X1,X2)) -> active#(X1) -> active#(from(X)) -> cons#(X,from(s(X))) active#(cons(X1,X2)) -> active#(X1) -> active#(first(s(X),cons(Y,Z))) -> first#(X,Z) active#(cons(X1,X2)) -> active#(X1) -> active#(first(s(X),cons(Y,Z))) -> cons#(Y,first(X,Z)) active#(cons(X1,X2)) -> active#(X1) -> active#(sel(s(X),cons(Y,Z))) -> sel#(X,Z) active#(cons(X1,X2)) -> active#(X1) -> active#(from(X)) -> active#(X) active#(cons(X1,X2)) -> active#(X1) -> active#(from(X)) -> from#(active(X)) active#(cons(X1,X2)) -> active#(X1) -> active#(cons(X1,X2)) -> active#(X1) active#(cons(X1,X2)) -> active#(X1) -> active#(cons(X1,X2)) -> cons#(active(X1),X2) active#(cons(X1,X2)) -> active#(X1) -> active#(s(X)) -> active#(X) active#(cons(X1,X2)) -> active#(X1) -> active#(s(X)) -> s#(active(X)) active#(cons(X1,X2)) -> active#(X1) -> active#(first(X1,X2)) -> active#(X1) active#(cons(X1,X2)) -> active#(X1) -> active#(first(X1,X2)) -> first#(active(X1),X2) active#(cons(X1,X2)) -> active#(X1) -> active#(first(X1,X2)) -> active#(X2) active#(cons(X1,X2)) -> active#(X1) -> active#(first(X1,X2)) -> first#(X1,active(X2)) active#(cons(X1,X2)) -> active#(X1) -> active#(sel(X1,X2)) -> active#(X1) active#(cons(X1,X2)) -> active#(X1) -> active#(sel(X1,X2)) -> sel#(active(X1),X2) active#(cons(X1,X2)) -> active#(X1) -> active#(sel(X1,X2)) -> active#(X2) active#(cons(X1,X2)) -> active#(X1) -> active#(sel(X1,X2)) -> sel#(X1,active(X2)) active#(s(X)) -> s#(active(X)) -> s#(mark(X)) -> s#(X) active#(s(X)) -> s#(active(X)) -> s#(ok(X)) -> s#(X) active#(s(X)) -> active#(X) -> active#(from(X)) -> s#(X) active#(s(X)) -> active#(X) -> active#(from(X)) -> from#(s(X)) active#(s(X)) -> active#(X) -> active#(from(X)) -> cons#(X,from(s(X))) active#(s(X)) -> active#(X) -> active#(first(s(X),cons(Y,Z))) -> first#(X,Z) active#(s(X)) -> active#(X) -> active#(first(s(X),cons(Y,Z))) -> cons#(Y,first(X,Z)) active#(s(X)) -> active#(X) -> active#(sel(s(X),cons(Y,Z))) -> sel#(X,Z) active#(s(X)) -> active#(X) -> active#(from(X)) -> active#(X) active#(s(X)) -> active#(X) -> active#(from(X)) -> from#(active(X)) active#(s(X)) -> active#(X) -> active#(cons(X1,X2)) -> active#(X1) active#(s(X)) -> active#(X) -> active#(cons(X1,X2)) -> cons#(active(X1),X2) active#(s(X)) -> active#(X) -> active#(s(X)) -> active#(X) active#(s(X)) -> active#(X) -> active#(s(X)) -> s#(active(X)) active#(s(X)) -> active#(X) -> active#(first(X1,X2)) -> active#(X1) active#(s(X)) -> active#(X) -> active#(first(X1,X2)) -> first#(active(X1),X2) active#(s(X)) -> active#(X) -> active#(first(X1,X2)) -> active#(X2) active#(s(X)) -> active#(X) -> active#(first(X1,X2)) -> first#(X1,active(X2)) active#(s(X)) -> active#(X) -> active#(sel(X1,X2)) -> active#(X1) active#(s(X)) -> active#(X) -> active#(sel(X1,X2)) -> sel#(active(X1),X2) active#(s(X)) -> active#(X) -> active#(sel(X1,X2)) -> active#(X2) active#(s(X)) -> active#(X) -> active#(sel(X1,X2)) -> sel#(X1,active(X2)) active#(from(X)) -> from#(active(X)) -> from#(mark(X)) -> from#(X) active#(from(X)) -> from#(active(X)) -> from#(ok(X)) -> from#(X) active#(from(X)) -> active#(X) -> active#(from(X)) -> s#(X) active#(from(X)) -> active#(X) -> active#(from(X)) -> from#(s(X)) active#(from(X)) -> active#(X) -> active#(from(X)) -> cons#(X,from(s(X))) active#(from(X)) -> active#(X) -> active#(first(s(X),cons(Y,Z))) -> first#(X,Z) active#(from(X)) -> active#(X) -> active#(first(s(X),cons(Y,Z))) -> cons#(Y,first(X,Z)) active#(from(X)) -> active#(X) -> active#(sel(s(X),cons(Y,Z))) -> sel#(X,Z) active#(from(X)) -> active#(X) -> active#(from(X)) -> active#(X) active#(from(X)) -> active#(X) -> active#(from(X)) -> from#(active(X)) active#(from(X)) -> active#(X) -> active#(cons(X1,X2)) -> active#(X1) active#(from(X)) -> active#(X) -> active#(cons(X1,X2)) -> cons#(active(X1),X2) active#(from(X)) -> active#(X) -> active#(s(X)) -> active#(X) active#(from(X)) -> active#(X) -> active#(s(X)) -> s#(active(X)) active#(from(X)) -> active#(X) -> active#(first(X1,X2)) -> active#(X1) active#(from(X)) -> active#(X) -> active#(first(X1,X2)) -> first#(active(X1),X2) active#(from(X)) -> active#(X) -> active#(first(X1,X2)) -> active#(X2) active#(from(X)) -> active#(X) -> active#(first(X1,X2)) -> first#(X1,active(X2)) active#(from(X)) -> active#(X) -> active#(sel(X1,X2)) -> active#(X1) active#(from(X)) -> active#(X) -> active#(sel(X1,X2)) -> sel#(active(X1),X2) active#(from(X)) -> active#(X) -> active#(sel(X1,X2)) -> active#(X2) active#(from(X)) -> active#(X) -> active#(sel(X1,X2)) -> sel#(X1,active(X2)) SCC Processor: #sccs: 8 #rules: 29 #arcs: 344/2401 DPs: top#(ok(X)) -> top#(active(X)) top#(mark(X)) -> top#(proper(X)) TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(first(0(),Z)) -> mark(nil()) active(first(s(X),cons(Y,Z))) -> mark(cons(Y,first(X,Z))) active(sel(0(),cons(X,Z))) -> mark(X) active(sel(s(X),cons(Y,Z))) -> mark(sel(X,Z)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) active(first(X1,X2)) -> first(active(X1),X2) active(first(X1,X2)) -> first(X1,active(X2)) active(sel(X1,X2)) -> sel(active(X1),X2) active(sel(X1,X2)) -> sel(X1,active(X2)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) first(mark(X1),X2) -> mark(first(X1,X2)) first(X1,mark(X2)) -> mark(first(X1,X2)) sel(mark(X1),X2) -> mark(sel(X1,X2)) sel(X1,mark(X2)) -> mark(sel(X1,X2)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(first(X1,X2)) -> first(proper(X1),proper(X2)) proper(0()) -> ok(0()) proper(nil()) -> ok(nil()) proper(sel(X1,X2)) -> sel(proper(X1),proper(X2)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) first(ok(X1),ok(X2)) -> ok(first(X1,X2)) sel(ok(X1),ok(X2)) -> ok(sel(X1,X2)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Open DPs: proper#(sel(X1,X2)) -> proper#(X1) proper#(sel(X1,X2)) -> proper#(X2) proper#(first(X1,X2)) -> proper#(X1) proper#(first(X1,X2)) -> proper#(X2) proper#(s(X)) -> proper#(X) proper#(cons(X1,X2)) -> proper#(X1) proper#(cons(X1,X2)) -> proper#(X2) proper#(from(X)) -> proper#(X) TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(first(0(),Z)) -> mark(nil()) active(first(s(X),cons(Y,Z))) -> mark(cons(Y,first(X,Z))) active(sel(0(),cons(X,Z))) -> mark(X) active(sel(s(X),cons(Y,Z))) -> mark(sel(X,Z)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) active(first(X1,X2)) -> first(active(X1),X2) active(first(X1,X2)) -> first(X1,active(X2)) active(sel(X1,X2)) -> sel(active(X1),X2) active(sel(X1,X2)) -> sel(X1,active(X2)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) first(mark(X1),X2) -> mark(first(X1,X2)) first(X1,mark(X2)) -> mark(first(X1,X2)) sel(mark(X1),X2) -> mark(sel(X1,X2)) sel(X1,mark(X2)) -> mark(sel(X1,X2)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(first(X1,X2)) -> first(proper(X1),proper(X2)) proper(0()) -> ok(0()) proper(nil()) -> ok(nil()) proper(sel(X1,X2)) -> sel(proper(X1),proper(X2)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) first(ok(X1),ok(X2)) -> ok(first(X1,X2)) sel(ok(X1),ok(X2)) -> ok(sel(X1,X2)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Matrix Interpretation Processor: dimension: 1 interpretation: [proper#](x0) = x0 + 1, [top](x0) = 0, [ok](x0) = x0, [proper](x0) = x0, [sel](x0, x1) = x0 + x1 + 1, [nil] = 0, [first](x0, x1) = x0 + x1 + 1, [0] = 0, [mark](x0) = 1, [cons](x0, x1) = x0 + x1 + 1, [s](x0) = x0 + 1, [active](x0) = x0, [from](x0) = x0 + 1 orientation: proper#(sel(X1,X2)) = X1 + X2 + 2 >= X1 + 1 = proper#(X1) proper#(sel(X1,X2)) = X1 + X2 + 2 >= X2 + 1 = proper#(X2) proper#(first(X1,X2)) = X1 + X2 + 2 >= X1 + 1 = proper#(X1) proper#(first(X1,X2)) = X1 + X2 + 2 >= X2 + 1 = proper#(X2) proper#(s(X)) = X + 2 >= X + 1 = proper#(X) proper#(cons(X1,X2)) = X1 + X2 + 2 >= X1 + 1 = proper#(X1) proper#(cons(X1,X2)) = X1 + X2 + 2 >= X2 + 1 = proper#(X2) proper#(from(X)) = X + 2 >= X + 1 = proper#(X) active(from(X)) = X + 1 >= 1 = mark(cons(X,from(s(X)))) active(first(0(),Z)) = Z + 1 >= 1 = mark(nil()) active(first(s(X),cons(Y,Z))) = X + Y + Z + 3 >= 1 = mark(cons(Y,first(X,Z))) active(sel(0(),cons(X,Z))) = X + Z + 2 >= 1 = mark(X) active(sel(s(X),cons(Y,Z))) = X + Y + Z + 3 >= 1 = mark(sel(X,Z)) active(from(X)) = X + 1 >= X + 1 = from(active(X)) active(cons(X1,X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = cons(active(X1),X2) active(s(X)) = X + 1 >= X + 1 = s(active(X)) active(first(X1,X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = first(active(X1),X2) active(first(X1,X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = first(X1,active(X2)) active(sel(X1,X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = sel(active(X1),X2) active(sel(X1,X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = sel(X1,active(X2)) from(mark(X)) = 2 >= 1 = mark(from(X)) cons(mark(X1),X2) = X2 + 2 >= 1 = mark(cons(X1,X2)) s(mark(X)) = 2 >= 1 = mark(s(X)) first(mark(X1),X2) = X2 + 2 >= 1 = mark(first(X1,X2)) first(X1,mark(X2)) = X1 + 2 >= 1 = mark(first(X1,X2)) sel(mark(X1),X2) = X2 + 2 >= 1 = mark(sel(X1,X2)) sel(X1,mark(X2)) = X1 + 2 >= 1 = mark(sel(X1,X2)) proper(from(X)) = X + 1 >= X + 1 = from(proper(X)) proper(cons(X1,X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = cons(proper(X1),proper(X2)) proper(s(X)) = X + 1 >= X + 1 = s(proper(X)) proper(first(X1,X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = first(proper(X1),proper(X2)) proper(0()) = 0 >= 0 = ok(0()) proper(nil()) = 0 >= 0 = ok(nil()) proper(sel(X1,X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = sel(proper(X1),proper(X2)) from(ok(X)) = X + 1 >= X + 1 = ok(from(X)) cons(ok(X1),ok(X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = ok(cons(X1,X2)) s(ok(X)) = X + 1 >= X + 1 = ok(s(X)) first(ok(X1),ok(X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = ok(first(X1,X2)) sel(ok(X1),ok(X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = ok(sel(X1,X2)) top(mark(X)) = 0 >= 0 = top(proper(X)) top(ok(X)) = 0 >= 0 = top(active(X)) problem: DPs: TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(first(0(),Z)) -> mark(nil()) active(first(s(X),cons(Y,Z))) -> mark(cons(Y,first(X,Z))) active(sel(0(),cons(X,Z))) -> mark(X) active(sel(s(X),cons(Y,Z))) -> mark(sel(X,Z)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) active(first(X1,X2)) -> first(active(X1),X2) active(first(X1,X2)) -> first(X1,active(X2)) active(sel(X1,X2)) -> sel(active(X1),X2) active(sel(X1,X2)) -> sel(X1,active(X2)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) first(mark(X1),X2) -> mark(first(X1,X2)) first(X1,mark(X2)) -> mark(first(X1,X2)) sel(mark(X1),X2) -> mark(sel(X1,X2)) sel(X1,mark(X2)) -> mark(sel(X1,X2)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(first(X1,X2)) -> first(proper(X1),proper(X2)) proper(0()) -> ok(0()) proper(nil()) -> ok(nil()) proper(sel(X1,X2)) -> sel(proper(X1),proper(X2)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) first(ok(X1),ok(X2)) -> ok(first(X1,X2)) sel(ok(X1),ok(X2)) -> ok(sel(X1,X2)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Qed DPs: active#(sel(X1,X2)) -> active#(X2) active#(sel(X1,X2)) -> active#(X1) 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) TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(first(0(),Z)) -> mark(nil()) active(first(s(X),cons(Y,Z))) -> mark(cons(Y,first(X,Z))) active(sel(0(),cons(X,Z))) -> mark(X) active(sel(s(X),cons(Y,Z))) -> mark(sel(X,Z)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) active(first(X1,X2)) -> first(active(X1),X2) active(first(X1,X2)) -> first(X1,active(X2)) active(sel(X1,X2)) -> sel(active(X1),X2) active(sel(X1,X2)) -> sel(X1,active(X2)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) first(mark(X1),X2) -> mark(first(X1,X2)) first(X1,mark(X2)) -> mark(first(X1,X2)) sel(mark(X1),X2) -> mark(sel(X1,X2)) sel(X1,mark(X2)) -> mark(sel(X1,X2)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(first(X1,X2)) -> first(proper(X1),proper(X2)) proper(0()) -> ok(0()) proper(nil()) -> ok(nil()) proper(sel(X1,X2)) -> sel(proper(X1),proper(X2)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) first(ok(X1),ok(X2)) -> ok(first(X1,X2)) sel(ok(X1),ok(X2)) -> ok(sel(X1,X2)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Matrix Interpretation Processor: dimension: 1 interpretation: [active#](x0) = x0 + 1, [top](x0) = 0, [ok](x0) = x0, [proper](x0) = x0, [sel](x0, x1) = x0 + x1 + 1, [nil] = 0, [first](x0, x1) = x0 + x1, [0] = 1, [mark](x0) = 0, [cons](x0, x1) = x0, [s](x0) = x0 + 1, [active](x0) = x0, [from](x0) = x0 orientation: active#(sel(X1,X2)) = X1 + X2 + 2 >= X2 + 1 = active#(X2) active#(sel(X1,X2)) = X1 + X2 + 2 >= X1 + 1 = active#(X1) active#(first(X1,X2)) = X1 + X2 + 1 >= X2 + 1 = active#(X2) active#(first(X1,X2)) = X1 + X2 + 1 >= X1 + 1 = active#(X1) active#(s(X)) = X + 2 >= X + 1 = active#(X) active#(cons(X1,X2)) = X1 + 1 >= X1 + 1 = active#(X1) active#(from(X)) = X + 1 >= X + 1 = active#(X) active(from(X)) = X >= 0 = mark(cons(X,from(s(X)))) active(first(0(),Z)) = Z + 1 >= 0 = mark(nil()) active(first(s(X),cons(Y,Z))) = X + Y + 1 >= 0 = mark(cons(Y,first(X,Z))) active(sel(0(),cons(X,Z))) = X + 2 >= 0 = mark(X) active(sel(s(X),cons(Y,Z))) = X + Y + 2 >= 0 = mark(sel(X,Z)) active(from(X)) = X >= X = from(active(X)) active(cons(X1,X2)) = X1 >= X1 = cons(active(X1),X2) active(s(X)) = X + 1 >= X + 1 = s(active(X)) active(first(X1,X2)) = X1 + X2 >= X1 + X2 = first(active(X1),X2) active(first(X1,X2)) = X1 + X2 >= X1 + X2 = first(X1,active(X2)) active(sel(X1,X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = sel(active(X1),X2) active(sel(X1,X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = sel(X1,active(X2)) from(mark(X)) = 0 >= 0 = mark(from(X)) cons(mark(X1),X2) = 0 >= 0 = mark(cons(X1,X2)) s(mark(X)) = 1 >= 0 = mark(s(X)) first(mark(X1),X2) = X2 >= 0 = mark(first(X1,X2)) first(X1,mark(X2)) = X1 >= 0 = mark(first(X1,X2)) sel(mark(X1),X2) = X2 + 1 >= 0 = mark(sel(X1,X2)) sel(X1,mark(X2)) = X1 + 1 >= 0 = mark(sel(X1,X2)) proper(from(X)) = X >= X = from(proper(X)) proper(cons(X1,X2)) = X1 >= X1 = cons(proper(X1),proper(X2)) proper(s(X)) = X + 1 >= X + 1 = s(proper(X)) proper(first(X1,X2)) = X1 + X2 >= X1 + X2 = first(proper(X1),proper(X2)) proper(0()) = 1 >= 1 = ok(0()) proper(nil()) = 0 >= 0 = ok(nil()) proper(sel(X1,X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = sel(proper(X1),proper(X2)) from(ok(X)) = X >= X = ok(from(X)) cons(ok(X1),ok(X2)) = X1 >= X1 = ok(cons(X1,X2)) s(ok(X)) = X + 1 >= X + 1 = ok(s(X)) first(ok(X1),ok(X2)) = X1 + X2 >= X1 + X2 = ok(first(X1,X2)) sel(ok(X1),ok(X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = ok(sel(X1,X2)) top(mark(X)) = 0 >= 0 = top(proper(X)) top(ok(X)) = 0 >= 0 = top(active(X)) problem: DPs: active#(first(X1,X2)) -> active#(X2) active#(first(X1,X2)) -> active#(X1) active#(cons(X1,X2)) -> active#(X1) active#(from(X)) -> active#(X) TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(first(0(),Z)) -> mark(nil()) active(first(s(X),cons(Y,Z))) -> mark(cons(Y,first(X,Z))) active(sel(0(),cons(X,Z))) -> mark(X) active(sel(s(X),cons(Y,Z))) -> mark(sel(X,Z)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) active(first(X1,X2)) -> first(active(X1),X2) active(first(X1,X2)) -> first(X1,active(X2)) active(sel(X1,X2)) -> sel(active(X1),X2) active(sel(X1,X2)) -> sel(X1,active(X2)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) first(mark(X1),X2) -> mark(first(X1,X2)) first(X1,mark(X2)) -> mark(first(X1,X2)) sel(mark(X1),X2) -> mark(sel(X1,X2)) sel(X1,mark(X2)) -> mark(sel(X1,X2)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(first(X1,X2)) -> first(proper(X1),proper(X2)) proper(0()) -> ok(0()) proper(nil()) -> ok(nil()) proper(sel(X1,X2)) -> sel(proper(X1),proper(X2)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) first(ok(X1),ok(X2)) -> ok(first(X1,X2)) sel(ok(X1),ok(X2)) -> ok(sel(X1,X2)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Matrix Interpretation Processor: dimension: 1 interpretation: [active#](x0) = x0, [top](x0) = 0, [ok](x0) = 0, [proper](x0) = x0, [sel](x0, x1) = x0 + x1 + 1, [nil] = 0, [first](x0, x1) = x0 + x1, [0] = 1, [mark](x0) = 0, [cons](x0, x1) = x0, [s](x0) = 1, [active](x0) = x0, [from](x0) = x0 + 1 orientation: active#(first(X1,X2)) = X1 + X2 >= X2 = active#(X2) active#(first(X1,X2)) = X1 + X2 >= X1 = active#(X1) active#(cons(X1,X2)) = X1 >= X1 = active#(X1) active#(from(X)) = X + 1 >= X = active#(X) active(from(X)) = X + 1 >= 0 = mark(cons(X,from(s(X)))) active(first(0(),Z)) = Z + 1 >= 0 = mark(nil()) active(first(s(X),cons(Y,Z))) = Y + 1 >= 0 = mark(cons(Y,first(X,Z))) active(sel(0(),cons(X,Z))) = X + 2 >= 0 = mark(X) active(sel(s(X),cons(Y,Z))) = Y + 2 >= 0 = mark(sel(X,Z)) active(from(X)) = X + 1 >= X + 1 = from(active(X)) active(cons(X1,X2)) = X1 >= X1 = cons(active(X1),X2) active(s(X)) = 1 >= 1 = s(active(X)) active(first(X1,X2)) = X1 + X2 >= X1 + X2 = first(active(X1),X2) active(first(X1,X2)) = X1 + X2 >= X1 + X2 = first(X1,active(X2)) active(sel(X1,X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = sel(active(X1),X2) active(sel(X1,X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = sel(X1,active(X2)) from(mark(X)) = 1 >= 0 = mark(from(X)) cons(mark(X1),X2) = 0 >= 0 = mark(cons(X1,X2)) s(mark(X)) = 1 >= 0 = mark(s(X)) first(mark(X1),X2) = X2 >= 0 = mark(first(X1,X2)) first(X1,mark(X2)) = X1 >= 0 = mark(first(X1,X2)) sel(mark(X1),X2) = X2 + 1 >= 0 = mark(sel(X1,X2)) sel(X1,mark(X2)) = X1 + 1 >= 0 = mark(sel(X1,X2)) proper(from(X)) = X + 1 >= X + 1 = from(proper(X)) proper(cons(X1,X2)) = X1 >= X1 = cons(proper(X1),proper(X2)) proper(s(X)) = 1 >= 1 = s(proper(X)) proper(first(X1,X2)) = X1 + X2 >= X1 + X2 = first(proper(X1),proper(X2)) proper(0()) = 1 >= 0 = ok(0()) proper(nil()) = 0 >= 0 = ok(nil()) proper(sel(X1,X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = sel(proper(X1),proper(X2)) from(ok(X)) = 1 >= 0 = ok(from(X)) cons(ok(X1),ok(X2)) = 0 >= 0 = ok(cons(X1,X2)) s(ok(X)) = 1 >= 0 = ok(s(X)) first(ok(X1),ok(X2)) = 0 >= 0 = ok(first(X1,X2)) sel(ok(X1),ok(X2)) = 1 >= 0 = ok(sel(X1,X2)) top(mark(X)) = 0 >= 0 = top(proper(X)) top(ok(X)) = 0 >= 0 = top(active(X)) problem: DPs: active#(first(X1,X2)) -> active#(X2) active#(first(X1,X2)) -> active#(X1) active#(cons(X1,X2)) -> active#(X1) TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(first(0(),Z)) -> mark(nil()) active(first(s(X),cons(Y,Z))) -> mark(cons(Y,first(X,Z))) active(sel(0(),cons(X,Z))) -> mark(X) active(sel(s(X),cons(Y,Z))) -> mark(sel(X,Z)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) active(first(X1,X2)) -> first(active(X1),X2) active(first(X1,X2)) -> first(X1,active(X2)) active(sel(X1,X2)) -> sel(active(X1),X2) active(sel(X1,X2)) -> sel(X1,active(X2)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) first(mark(X1),X2) -> mark(first(X1,X2)) first(X1,mark(X2)) -> mark(first(X1,X2)) sel(mark(X1),X2) -> mark(sel(X1,X2)) sel(X1,mark(X2)) -> mark(sel(X1,X2)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(first(X1,X2)) -> first(proper(X1),proper(X2)) proper(0()) -> ok(0()) proper(nil()) -> ok(nil()) proper(sel(X1,X2)) -> sel(proper(X1),proper(X2)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) first(ok(X1),ok(X2)) -> ok(first(X1,X2)) sel(ok(X1),ok(X2)) -> ok(sel(X1,X2)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Matrix Interpretation Processor: dimension: 1 interpretation: [active#](x0) = x0 + 1, [top](x0) = 0, [ok](x0) = x0, [proper](x0) = x0, [sel](x0, x1) = 1, [nil] = 0, [first](x0, x1) = x0 + x1 + 1, [0] = 0, [mark](x0) = 1, [cons](x0, x1) = x0 + 1, [s](x0) = x0 + 1, [active](x0) = x0, [from](x0) = 1 orientation: active#(first(X1,X2)) = X1 + X2 + 2 >= X2 + 1 = active#(X2) active#(first(X1,X2)) = X1 + X2 + 2 >= X1 + 1 = active#(X1) active#(cons(X1,X2)) = X1 + 2 >= X1 + 1 = active#(X1) active(from(X)) = 1 >= 1 = mark(cons(X,from(s(X)))) active(first(0(),Z)) = Z + 1 >= 1 = mark(nil()) active(first(s(X),cons(Y,Z))) = X + Y + 3 >= 1 = mark(cons(Y,first(X,Z))) active(sel(0(),cons(X,Z))) = 1 >= 1 = mark(X) active(sel(s(X),cons(Y,Z))) = 1 >= 1 = mark(sel(X,Z)) active(from(X)) = 1 >= 1 = from(active(X)) active(cons(X1,X2)) = X1 + 1 >= X1 + 1 = cons(active(X1),X2) active(s(X)) = X + 1 >= X + 1 = s(active(X)) active(first(X1,X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = first(active(X1),X2) active(first(X1,X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = first(X1,active(X2)) active(sel(X1,X2)) = 1 >= 1 = sel(active(X1),X2) active(sel(X1,X2)) = 1 >= 1 = sel(X1,active(X2)) from(mark(X)) = 1 >= 1 = mark(from(X)) cons(mark(X1),X2) = 2 >= 1 = mark(cons(X1,X2)) s(mark(X)) = 2 >= 1 = mark(s(X)) first(mark(X1),X2) = X2 + 2 >= 1 = mark(first(X1,X2)) first(X1,mark(X2)) = X1 + 2 >= 1 = mark(first(X1,X2)) sel(mark(X1),X2) = 1 >= 1 = mark(sel(X1,X2)) sel(X1,mark(X2)) = 1 >= 1 = mark(sel(X1,X2)) proper(from(X)) = 1 >= 1 = from(proper(X)) proper(cons(X1,X2)) = X1 + 1 >= X1 + 1 = cons(proper(X1),proper(X2)) proper(s(X)) = X + 1 >= X + 1 = s(proper(X)) proper(first(X1,X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = first(proper(X1),proper(X2)) proper(0()) = 0 >= 0 = ok(0()) proper(nil()) = 0 >= 0 = ok(nil()) proper(sel(X1,X2)) = 1 >= 1 = sel(proper(X1),proper(X2)) from(ok(X)) = 1 >= 1 = ok(from(X)) cons(ok(X1),ok(X2)) = X1 + 1 >= X1 + 1 = ok(cons(X1,X2)) s(ok(X)) = X + 1 >= X + 1 = ok(s(X)) first(ok(X1),ok(X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = ok(first(X1,X2)) sel(ok(X1),ok(X2)) = 1 >= 1 = ok(sel(X1,X2)) top(mark(X)) = 0 >= 0 = top(proper(X)) top(ok(X)) = 0 >= 0 = top(active(X)) problem: DPs: TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(first(0(),Z)) -> mark(nil()) active(first(s(X),cons(Y,Z))) -> mark(cons(Y,first(X,Z))) active(sel(0(),cons(X,Z))) -> mark(X) active(sel(s(X),cons(Y,Z))) -> mark(sel(X,Z)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) active(first(X1,X2)) -> first(active(X1),X2) active(first(X1,X2)) -> first(X1,active(X2)) active(sel(X1,X2)) -> sel(active(X1),X2) active(sel(X1,X2)) -> sel(X1,active(X2)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) first(mark(X1),X2) -> mark(first(X1,X2)) first(X1,mark(X2)) -> mark(first(X1,X2)) sel(mark(X1),X2) -> mark(sel(X1,X2)) sel(X1,mark(X2)) -> mark(sel(X1,X2)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(first(X1,X2)) -> first(proper(X1),proper(X2)) proper(0()) -> ok(0()) proper(nil()) -> ok(nil()) proper(sel(X1,X2)) -> sel(proper(X1),proper(X2)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) first(ok(X1),ok(X2)) -> ok(first(X1,X2)) sel(ok(X1),ok(X2)) -> ok(sel(X1,X2)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Qed DPs: from#(ok(X)) -> from#(X) from#(mark(X)) -> from#(X) TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(first(0(),Z)) -> mark(nil()) active(first(s(X),cons(Y,Z))) -> mark(cons(Y,first(X,Z))) active(sel(0(),cons(X,Z))) -> mark(X) active(sel(s(X),cons(Y,Z))) -> mark(sel(X,Z)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) active(first(X1,X2)) -> first(active(X1),X2) active(first(X1,X2)) -> first(X1,active(X2)) active(sel(X1,X2)) -> sel(active(X1),X2) active(sel(X1,X2)) -> sel(X1,active(X2)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) first(mark(X1),X2) -> mark(first(X1,X2)) first(X1,mark(X2)) -> mark(first(X1,X2)) sel(mark(X1),X2) -> mark(sel(X1,X2)) sel(X1,mark(X2)) -> mark(sel(X1,X2)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(first(X1,X2)) -> first(proper(X1),proper(X2)) proper(0()) -> ok(0()) proper(nil()) -> ok(nil()) proper(sel(X1,X2)) -> sel(proper(X1),proper(X2)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) first(ok(X1),ok(X2)) -> ok(first(X1,X2)) sel(ok(X1),ok(X2)) -> ok(sel(X1,X2)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Open DPs: cons#(ok(X1),ok(X2)) -> cons#(X1,X2) cons#(mark(X1),X2) -> cons#(X1,X2) TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(first(0(),Z)) -> mark(nil()) active(first(s(X),cons(Y,Z))) -> mark(cons(Y,first(X,Z))) active(sel(0(),cons(X,Z))) -> mark(X) active(sel(s(X),cons(Y,Z))) -> mark(sel(X,Z)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) active(first(X1,X2)) -> first(active(X1),X2) active(first(X1,X2)) -> first(X1,active(X2)) active(sel(X1,X2)) -> sel(active(X1),X2) active(sel(X1,X2)) -> sel(X1,active(X2)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) first(mark(X1),X2) -> mark(first(X1,X2)) first(X1,mark(X2)) -> mark(first(X1,X2)) sel(mark(X1),X2) -> mark(sel(X1,X2)) sel(X1,mark(X2)) -> mark(sel(X1,X2)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(first(X1,X2)) -> first(proper(X1),proper(X2)) proper(0()) -> ok(0()) proper(nil()) -> ok(nil()) proper(sel(X1,X2)) -> sel(proper(X1),proper(X2)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) first(ok(X1),ok(X2)) -> ok(first(X1,X2)) sel(ok(X1),ok(X2)) -> ok(sel(X1,X2)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Matrix Interpretation Processor: dimension: 1 interpretation: [cons#](x0, x1) = x1 + 1, [top](x0) = 0, [ok](x0) = x0 + 1, [proper](x0) = x0 + 1, [sel](x0, x1) = x1, [nil] = 0, [first](x0, x1) = x1, [0] = 0, [mark](x0) = 0, [cons](x0, x1) = x0 + 1, [s](x0) = x0 + 1, [active](x0) = x0, [from](x0) = x0 orientation: cons#(ok(X1),ok(X2)) = X2 + 2 >= X2 + 1 = cons#(X1,X2) cons#(mark(X1),X2) = X2 + 1 >= X2 + 1 = cons#(X1,X2) active(from(X)) = X >= 0 = mark(cons(X,from(s(X)))) active(first(0(),Z)) = Z >= 0 = mark(nil()) active(first(s(X),cons(Y,Z))) = Y + 1 >= 0 = mark(cons(Y,first(X,Z))) active(sel(0(),cons(X,Z))) = X + 1 >= 0 = mark(X) active(sel(s(X),cons(Y,Z))) = Y + 1 >= 0 = mark(sel(X,Z)) active(from(X)) = X >= X = from(active(X)) active(cons(X1,X2)) = X1 + 1 >= X1 + 1 = cons(active(X1),X2) active(s(X)) = X + 1 >= X + 1 = s(active(X)) active(first(X1,X2)) = X2 >= X2 = first(active(X1),X2) active(first(X1,X2)) = X2 >= X2 = first(X1,active(X2)) active(sel(X1,X2)) = X2 >= X2 = sel(active(X1),X2) active(sel(X1,X2)) = X2 >= X2 = sel(X1,active(X2)) from(mark(X)) = 0 >= 0 = mark(from(X)) cons(mark(X1),X2) = 1 >= 0 = mark(cons(X1,X2)) s(mark(X)) = 1 >= 0 = mark(s(X)) first(mark(X1),X2) = X2 >= 0 = mark(first(X1,X2)) first(X1,mark(X2)) = 0 >= 0 = mark(first(X1,X2)) sel(mark(X1),X2) = X2 >= 0 = mark(sel(X1,X2)) sel(X1,mark(X2)) = 0 >= 0 = mark(sel(X1,X2)) proper(from(X)) = X + 1 >= X + 1 = from(proper(X)) proper(cons(X1,X2)) = X1 + 2 >= X1 + 2 = cons(proper(X1),proper(X2)) proper(s(X)) = X + 2 >= X + 2 = s(proper(X)) proper(first(X1,X2)) = X2 + 1 >= X2 + 1 = first(proper(X1),proper(X2)) proper(0()) = 1 >= 1 = ok(0()) proper(nil()) = 1 >= 1 = ok(nil()) proper(sel(X1,X2)) = X2 + 1 >= X2 + 1 = sel(proper(X1),proper(X2)) from(ok(X)) = X + 1 >= X + 1 = ok(from(X)) cons(ok(X1),ok(X2)) = X1 + 2 >= X1 + 2 = ok(cons(X1,X2)) s(ok(X)) = X + 2 >= X + 2 = ok(s(X)) first(ok(X1),ok(X2)) = X2 + 1 >= X2 + 1 = ok(first(X1,X2)) sel(ok(X1),ok(X2)) = X2 + 1 >= X2 + 1 = ok(sel(X1,X2)) top(mark(X)) = 0 >= 0 = top(proper(X)) top(ok(X)) = 0 >= 0 = top(active(X)) problem: DPs: cons#(mark(X1),X2) -> cons#(X1,X2) TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(first(0(),Z)) -> mark(nil()) active(first(s(X),cons(Y,Z))) -> mark(cons(Y,first(X,Z))) active(sel(0(),cons(X,Z))) -> mark(X) active(sel(s(X),cons(Y,Z))) -> mark(sel(X,Z)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) active(first(X1,X2)) -> first(active(X1),X2) active(first(X1,X2)) -> first(X1,active(X2)) active(sel(X1,X2)) -> sel(active(X1),X2) active(sel(X1,X2)) -> sel(X1,active(X2)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) first(mark(X1),X2) -> mark(first(X1,X2)) first(X1,mark(X2)) -> mark(first(X1,X2)) sel(mark(X1),X2) -> mark(sel(X1,X2)) sel(X1,mark(X2)) -> mark(sel(X1,X2)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(first(X1,X2)) -> first(proper(X1),proper(X2)) proper(0()) -> ok(0()) proper(nil()) -> ok(nil()) proper(sel(X1,X2)) -> sel(proper(X1),proper(X2)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) first(ok(X1),ok(X2)) -> ok(first(X1,X2)) sel(ok(X1),ok(X2)) -> ok(sel(X1,X2)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Open DPs: s#(ok(X)) -> s#(X) s#(mark(X)) -> s#(X) TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(first(0(),Z)) -> mark(nil()) active(first(s(X),cons(Y,Z))) -> mark(cons(Y,first(X,Z))) active(sel(0(),cons(X,Z))) -> mark(X) active(sel(s(X),cons(Y,Z))) -> mark(sel(X,Z)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) active(first(X1,X2)) -> first(active(X1),X2) active(first(X1,X2)) -> first(X1,active(X2)) active(sel(X1,X2)) -> sel(active(X1),X2) active(sel(X1,X2)) -> sel(X1,active(X2)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) first(mark(X1),X2) -> mark(first(X1,X2)) first(X1,mark(X2)) -> mark(first(X1,X2)) sel(mark(X1),X2) -> mark(sel(X1,X2)) sel(X1,mark(X2)) -> mark(sel(X1,X2)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(first(X1,X2)) -> first(proper(X1),proper(X2)) proper(0()) -> ok(0()) proper(nil()) -> ok(nil()) proper(sel(X1,X2)) -> sel(proper(X1),proper(X2)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) first(ok(X1),ok(X2)) -> ok(first(X1,X2)) sel(ok(X1),ok(X2)) -> ok(sel(X1,X2)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Open DPs: first#(ok(X1),ok(X2)) -> first#(X1,X2) first#(X1,mark(X2)) -> first#(X1,X2) first#(mark(X1),X2) -> first#(X1,X2) TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(first(0(),Z)) -> mark(nil()) active(first(s(X),cons(Y,Z))) -> mark(cons(Y,first(X,Z))) active(sel(0(),cons(X,Z))) -> mark(X) active(sel(s(X),cons(Y,Z))) -> mark(sel(X,Z)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) active(first(X1,X2)) -> first(active(X1),X2) active(first(X1,X2)) -> first(X1,active(X2)) active(sel(X1,X2)) -> sel(active(X1),X2) active(sel(X1,X2)) -> sel(X1,active(X2)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) first(mark(X1),X2) -> mark(first(X1,X2)) first(X1,mark(X2)) -> mark(first(X1,X2)) sel(mark(X1),X2) -> mark(sel(X1,X2)) sel(X1,mark(X2)) -> mark(sel(X1,X2)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(first(X1,X2)) -> first(proper(X1),proper(X2)) proper(0()) -> ok(0()) proper(nil()) -> ok(nil()) proper(sel(X1,X2)) -> sel(proper(X1),proper(X2)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) first(ok(X1),ok(X2)) -> ok(first(X1,X2)) sel(ok(X1),ok(X2)) -> ok(sel(X1,X2)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Open DPs: sel#(ok(X1),ok(X2)) -> sel#(X1,X2) sel#(X1,mark(X2)) -> sel#(X1,X2) sel#(mark(X1),X2) -> sel#(X1,X2) TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(first(0(),Z)) -> mark(nil()) active(first(s(X),cons(Y,Z))) -> mark(cons(Y,first(X,Z))) active(sel(0(),cons(X,Z))) -> mark(X) active(sel(s(X),cons(Y,Z))) -> mark(sel(X,Z)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) active(first(X1,X2)) -> first(active(X1),X2) active(first(X1,X2)) -> first(X1,active(X2)) active(sel(X1,X2)) -> sel(active(X1),X2) active(sel(X1,X2)) -> sel(X1,active(X2)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) first(mark(X1),X2) -> mark(first(X1,X2)) first(X1,mark(X2)) -> mark(first(X1,X2)) sel(mark(X1),X2) -> mark(sel(X1,X2)) sel(X1,mark(X2)) -> mark(sel(X1,X2)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(first(X1,X2)) -> first(proper(X1),proper(X2)) proper(0()) -> ok(0()) proper(nil()) -> ok(nil()) proper(sel(X1,X2)) -> sel(proper(X1),proper(X2)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) first(ok(X1),ok(X2)) -> ok(first(X1,X2)) sel(ok(X1),ok(X2)) -> ok(sel(X1,X2)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Open