MAYBE Problem: active(from(X)) -> mark(cons(X,from(s(X)))) active(length(nil())) -> mark(0()) active(length(cons(X,Y))) -> mark(s(length1(Y))) active(length1(X)) -> mark(length(X)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(length(X)) -> length(proper(X)) proper(nil()) -> ok(nil()) proper(0()) -> ok(0()) proper(length1(X)) -> length1(proper(X)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) length(ok(X)) -> ok(length(X)) length1(ok(X)) -> ok(length1(X)) 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#(length(cons(X,Y))) -> length1#(Y) active#(length(cons(X,Y))) -> s#(length1(Y)) active#(length1(X)) -> length#(X) 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)) from#(mark(X)) -> from#(X) cons#(mark(X1),X2) -> cons#(X1,X2) s#(mark(X)) -> s#(X) 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#(length(X)) -> proper#(X) proper#(length(X)) -> length#(proper(X)) proper#(length1(X)) -> proper#(X) proper#(length1(X)) -> length1#(proper(X)) from#(ok(X)) -> from#(X) cons#(ok(X1),ok(X2)) -> cons#(X1,X2) s#(ok(X)) -> s#(X) length#(ok(X)) -> length#(X) length1#(ok(X)) -> length1#(X) 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(length(nil())) -> mark(0()) active(length(cons(X,Y))) -> mark(s(length1(Y))) active(length1(X)) -> mark(length(X)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(length(X)) -> length(proper(X)) proper(nil()) -> ok(nil()) proper(0()) -> ok(0()) proper(length1(X)) -> length1(proper(X)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) length(ok(X)) -> ok(length(X)) length1(ok(X)) -> ok(length1(X)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) TDG Processor: DPs: active#(from(X)) -> s#(X) active#(from(X)) -> from#(s(X)) active#(from(X)) -> cons#(X,from(s(X))) active#(length(cons(X,Y))) -> length1#(Y) active#(length(cons(X,Y))) -> s#(length1(Y)) active#(length1(X)) -> length#(X) 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)) from#(mark(X)) -> from#(X) cons#(mark(X1),X2) -> cons#(X1,X2) s#(mark(X)) -> s#(X) 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#(length(X)) -> proper#(X) proper#(length(X)) -> length#(proper(X)) proper#(length1(X)) -> proper#(X) proper#(length1(X)) -> length1#(proper(X)) from#(ok(X)) -> from#(X) cons#(ok(X1),ok(X2)) -> cons#(X1,X2) s#(ok(X)) -> s#(X) length#(ok(X)) -> length#(X) length1#(ok(X)) -> length1#(X) 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(length(nil())) -> mark(0()) active(length(cons(X,Y))) -> mark(s(length1(Y))) active(length1(X)) -> mark(length(X)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(length(X)) -> length(proper(X)) proper(nil()) -> ok(nil()) proper(0()) -> ok(0()) proper(length1(X)) -> length1(proper(X)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) length(ok(X)) -> ok(length(X)) length1(ok(X)) -> ok(length1(X)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) graph: top#(ok(X)) -> top#(active(X)) -> top#(ok(X)) -> top#(active(X)) top#(ok(X)) -> top#(active(X)) -> top#(ok(X)) -> active#(X) top#(ok(X)) -> top#(active(X)) -> top#(mark(X)) -> top#(proper(X)) top#(ok(X)) -> top#(active(X)) -> top#(mark(X)) -> proper#(X) top#(ok(X)) -> active#(X) -> active#(s(X)) -> s#(active(X)) top#(ok(X)) -> active#(X) -> active#(s(X)) -> active#(X) top#(ok(X)) -> active#(X) -> active#(cons(X1,X2)) -> cons#(active(X1),X2) top#(ok(X)) -> active#(X) -> active#(cons(X1,X2)) -> active#(X1) top#(ok(X)) -> active#(X) -> active#(from(X)) -> from#(active(X)) top#(ok(X)) -> active#(X) -> active#(from(X)) -> active#(X) top#(ok(X)) -> active#(X) -> active#(length1(X)) -> length#(X) top#(ok(X)) -> active#(X) -> active#(length(cons(X,Y))) -> s#(length1(Y)) top#(ok(X)) -> active#(X) -> active#(length(cons(X,Y))) -> length1#(Y) top#(ok(X)) -> active#(X) -> active#(from(X)) -> cons#(X,from(s(X))) top#(ok(X)) -> active#(X) -> active#(from(X)) -> from#(s(X)) top#(ok(X)) -> active#(X) -> active#(from(X)) -> s#(X) top#(mark(X)) -> top#(proper(X)) -> top#(ok(X)) -> top#(active(X)) top#(mark(X)) -> top#(proper(X)) -> top#(ok(X)) -> active#(X) top#(mark(X)) -> top#(proper(X)) -> top#(mark(X)) -> top#(proper(X)) top#(mark(X)) -> top#(proper(X)) -> top#(mark(X)) -> proper#(X) top#(mark(X)) -> proper#(X) -> proper#(length1(X)) -> length1#(proper(X)) top#(mark(X)) -> proper#(X) -> proper#(length1(X)) -> proper#(X) top#(mark(X)) -> proper#(X) -> proper#(length(X)) -> length#(proper(X)) top#(mark(X)) -> proper#(X) -> proper#(length(X)) -> proper#(X) top#(mark(X)) -> proper#(X) -> proper#(s(X)) -> s#(proper(X)) top#(mark(X)) -> proper#(X) -> proper#(s(X)) -> proper#(X) top#(mark(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) top#(mark(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> proper#(X1) top#(mark(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> proper#(X2) top#(mark(X)) -> proper#(X) -> proper#(from(X)) -> from#(proper(X)) top#(mark(X)) -> proper#(X) -> proper#(from(X)) -> proper#(X) proper#(length1(X)) -> proper#(X) -> proper#(length1(X)) -> length1#(proper(X)) proper#(length1(X)) -> proper#(X) -> proper#(length1(X)) -> proper#(X) proper#(length1(X)) -> proper#(X) -> proper#(length(X)) -> length#(proper(X)) proper#(length1(X)) -> proper#(X) -> proper#(length(X)) -> proper#(X) proper#(length1(X)) -> proper#(X) -> proper#(s(X)) -> s#(proper(X)) proper#(length1(X)) -> proper#(X) -> proper#(s(X)) -> proper#(X) proper#(length1(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) proper#(length1(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> proper#(X1) proper#(length1(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> proper#(X2) proper#(length1(X)) -> proper#(X) -> proper#(from(X)) -> from#(proper(X)) proper#(length1(X)) -> proper#(X) -> proper#(from(X)) -> proper#(X) proper#(length1(X)) -> length1#(proper(X)) -> length1#(ok(X)) -> length1#(X) proper#(length(X)) -> proper#(X) -> proper#(length1(X)) -> length1#(proper(X)) proper#(length(X)) -> proper#(X) -> proper#(length1(X)) -> proper#(X) proper#(length(X)) -> proper#(X) -> proper#(length(X)) -> length#(proper(X)) proper#(length(X)) -> proper#(X) -> proper#(length(X)) -> proper#(X) proper#(length(X)) -> proper#(X) -> proper#(s(X)) -> s#(proper(X)) proper#(length(X)) -> proper#(X) -> proper#(s(X)) -> proper#(X) proper#(length(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) proper#(length(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> proper#(X1) proper#(length(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> proper#(X2) proper#(length(X)) -> proper#(X) -> proper#(from(X)) -> from#(proper(X)) proper#(length(X)) -> proper#(X) -> proper#(from(X)) -> proper#(X) proper#(length(X)) -> length#(proper(X)) -> length#(ok(X)) -> length#(X) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(length1(X)) -> length1#(proper(X)) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(length1(X)) -> proper#(X) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(length(X)) -> length#(proper(X)) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(length(X)) -> proper#(X) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(s(X)) -> s#(proper(X)) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(s(X)) -> proper#(X) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(cons(X1,X2)) -> proper#(X1) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(cons(X1,X2)) -> proper#(X2) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(from(X)) -> from#(proper(X)) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(from(X)) -> proper#(X) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(length1(X)) -> length1#(proper(X)) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(length1(X)) -> proper#(X) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(length(X)) -> length#(proper(X)) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(length(X)) -> proper#(X) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(s(X)) -> s#(proper(X)) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(s(X)) -> proper#(X) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(cons(X1,X2)) -> proper#(X1) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(cons(X1,X2)) -> proper#(X2) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(from(X)) -> from#(proper(X)) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(from(X)) -> proper#(X) proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) -> cons#(ok(X1),ok(X2)) -> cons#(X1,X2) proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) -> cons#(mark(X1),X2) -> cons#(X1,X2) proper#(s(X)) -> proper#(X) -> proper#(length1(X)) -> length1#(proper(X)) proper#(s(X)) -> proper#(X) -> proper#(length1(X)) -> proper#(X) proper#(s(X)) -> proper#(X) -> proper#(length(X)) -> length#(proper(X)) proper#(s(X)) -> proper#(X) -> proper#(length(X)) -> proper#(X) proper#(s(X)) -> proper#(X) -> proper#(s(X)) -> s#(proper(X)) proper#(s(X)) -> proper#(X) -> proper#(s(X)) -> proper#(X) proper#(s(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) proper#(s(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> proper#(X1) proper#(s(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> proper#(X2) proper#(s(X)) -> proper#(X) -> proper#(from(X)) -> from#(proper(X)) proper#(s(X)) -> proper#(X) -> proper#(from(X)) -> proper#(X) proper#(s(X)) -> s#(proper(X)) -> s#(ok(X)) -> s#(X) proper#(s(X)) -> s#(proper(X)) -> s#(mark(X)) -> s#(X) proper#(from(X)) -> proper#(X) -> proper#(length1(X)) -> length1#(proper(X)) proper#(from(X)) -> proper#(X) -> proper#(length1(X)) -> proper#(X) proper#(from(X)) -> proper#(X) -> proper#(length(X)) -> length#(proper(X)) proper#(from(X)) -> proper#(X) -> proper#(length(X)) -> proper#(X) proper#(from(X)) -> proper#(X) -> proper#(s(X)) -> s#(proper(X)) proper#(from(X)) -> proper#(X) -> proper#(s(X)) -> proper#(X) proper#(from(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) proper#(from(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> proper#(X1) proper#(from(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> proper#(X2) proper#(from(X)) -> proper#(X) -> proper#(from(X)) -> from#(proper(X)) proper#(from(X)) -> proper#(X) -> proper#(from(X)) -> proper#(X) proper#(from(X)) -> from#(proper(X)) -> from#(ok(X)) -> from#(X) proper#(from(X)) -> from#(proper(X)) -> from#(mark(X)) -> from#(X) length#(ok(X)) -> length#(X) -> length#(ok(X)) -> length#(X) length1#(ok(X)) -> length1#(X) -> length1#(ok(X)) -> length1#(X) cons#(ok(X1),ok(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#(ok(X1),ok(X2)) -> cons#(X1,X2) cons#(mark(X1),X2) -> cons#(X1,X2) -> cons#(mark(X1),X2) -> cons#(X1,X2) from#(ok(X)) -> from#(X) -> from#(ok(X)) -> from#(X) from#(ok(X)) -> from#(X) -> from#(mark(X)) -> from#(X) from#(mark(X)) -> from#(X) -> from#(ok(X)) -> from#(X) from#(mark(X)) -> from#(X) -> from#(mark(X)) -> from#(X) s#(ok(X)) -> s#(X) -> s#(ok(X)) -> s#(X) s#(ok(X)) -> s#(X) -> s#(mark(X)) -> s#(X) s#(mark(X)) -> s#(X) -> s#(ok(X)) -> s#(X) s#(mark(X)) -> s#(X) -> s#(mark(X)) -> s#(X) active#(length1(X)) -> length#(X) -> length#(ok(X)) -> length#(X) active#(length(cons(X,Y))) -> length1#(Y) -> length1#(ok(X)) -> length1#(X) active#(length(cons(X,Y))) -> s#(length1(Y)) -> s#(ok(X)) -> s#(X) active#(length(cons(X,Y))) -> s#(length1(Y)) -> s#(mark(X)) -> s#(X) active#(cons(X1,X2)) -> cons#(active(X1),X2) -> cons#(ok(X1),ok(X2)) -> cons#(X1,X2) active#(cons(X1,X2)) -> cons#(active(X1),X2) -> cons#(mark(X1),X2) -> cons#(X1,X2) active#(cons(X1,X2)) -> active#(X1) -> active#(s(X)) -> s#(active(X)) active#(cons(X1,X2)) -> active#(X1) -> active#(s(X)) -> active#(X) active#(cons(X1,X2)) -> active#(X1) -> active#(cons(X1,X2)) -> cons#(active(X1),X2) active#(cons(X1,X2)) -> active#(X1) -> active#(cons(X1,X2)) -> active#(X1) active#(cons(X1,X2)) -> active#(X1) -> active#(from(X)) -> from#(active(X)) active#(cons(X1,X2)) -> active#(X1) -> active#(from(X)) -> active#(X) active#(cons(X1,X2)) -> active#(X1) -> active#(length1(X)) -> length#(X) active#(cons(X1,X2)) -> active#(X1) -> active#(length(cons(X,Y))) -> s#(length1(Y)) active#(cons(X1,X2)) -> active#(X1) -> active#(length(cons(X,Y))) -> length1#(Y) active#(cons(X1,X2)) -> active#(X1) -> active#(from(X)) -> cons#(X,from(s(X))) active#(cons(X1,X2)) -> active#(X1) -> active#(from(X)) -> from#(s(X)) active#(cons(X1,X2)) -> active#(X1) -> active#(from(X)) -> s#(X) active#(s(X)) -> s#(active(X)) -> s#(ok(X)) -> s#(X) active#(s(X)) -> s#(active(X)) -> s#(mark(X)) -> s#(X) active#(s(X)) -> active#(X) -> active#(s(X)) -> s#(active(X)) active#(s(X)) -> active#(X) -> active#(s(X)) -> active#(X) active#(s(X)) -> active#(X) -> active#(cons(X1,X2)) -> cons#(active(X1),X2) active#(s(X)) -> active#(X) -> active#(cons(X1,X2)) -> active#(X1) active#(s(X)) -> active#(X) -> active#(from(X)) -> from#(active(X)) active#(s(X)) -> active#(X) -> active#(from(X)) -> active#(X) active#(s(X)) -> active#(X) -> active#(length1(X)) -> length#(X) active#(s(X)) -> active#(X) -> active#(length(cons(X,Y))) -> s#(length1(Y)) active#(s(X)) -> active#(X) -> active#(length(cons(X,Y))) -> length1#(Y) active#(s(X)) -> active#(X) -> active#(from(X)) -> cons#(X,from(s(X))) active#(s(X)) -> active#(X) -> active#(from(X)) -> from#(s(X)) active#(s(X)) -> active#(X) -> active#(from(X)) -> s#(X) active#(from(X)) -> cons#(X,from(s(X))) -> cons#(ok(X1),ok(X2)) -> cons#(X1,X2) active#(from(X)) -> cons#(X,from(s(X))) -> cons#(mark(X1),X2) -> cons#(X1,X2) active#(from(X)) -> from#(s(X)) -> from#(ok(X)) -> from#(X) active#(from(X)) -> from#(s(X)) -> from#(mark(X)) -> from#(X) active#(from(X)) -> from#(active(X)) -> from#(ok(X)) -> from#(X) active#(from(X)) -> from#(active(X)) -> from#(mark(X)) -> from#(X) active#(from(X)) -> s#(X) -> s#(ok(X)) -> s#(X) active#(from(X)) -> s#(X) -> s#(mark(X)) -> s#(X) active#(from(X)) -> active#(X) -> active#(s(X)) -> s#(active(X)) active#(from(X)) -> active#(X) -> active#(s(X)) -> active#(X) active#(from(X)) -> active#(X) -> active#(cons(X1,X2)) -> cons#(active(X1),X2) active#(from(X)) -> active#(X) -> active#(cons(X1,X2)) -> active#(X1) active#(from(X)) -> active#(X) -> active#(from(X)) -> from#(active(X)) active#(from(X)) -> active#(X) -> active#(from(X)) -> active#(X) active#(from(X)) -> active#(X) -> active#(length1(X)) -> length#(X) active#(from(X)) -> active#(X) -> active#(length(cons(X,Y))) -> s#(length1(Y)) active#(from(X)) -> active#(X) -> active#(length(cons(X,Y))) -> length1#(Y) active#(from(X)) -> active#(X) -> active#(from(X)) -> cons#(X,from(s(X))) active#(from(X)) -> active#(X) -> active#(from(X)) -> from#(s(X)) active#(from(X)) -> active#(X) -> active#(from(X)) -> s#(X) EDG Processor: DPs: active#(from(X)) -> s#(X) active#(from(X)) -> from#(s(X)) active#(from(X)) -> cons#(X,from(s(X))) active#(length(cons(X,Y))) -> length1#(Y) active#(length(cons(X,Y))) -> s#(length1(Y)) active#(length1(X)) -> length#(X) 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)) from#(mark(X)) -> from#(X) cons#(mark(X1),X2) -> cons#(X1,X2) s#(mark(X)) -> s#(X) 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#(length(X)) -> proper#(X) proper#(length(X)) -> length#(proper(X)) proper#(length1(X)) -> proper#(X) proper#(length1(X)) -> length1#(proper(X)) from#(ok(X)) -> from#(X) cons#(ok(X1),ok(X2)) -> cons#(X1,X2) s#(ok(X)) -> s#(X) length#(ok(X)) -> length#(X) length1#(ok(X)) -> length1#(X) 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(length(nil())) -> mark(0()) active(length(cons(X,Y))) -> mark(s(length1(Y))) active(length1(X)) -> mark(length(X)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(length(X)) -> length(proper(X)) proper(nil()) -> ok(nil()) proper(0()) -> ok(0()) proper(length1(X)) -> length1(proper(X)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) length(ok(X)) -> ok(length(X)) length1(ok(X)) -> ok(length1(X)) 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#(length(cons(X,Y))) -> length1#(Y) top#(ok(X)) -> active#(X) -> active#(length(cons(X,Y))) -> s#(length1(Y)) top#(ok(X)) -> active#(X) -> active#(length1(X)) -> length#(X) 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#(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#(length(X)) -> proper#(X) top#(mark(X)) -> proper#(X) -> proper#(length(X)) -> length#(proper(X)) top#(mark(X)) -> proper#(X) -> proper#(length1(X)) -> proper#(X) top#(mark(X)) -> proper#(X) -> proper#(length1(X)) -> length1#(proper(X)) proper#(length1(X)) -> proper#(X) -> proper#(from(X)) -> proper#(X) proper#(length1(X)) -> proper#(X) -> proper#(from(X)) -> from#(proper(X)) proper#(length1(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> proper#(X2) proper#(length1(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> proper#(X1) proper#(length1(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) proper#(length1(X)) -> proper#(X) -> proper#(s(X)) -> proper#(X) proper#(length1(X)) -> proper#(X) -> proper#(s(X)) -> s#(proper(X)) proper#(length1(X)) -> proper#(X) -> proper#(length(X)) -> proper#(X) proper#(length1(X)) -> proper#(X) -> proper#(length(X)) -> length#(proper(X)) proper#(length1(X)) -> proper#(X) -> proper#(length1(X)) -> proper#(X) proper#(length1(X)) -> proper#(X) -> proper#(length1(X)) -> length1#(proper(X)) proper#(length1(X)) -> length1#(proper(X)) -> length1#(ok(X)) -> length1#(X) proper#(length(X)) -> proper#(X) -> proper#(from(X)) -> proper#(X) proper#(length(X)) -> proper#(X) -> proper#(from(X)) -> from#(proper(X)) proper#(length(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> proper#(X2) proper#(length(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> proper#(X1) proper#(length(X)) -> proper#(X) -> proper#(cons(X1,X2)) -> cons#(proper(X1),proper(X2)) proper#(length(X)) -> proper#(X) -> proper#(s(X)) -> proper#(X) proper#(length(X)) -> proper#(X) -> proper#(s(X)) -> s#(proper(X)) proper#(length(X)) -> proper#(X) -> proper#(length(X)) -> proper#(X) proper#(length(X)) -> proper#(X) -> proper#(length(X)) -> length#(proper(X)) proper#(length(X)) -> proper#(X) -> proper#(length1(X)) -> proper#(X) proper#(length(X)) -> proper#(X) -> proper#(length1(X)) -> length1#(proper(X)) proper#(length(X)) -> length#(proper(X)) -> length#(ok(X)) -> length#(X) 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#(length(X)) -> proper#(X) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(length(X)) -> length#(proper(X)) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(length1(X)) -> proper#(X) proper#(cons(X1,X2)) -> proper#(X2) -> proper#(length1(X)) -> length1#(proper(X)) 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#(length(X)) -> proper#(X) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(length(X)) -> length#(proper(X)) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(length1(X)) -> proper#(X) proper#(cons(X1,X2)) -> proper#(X1) -> proper#(length1(X)) -> length1#(proper(X)) 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#(length(X)) -> proper#(X) proper#(s(X)) -> proper#(X) -> proper#(length(X)) -> length#(proper(X)) proper#(s(X)) -> proper#(X) -> proper#(length1(X)) -> proper#(X) proper#(s(X)) -> proper#(X) -> proper#(length1(X)) -> length1#(proper(X)) 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#(length(X)) -> proper#(X) proper#(from(X)) -> proper#(X) -> proper#(length(X)) -> length#(proper(X)) proper#(from(X)) -> proper#(X) -> proper#(length1(X)) -> proper#(X) proper#(from(X)) -> proper#(X) -> proper#(length1(X)) -> length1#(proper(X)) proper#(from(X)) -> from#(proper(X)) -> from#(mark(X)) -> from#(X) proper#(from(X)) -> from#(proper(X)) -> from#(ok(X)) -> from#(X) length#(ok(X)) -> length#(X) -> length#(ok(X)) -> length#(X) length1#(ok(X)) -> length1#(X) -> length1#(ok(X)) -> length1#(X) 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#(length(cons(X,Y))) -> length1#(Y) -> length1#(ok(X)) -> length1#(X) active#(length(cons(X,Y))) -> s#(length1(Y)) -> s#(mark(X)) -> s#(X) active#(length(cons(X,Y))) -> s#(length1(Y)) -> s#(ok(X)) -> s#(X) 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#(length(cons(X,Y))) -> length1#(Y) active#(cons(X1,X2)) -> active#(X1) -> active#(length(cons(X,Y))) -> s#(length1(Y)) active#(cons(X1,X2)) -> active#(X1) -> active#(length1(X)) -> length#(X) 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#(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#(length(cons(X,Y))) -> length1#(Y) active#(s(X)) -> active#(X) -> active#(length(cons(X,Y))) -> s#(length1(Y)) active#(s(X)) -> active#(X) -> active#(length1(X)) -> length#(X) 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#(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#(length(cons(X,Y))) -> length1#(Y) active#(from(X)) -> active#(X) -> active#(length(cons(X,Y))) -> s#(length1(Y)) active#(from(X)) -> active#(X) -> active#(length1(X)) -> length#(X) 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)) SCC Processor: #sccs: 8 #rules: 19 #arcs: 164/1225 DPs: top#(ok(X)) -> top#(active(X)) top#(mark(X)) -> top#(proper(X)) TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(length(nil())) -> mark(0()) active(length(cons(X,Y))) -> mark(s(length1(Y))) active(length1(X)) -> mark(length(X)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(length(X)) -> length(proper(X)) proper(nil()) -> ok(nil()) proper(0()) -> ok(0()) proper(length1(X)) -> length1(proper(X)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) length(ok(X)) -> ok(length(X)) length1(ok(X)) -> ok(length1(X)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Open DPs: proper#(length1(X)) -> proper#(X) proper#(length(X)) -> proper#(X) 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(length(nil())) -> mark(0()) active(length(cons(X,Y))) -> mark(s(length1(Y))) active(length1(X)) -> mark(length(X)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(length(X)) -> length(proper(X)) proper(nil()) -> ok(nil()) proper(0()) -> ok(0()) proper(length1(X)) -> length1(proper(X)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) length(ok(X)) -> ok(length(X)) length1(ok(X)) -> ok(length1(X)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Matrix Interpretation Processor: dimension: 1 interpretation: [proper#](x0) = x0 + 1, [top](x0) = 1, [ok](x0) = x0, [proper](x0) = x0, [length1](x0) = x0 + 1, [0] = 0, [length](x0) = x0 + 1, [nil] = 0, [mark](x0) = 0, [cons](x0, x1) = x0 + x1, [s](x0) = x0 + 1, [active](x0) = x0, [from](x0) = x0 + 1 orientation: proper#(length1(X)) = X + 2 >= X + 1 = proper#(X) proper#(length(X)) = X + 2 >= X + 1 = proper#(X) proper#(s(X)) = X + 2 >= X + 1 = proper#(X) proper#(cons(X1,X2)) = X1 + X2 + 1 >= X1 + 1 = proper#(X1) proper#(cons(X1,X2)) = X1 + X2 + 1 >= X2 + 1 = proper#(X2) proper#(from(X)) = X + 2 >= X + 1 = proper#(X) active(from(X)) = X + 1 >= 0 = mark(cons(X,from(s(X)))) active(length(nil())) = 1 >= 0 = mark(0()) active(length(cons(X,Y))) = X + Y + 1 >= 0 = mark(s(length1(Y))) active(length1(X)) = X + 1 >= 0 = mark(length(X)) active(from(X)) = X + 1 >= X + 1 = from(active(X)) active(cons(X1,X2)) = X1 + X2 >= X1 + X2 = cons(active(X1),X2) active(s(X)) = X + 1 >= X + 1 = s(active(X)) from(mark(X)) = 1 >= 0 = mark(from(X)) cons(mark(X1),X2) = X2 >= 0 = mark(cons(X1,X2)) s(mark(X)) = 1 >= 0 = mark(s(X)) proper(from(X)) = X + 1 >= X + 1 = from(proper(X)) proper(cons(X1,X2)) = X1 + X2 >= X1 + X2 = cons(proper(X1),proper(X2)) proper(s(X)) = X + 1 >= X + 1 = s(proper(X)) proper(length(X)) = X + 1 >= X + 1 = length(proper(X)) proper(nil()) = 0 >= 0 = ok(nil()) proper(0()) = 0 >= 0 = ok(0()) proper(length1(X)) = X + 1 >= X + 1 = length1(proper(X)) from(ok(X)) = X + 1 >= X + 1 = ok(from(X)) cons(ok(X1),ok(X2)) = X1 + X2 >= X1 + X2 = ok(cons(X1,X2)) s(ok(X)) = X + 1 >= X + 1 = ok(s(X)) length(ok(X)) = X + 1 >= X + 1 = ok(length(X)) length1(ok(X)) = X + 1 >= X + 1 = ok(length1(X)) top(mark(X)) = 1 >= 1 = top(proper(X)) top(ok(X)) = 1 >= 1 = top(active(X)) problem: DPs: proper#(cons(X1,X2)) -> proper#(X1) proper#(cons(X1,X2)) -> proper#(X2) TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(length(nil())) -> mark(0()) active(length(cons(X,Y))) -> mark(s(length1(Y))) active(length1(X)) -> mark(length(X)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(length(X)) -> length(proper(X)) proper(nil()) -> ok(nil()) proper(0()) -> ok(0()) proper(length1(X)) -> length1(proper(X)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) length(ok(X)) -> ok(length(X)) length1(ok(X)) -> ok(length1(X)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Matrix Interpretation Processor: dimension: 1 interpretation: [proper#](x0) = x0 + 1, [top](x0) = 1, [ok](x0) = x0, [proper](x0) = x0, [length1](x0) = 0, [0] = 0, [length](x0) = 0, [nil] = 0, [mark](x0) = 0, [cons](x0, x1) = x0 + x1 + 1, [s](x0) = 0, [active](x0) = x0, [from](x0) = 0 orientation: proper#(cons(X1,X2)) = X1 + X2 + 2 >= X1 + 1 = proper#(X1) proper#(cons(X1,X2)) = X1 + X2 + 2 >= X2 + 1 = proper#(X2) active(from(X)) = 0 >= 0 = mark(cons(X,from(s(X)))) active(length(nil())) = 0 >= 0 = mark(0()) active(length(cons(X,Y))) = 0 >= 0 = mark(s(length1(Y))) active(length1(X)) = 0 >= 0 = mark(length(X)) active(from(X)) = 0 >= 0 = from(active(X)) active(cons(X1,X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = cons(active(X1),X2) active(s(X)) = 0 >= 0 = s(active(X)) from(mark(X)) = 0 >= 0 = mark(from(X)) cons(mark(X1),X2) = X2 + 1 >= 0 = mark(cons(X1,X2)) s(mark(X)) = 0 >= 0 = mark(s(X)) proper(from(X)) = 0 >= 0 = from(proper(X)) proper(cons(X1,X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = cons(proper(X1),proper(X2)) proper(s(X)) = 0 >= 0 = s(proper(X)) proper(length(X)) = 0 >= 0 = length(proper(X)) proper(nil()) = 0 >= 0 = ok(nil()) proper(0()) = 0 >= 0 = ok(0()) proper(length1(X)) = 0 >= 0 = length1(proper(X)) from(ok(X)) = 0 >= 0 = ok(from(X)) cons(ok(X1),ok(X2)) = X1 + X2 + 1 >= X1 + X2 + 1 = ok(cons(X1,X2)) s(ok(X)) = 0 >= 0 = ok(s(X)) length(ok(X)) = 0 >= 0 = ok(length(X)) length1(ok(X)) = 0 >= 0 = ok(length1(X)) top(mark(X)) = 1 >= 1 = top(proper(X)) top(ok(X)) = 1 >= 1 = top(active(X)) problem: DPs: TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(length(nil())) -> mark(0()) active(length(cons(X,Y))) -> mark(s(length1(Y))) active(length1(X)) -> mark(length(X)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(length(X)) -> length(proper(X)) proper(nil()) -> ok(nil()) proper(0()) -> ok(0()) proper(length1(X)) -> length1(proper(X)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) length(ok(X)) -> ok(length(X)) length1(ok(X)) -> ok(length1(X)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Qed DPs: length#(ok(X)) -> length#(X) TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(length(nil())) -> mark(0()) active(length(cons(X,Y))) -> mark(s(length1(Y))) active(length1(X)) -> mark(length(X)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(length(X)) -> length(proper(X)) proper(nil()) -> ok(nil()) proper(0()) -> ok(0()) proper(length1(X)) -> length1(proper(X)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) length(ok(X)) -> ok(length(X)) length1(ok(X)) -> ok(length1(X)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Matrix Interpretation Processor: dimension: 1 interpretation: [length#](x0) = x0 + 1, [top](x0) = 1, [ok](x0) = x0 + 1, [proper](x0) = 1, [length1](x0) = x0, [0] = 0, [length](x0) = x0, [nil] = 0, [mark](x0) = 0, [cons](x0, x1) = x0, [s](x0) = x0, [active](x0) = 0, [from](x0) = x0 orientation: length#(ok(X)) = X + 2 >= X + 1 = length#(X) active(from(X)) = 0 >= 0 = mark(cons(X,from(s(X)))) active(length(nil())) = 0 >= 0 = mark(0()) active(length(cons(X,Y))) = 0 >= 0 = mark(s(length1(Y))) active(length1(X)) = 0 >= 0 = mark(length(X)) active(from(X)) = 0 >= 0 = from(active(X)) active(cons(X1,X2)) = 0 >= 0 = cons(active(X1),X2) active(s(X)) = 0 >= 0 = s(active(X)) from(mark(X)) = 0 >= 0 = mark(from(X)) cons(mark(X1),X2) = 0 >= 0 = mark(cons(X1,X2)) s(mark(X)) = 0 >= 0 = mark(s(X)) proper(from(X)) = 1 >= 1 = from(proper(X)) proper(cons(X1,X2)) = 1 >= 1 = cons(proper(X1),proper(X2)) proper(s(X)) = 1 >= 1 = s(proper(X)) proper(length(X)) = 1 >= 1 = length(proper(X)) proper(nil()) = 1 >= 1 = ok(nil()) proper(0()) = 1 >= 1 = ok(0()) proper(length1(X)) = 1 >= 1 = length1(proper(X)) from(ok(X)) = X + 1 >= X + 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)) length(ok(X)) = X + 1 >= X + 1 = ok(length(X)) length1(ok(X)) = X + 1 >= X + 1 = ok(length1(X)) top(mark(X)) = 1 >= 1 = top(proper(X)) top(ok(X)) = 1 >= 1 = top(active(X)) problem: DPs: TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(length(nil())) -> mark(0()) active(length(cons(X,Y))) -> mark(s(length1(Y))) active(length1(X)) -> mark(length(X)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(length(X)) -> length(proper(X)) proper(nil()) -> ok(nil()) proper(0()) -> ok(0()) proper(length1(X)) -> length1(proper(X)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) length(ok(X)) -> ok(length(X)) length1(ok(X)) -> ok(length1(X)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Qed DPs: 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(length(nil())) -> mark(0()) active(length(cons(X,Y))) -> mark(s(length1(Y))) active(length1(X)) -> mark(length(X)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(length(X)) -> length(proper(X)) proper(nil()) -> ok(nil()) proper(0()) -> ok(0()) proper(length1(X)) -> length1(proper(X)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) length(ok(X)) -> ok(length(X)) length1(ok(X)) -> ok(length1(X)) 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, [length1](x0) = 0, [0] = 1, [length](x0) = 1, [nil] = 0, [mark](x0) = 0, [cons](x0, x1) = x0 + 1, [s](x0) = x0 + 1, [active](x0) = x0, [from](x0) = x0 + 1 orientation: active#(s(X)) = X + 2 >= X + 1 = active#(X) active#(cons(X1,X2)) = X1 + 2 >= X1 + 1 = active#(X1) active#(from(X)) = X + 2 >= X + 1 = active#(X) active(from(X)) = X + 1 >= 0 = mark(cons(X,from(s(X)))) active(length(nil())) = 1 >= 0 = mark(0()) active(length(cons(X,Y))) = 1 >= 0 = mark(s(length1(Y))) active(length1(X)) = 0 >= 0 = mark(length(X)) active(from(X)) = X + 1 >= X + 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)) from(mark(X)) = 1 >= 0 = mark(from(X)) cons(mark(X1),X2) = 1 >= 0 = mark(cons(X1,X2)) s(mark(X)) = 1 >= 0 = mark(s(X)) proper(from(X)) = X + 1 >= X + 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(length(X)) = 1 >= 1 = length(proper(X)) proper(nil()) = 0 >= 0 = ok(nil()) proper(0()) = 1 >= 1 = ok(0()) proper(length1(X)) = 0 >= 0 = length1(proper(X)) from(ok(X)) = X + 1 >= X + 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)) length(ok(X)) = 1 >= 1 = ok(length(X)) length1(ok(X)) = 0 >= 0 = ok(length1(X)) 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(length(nil())) -> mark(0()) active(length(cons(X,Y))) -> mark(s(length1(Y))) active(length1(X)) -> mark(length(X)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(length(X)) -> length(proper(X)) proper(nil()) -> ok(nil()) proper(0()) -> ok(0()) proper(length1(X)) -> length1(proper(X)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) length(ok(X)) -> ok(length(X)) length1(ok(X)) -> ok(length1(X)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Qed DPs: length1#(ok(X)) -> length1#(X) TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(length(nil())) -> mark(0()) active(length(cons(X,Y))) -> mark(s(length1(Y))) active(length1(X)) -> mark(length(X)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(length(X)) -> length(proper(X)) proper(nil()) -> ok(nil()) proper(0()) -> ok(0()) proper(length1(X)) -> length1(proper(X)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) length(ok(X)) -> ok(length(X)) length1(ok(X)) -> ok(length1(X)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Matrix Interpretation Processor: dimension: 1 interpretation: [length1#](x0) = x0 + 1, [top](x0) = 1, [ok](x0) = x0 + 1, [proper](x0) = 1, [length1](x0) = x0, [0] = 0, [length](x0) = x0, [nil] = 0, [mark](x0) = 0, [cons](x0, x1) = x0, [s](x0) = x0, [active](x0) = 0, [from](x0) = x0 orientation: length1#(ok(X)) = X + 2 >= X + 1 = length1#(X) active(from(X)) = 0 >= 0 = mark(cons(X,from(s(X)))) active(length(nil())) = 0 >= 0 = mark(0()) active(length(cons(X,Y))) = 0 >= 0 = mark(s(length1(Y))) active(length1(X)) = 0 >= 0 = mark(length(X)) active(from(X)) = 0 >= 0 = from(active(X)) active(cons(X1,X2)) = 0 >= 0 = cons(active(X1),X2) active(s(X)) = 0 >= 0 = s(active(X)) from(mark(X)) = 0 >= 0 = mark(from(X)) cons(mark(X1),X2) = 0 >= 0 = mark(cons(X1,X2)) s(mark(X)) = 0 >= 0 = mark(s(X)) proper(from(X)) = 1 >= 1 = from(proper(X)) proper(cons(X1,X2)) = 1 >= 1 = cons(proper(X1),proper(X2)) proper(s(X)) = 1 >= 1 = s(proper(X)) proper(length(X)) = 1 >= 1 = length(proper(X)) proper(nil()) = 1 >= 1 = ok(nil()) proper(0()) = 1 >= 1 = ok(0()) proper(length1(X)) = 1 >= 1 = length1(proper(X)) from(ok(X)) = X + 1 >= X + 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)) length(ok(X)) = X + 1 >= X + 1 = ok(length(X)) length1(ok(X)) = X + 1 >= X + 1 = ok(length1(X)) top(mark(X)) = 1 >= 1 = top(proper(X)) top(ok(X)) = 1 >= 1 = top(active(X)) problem: DPs: TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(length(nil())) -> mark(0()) active(length(cons(X,Y))) -> mark(s(length1(Y))) active(length1(X)) -> mark(length(X)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(length(X)) -> length(proper(X)) proper(nil()) -> ok(nil()) proper(0()) -> ok(0()) proper(length1(X)) -> length1(proper(X)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) length(ok(X)) -> ok(length(X)) length1(ok(X)) -> ok(length1(X)) 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(length(nil())) -> mark(0()) active(length(cons(X,Y))) -> mark(s(length1(Y))) active(length1(X)) -> mark(length(X)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(length(X)) -> length(proper(X)) proper(nil()) -> ok(nil()) proper(0()) -> ok(0()) proper(length1(X)) -> length1(proper(X)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) length(ok(X)) -> ok(length(X)) length1(ok(X)) -> ok(length1(X)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Matrix Interpretation Processor: dimension: 1 interpretation: [from#](x0) = x0, [top](x0) = 0, [ok](x0) = x0, [proper](x0) = x0, [length1](x0) = 1, [0] = 0, [length](x0) = 1, [nil] = 0, [mark](x0) = x0 + 1, [cons](x0, x1) = x0, [s](x0) = x0, [active](x0) = x0 + 1, [from](x0) = x0 orientation: from#(ok(X)) = X >= X = from#(X) from#(mark(X)) = X + 1 >= X = from#(X) active(from(X)) = X + 1 >= X + 1 = mark(cons(X,from(s(X)))) active(length(nil())) = 2 >= 1 = mark(0()) active(length(cons(X,Y))) = 2 >= 2 = mark(s(length1(Y))) active(length1(X)) = 2 >= 2 = mark(length(X)) active(from(X)) = X + 1 >= X + 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)) from(mark(X)) = X + 1 >= X + 1 = mark(from(X)) cons(mark(X1),X2) = X1 + 1 >= X1 + 1 = mark(cons(X1,X2)) s(mark(X)) = X + 1 >= X + 1 = mark(s(X)) proper(from(X)) = X >= X = from(proper(X)) proper(cons(X1,X2)) = X1 >= X1 = cons(proper(X1),proper(X2)) proper(s(X)) = X >= X = s(proper(X)) proper(length(X)) = 1 >= 1 = length(proper(X)) proper(nil()) = 0 >= 0 = ok(nil()) proper(0()) = 0 >= 0 = ok(0()) proper(length1(X)) = 1 >= 1 = length1(proper(X)) from(ok(X)) = X >= X = ok(from(X)) cons(ok(X1),ok(X2)) = X1 >= X1 = ok(cons(X1,X2)) s(ok(X)) = X >= X = ok(s(X)) length(ok(X)) = 1 >= 1 = ok(length(X)) length1(ok(X)) = 1 >= 1 = ok(length1(X)) top(mark(X)) = 0 >= 0 = top(proper(X)) top(ok(X)) = 0 >= 0 = top(active(X)) problem: DPs: from#(ok(X)) -> from#(X) TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(length(nil())) -> mark(0()) active(length(cons(X,Y))) -> mark(s(length1(Y))) active(length1(X)) -> mark(length(X)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(length(X)) -> length(proper(X)) proper(nil()) -> ok(nil()) proper(0()) -> ok(0()) proper(length1(X)) -> length1(proper(X)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) length(ok(X)) -> ok(length(X)) length1(ok(X)) -> ok(length1(X)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Matrix Interpretation Processor: dimension: 1 interpretation: [from#](x0) = x0 + 1, [top](x0) = 1, [ok](x0) = x0 + 1, [proper](x0) = 1, [length1](x0) = x0, [0] = 0, [length](x0) = x0, [nil] = 0, [mark](x0) = 0, [cons](x0, x1) = x0, [s](x0) = x0, [active](x0) = 0, [from](x0) = x0 orientation: from#(ok(X)) = X + 2 >= X + 1 = from#(X) active(from(X)) = 0 >= 0 = mark(cons(X,from(s(X)))) active(length(nil())) = 0 >= 0 = mark(0()) active(length(cons(X,Y))) = 0 >= 0 = mark(s(length1(Y))) active(length1(X)) = 0 >= 0 = mark(length(X)) active(from(X)) = 0 >= 0 = from(active(X)) active(cons(X1,X2)) = 0 >= 0 = cons(active(X1),X2) active(s(X)) = 0 >= 0 = s(active(X)) from(mark(X)) = 0 >= 0 = mark(from(X)) cons(mark(X1),X2) = 0 >= 0 = mark(cons(X1,X2)) s(mark(X)) = 0 >= 0 = mark(s(X)) proper(from(X)) = 1 >= 1 = from(proper(X)) proper(cons(X1,X2)) = 1 >= 1 = cons(proper(X1),proper(X2)) proper(s(X)) = 1 >= 1 = s(proper(X)) proper(length(X)) = 1 >= 1 = length(proper(X)) proper(nil()) = 1 >= 1 = ok(nil()) proper(0()) = 1 >= 1 = ok(0()) proper(length1(X)) = 1 >= 1 = length1(proper(X)) from(ok(X)) = X + 1 >= X + 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)) length(ok(X)) = X + 1 >= X + 1 = ok(length(X)) length1(ok(X)) = X + 1 >= X + 1 = ok(length1(X)) top(mark(X)) = 1 >= 1 = top(proper(X)) top(ok(X)) = 1 >= 1 = top(active(X)) problem: DPs: TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(length(nil())) -> mark(0()) active(length(cons(X,Y))) -> mark(s(length1(Y))) active(length1(X)) -> mark(length(X)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(length(X)) -> length(proper(X)) proper(nil()) -> ok(nil()) proper(0()) -> ok(0()) proper(length1(X)) -> length1(proper(X)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) length(ok(X)) -> ok(length(X)) length1(ok(X)) -> ok(length1(X)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Qed 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(length(nil())) -> mark(0()) active(length(cons(X,Y))) -> mark(s(length1(Y))) active(length1(X)) -> mark(length(X)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(length(X)) -> length(proper(X)) proper(nil()) -> ok(nil()) proper(0()) -> ok(0()) proper(length1(X)) -> length1(proper(X)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) length(ok(X)) -> ok(length(X)) length1(ok(X)) -> ok(length1(X)) 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) = 1, [length1](x0) = x0, [0] = 0, [length](x0) = x0, [nil] = 0, [mark](x0) = 0, [cons](x0, x1) = x1, [s](x0) = x0, [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(length(nil())) = 0 >= 0 = mark(0()) active(length(cons(X,Y))) = Y >= 0 = mark(s(length1(Y))) active(length1(X)) = X >= 0 = mark(length(X)) active(from(X)) = X >= X = from(active(X)) active(cons(X1,X2)) = X2 >= X2 = cons(active(X1),X2) active(s(X)) = X >= X = s(active(X)) from(mark(X)) = 0 >= 0 = mark(from(X)) cons(mark(X1),X2) = X2 >= 0 = mark(cons(X1,X2)) s(mark(X)) = 0 >= 0 = mark(s(X)) proper(from(X)) = 1 >= 1 = from(proper(X)) proper(cons(X1,X2)) = 1 >= 1 = cons(proper(X1),proper(X2)) proper(s(X)) = 1 >= 1 = s(proper(X)) proper(length(X)) = 1 >= 1 = length(proper(X)) proper(nil()) = 1 >= 1 = ok(nil()) proper(0()) = 1 >= 1 = ok(0()) proper(length1(X)) = 1 >= 1 = length1(proper(X)) from(ok(X)) = X + 1 >= X + 1 = ok(from(X)) cons(ok(X1),ok(X2)) = X2 + 1 >= X2 + 1 = ok(cons(X1,X2)) s(ok(X)) = X + 1 >= X + 1 = ok(s(X)) length(ok(X)) = X + 1 >= X + 1 = ok(length(X)) length1(ok(X)) = X + 1 >= X + 1 = ok(length1(X)) 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(length(nil())) -> mark(0()) active(length(cons(X,Y))) -> mark(s(length1(Y))) active(length1(X)) -> mark(length(X)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(length(X)) -> length(proper(X)) proper(nil()) -> ok(nil()) proper(0()) -> ok(0()) proper(length1(X)) -> length1(proper(X)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) length(ok(X)) -> ok(length(X)) length1(ok(X)) -> ok(length1(X)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Matrix Interpretation Processor: dimension: 1 interpretation: [cons#](x0, x1) = x0 + 1, [top](x0) = 0, [ok](x0) = 0, [proper](x0) = x0, [length1](x0) = 0, [0] = 0, [length](x0) = 0, [nil] = 1, [mark](x0) = x0 + 1, [cons](x0, x1) = x0, [s](x0) = x0, [active](x0) = x0 + 1, [from](x0) = x0 orientation: cons#(mark(X1),X2) = X1 + 2 >= X1 + 1 = cons#(X1,X2) active(from(X)) = X + 1 >= X + 1 = mark(cons(X,from(s(X)))) active(length(nil())) = 1 >= 1 = mark(0()) active(length(cons(X,Y))) = 1 >= 1 = mark(s(length1(Y))) active(length1(X)) = 1 >= 1 = mark(length(X)) active(from(X)) = X + 1 >= X + 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)) from(mark(X)) = X + 1 >= X + 1 = mark(from(X)) cons(mark(X1),X2) = X1 + 1 >= X1 + 1 = mark(cons(X1,X2)) s(mark(X)) = X + 1 >= X + 1 = mark(s(X)) proper(from(X)) = X >= X = from(proper(X)) proper(cons(X1,X2)) = X1 >= X1 = cons(proper(X1),proper(X2)) proper(s(X)) = X >= X = s(proper(X)) proper(length(X)) = 0 >= 0 = length(proper(X)) proper(nil()) = 1 >= 0 = ok(nil()) proper(0()) = 0 >= 0 = ok(0()) proper(length1(X)) = 0 >= 0 = length1(proper(X)) from(ok(X)) = 0 >= 0 = ok(from(X)) cons(ok(X1),ok(X2)) = 0 >= 0 = ok(cons(X1,X2)) s(ok(X)) = 0 >= 0 = ok(s(X)) length(ok(X)) = 0 >= 0 = ok(length(X)) length1(ok(X)) = 0 >= 0 = ok(length1(X)) 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(length(nil())) -> mark(0()) active(length(cons(X,Y))) -> mark(s(length1(Y))) active(length1(X)) -> mark(length(X)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(length(X)) -> length(proper(X)) proper(nil()) -> ok(nil()) proper(0()) -> ok(0()) proper(length1(X)) -> length1(proper(X)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) length(ok(X)) -> ok(length(X)) length1(ok(X)) -> ok(length1(X)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Qed DPs: s#(ok(X)) -> s#(X) s#(mark(X)) -> s#(X) TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(length(nil())) -> mark(0()) active(length(cons(X,Y))) -> mark(s(length1(Y))) active(length1(X)) -> mark(length(X)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(length(X)) -> length(proper(X)) proper(nil()) -> ok(nil()) proper(0()) -> ok(0()) proper(length1(X)) -> length1(proper(X)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) length(ok(X)) -> ok(length(X)) length1(ok(X)) -> ok(length1(X)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Matrix Interpretation Processor: dimension: 1 interpretation: [s#](x0) = x0, [top](x0) = 0, [ok](x0) = x0, [proper](x0) = x0, [length1](x0) = 1, [0] = 0, [length](x0) = 1, [nil] = 0, [mark](x0) = x0 + 1, [cons](x0, x1) = x0, [s](x0) = x0, [active](x0) = x0 + 1, [from](x0) = x0 orientation: s#(ok(X)) = X >= X = s#(X) s#(mark(X)) = X + 1 >= X = s#(X) active(from(X)) = X + 1 >= X + 1 = mark(cons(X,from(s(X)))) active(length(nil())) = 2 >= 1 = mark(0()) active(length(cons(X,Y))) = 2 >= 2 = mark(s(length1(Y))) active(length1(X)) = 2 >= 2 = mark(length(X)) active(from(X)) = X + 1 >= X + 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)) from(mark(X)) = X + 1 >= X + 1 = mark(from(X)) cons(mark(X1),X2) = X1 + 1 >= X1 + 1 = mark(cons(X1,X2)) s(mark(X)) = X + 1 >= X + 1 = mark(s(X)) proper(from(X)) = X >= X = from(proper(X)) proper(cons(X1,X2)) = X1 >= X1 = cons(proper(X1),proper(X2)) proper(s(X)) = X >= X = s(proper(X)) proper(length(X)) = 1 >= 1 = length(proper(X)) proper(nil()) = 0 >= 0 = ok(nil()) proper(0()) = 0 >= 0 = ok(0()) proper(length1(X)) = 1 >= 1 = length1(proper(X)) from(ok(X)) = X >= X = ok(from(X)) cons(ok(X1),ok(X2)) = X1 >= X1 = ok(cons(X1,X2)) s(ok(X)) = X >= X = ok(s(X)) length(ok(X)) = 1 >= 1 = ok(length(X)) length1(ok(X)) = 1 >= 1 = ok(length1(X)) top(mark(X)) = 0 >= 0 = top(proper(X)) top(ok(X)) = 0 >= 0 = top(active(X)) problem: DPs: s#(ok(X)) -> s#(X) TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(length(nil())) -> mark(0()) active(length(cons(X,Y))) -> mark(s(length1(Y))) active(length1(X)) -> mark(length(X)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(length(X)) -> length(proper(X)) proper(nil()) -> ok(nil()) proper(0()) -> ok(0()) proper(length1(X)) -> length1(proper(X)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) length(ok(X)) -> ok(length(X)) length1(ok(X)) -> ok(length1(X)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Matrix Interpretation Processor: dimension: 1 interpretation: [s#](x0) = x0 + 1, [top](x0) = 1, [ok](x0) = x0 + 1, [proper](x0) = 1, [length1](x0) = x0, [0] = 0, [length](x0) = x0, [nil] = 0, [mark](x0) = 0, [cons](x0, x1) = x0, [s](x0) = x0, [active](x0) = 0, [from](x0) = x0 orientation: s#(ok(X)) = X + 2 >= X + 1 = s#(X) active(from(X)) = 0 >= 0 = mark(cons(X,from(s(X)))) active(length(nil())) = 0 >= 0 = mark(0()) active(length(cons(X,Y))) = 0 >= 0 = mark(s(length1(Y))) active(length1(X)) = 0 >= 0 = mark(length(X)) active(from(X)) = 0 >= 0 = from(active(X)) active(cons(X1,X2)) = 0 >= 0 = cons(active(X1),X2) active(s(X)) = 0 >= 0 = s(active(X)) from(mark(X)) = 0 >= 0 = mark(from(X)) cons(mark(X1),X2) = 0 >= 0 = mark(cons(X1,X2)) s(mark(X)) = 0 >= 0 = mark(s(X)) proper(from(X)) = 1 >= 1 = from(proper(X)) proper(cons(X1,X2)) = 1 >= 1 = cons(proper(X1),proper(X2)) proper(s(X)) = 1 >= 1 = s(proper(X)) proper(length(X)) = 1 >= 1 = length(proper(X)) proper(nil()) = 1 >= 1 = ok(nil()) proper(0()) = 1 >= 1 = ok(0()) proper(length1(X)) = 1 >= 1 = length1(proper(X)) from(ok(X)) = X + 1 >= X + 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)) length(ok(X)) = X + 1 >= X + 1 = ok(length(X)) length1(ok(X)) = X + 1 >= X + 1 = ok(length1(X)) top(mark(X)) = 1 >= 1 = top(proper(X)) top(ok(X)) = 1 >= 1 = top(active(X)) problem: DPs: TRS: active(from(X)) -> mark(cons(X,from(s(X)))) active(length(nil())) -> mark(0()) active(length(cons(X,Y))) -> mark(s(length1(Y))) active(length1(X)) -> mark(length(X)) active(from(X)) -> from(active(X)) active(cons(X1,X2)) -> cons(active(X1),X2) active(s(X)) -> s(active(X)) from(mark(X)) -> mark(from(X)) cons(mark(X1),X2) -> mark(cons(X1,X2)) s(mark(X)) -> mark(s(X)) proper(from(X)) -> from(proper(X)) proper(cons(X1,X2)) -> cons(proper(X1),proper(X2)) proper(s(X)) -> s(proper(X)) proper(length(X)) -> length(proper(X)) proper(nil()) -> ok(nil()) proper(0()) -> ok(0()) proper(length1(X)) -> length1(proper(X)) from(ok(X)) -> ok(from(X)) cons(ok(X1),ok(X2)) -> ok(cons(X1,X2)) s(ok(X)) -> ok(s(X)) length(ok(X)) -> ok(length(X)) length1(ok(X)) -> ok(length1(X)) top(mark(X)) -> top(proper(X)) top(ok(X)) -> top(active(X)) Qed