Input TRS: 1: active(zeros()) -> mark(cons(0(),zeros())) 2: active(U11(tt(),V1)) -> mark(U12(isNatList(V1))) 3: active(U12(tt())) -> mark(tt()) 4: active(U21(tt(),V1)) -> mark(U22(isNat(V1))) 5: active(U22(tt())) -> mark(tt()) 6: active(U31(tt(),V)) -> mark(U32(isNatList(V))) 7: active(U32(tt())) -> mark(tt()) 8: active(U41(tt(),V1,V2)) -> mark(U42(isNat(V1),V2)) 9: active(U42(tt(),V2)) -> mark(U43(isNatIList(V2))) 10: active(U43(tt())) -> mark(tt()) 11: active(U51(tt(),V1,V2)) -> mark(U52(isNat(V1),V2)) 12: active(U52(tt(),V2)) -> mark(U53(isNatList(V2))) 13: active(U53(tt())) -> mark(tt()) 14: active(U61(tt(),L)) -> mark(s(length(L))) 15: active(and(tt(),X)) -> mark(X) 16: active(isNat(0())) -> mark(tt()) 17: active(isNat(length(V1))) -> mark(U11(isNatIListKind(V1),V1)) 18: active(isNat(s(V1))) -> mark(U21(isNatKind(V1),V1)) 19: active(isNatIList(V)) -> mark(U31(isNatIListKind(V),V)) 20: active(isNatIList(zeros())) -> mark(tt()) 21: active(isNatIList(cons(V1,V2))) -> mark(U41(and(isNatKind(V1),isNatIListKind(V2)),V1,V2)) 22: active(isNatIListKind(nil())) -> mark(tt()) 23: active(isNatIListKind(zeros())) -> mark(tt()) 24: active(isNatIListKind(cons(V1,V2))) -> mark(and(isNatKind(V1),isNatIListKind(V2))) 25: active(isNatKind(0())) -> mark(tt()) 26: active(isNatKind(length(V1))) -> mark(isNatIListKind(V1)) 27: active(isNatKind(s(V1))) -> mark(isNatKind(V1)) 28: active(isNatList(nil())) -> mark(tt()) 29: active(isNatList(cons(V1,V2))) -> mark(U51(and(isNatKind(V1),isNatIListKind(V2)),V1,V2)) 30: active(length(nil())) -> mark(0()) 31: active(length(cons(N,L))) -> mark(U61(and(and(isNatList(L),isNatIListKind(L)),and(isNat(N),isNatKind(N))),L)) 32: mark(zeros()) -> active(zeros()) 33: mark(cons(X1,X2)) -> active(cons(mark(X1),X2)) 34: mark(0()) -> active(0()) 35: mark(U11(X1,X2)) -> active(U11(mark(X1),X2)) 36: mark(tt()) -> active(tt()) 37: mark(U12(X)) -> active(U12(mark(X))) 38: mark(isNatList(X)) -> active(isNatList(X)) 39: mark(U21(X1,X2)) -> active(U21(mark(X1),X2)) 40: mark(U22(X)) -> active(U22(mark(X))) 41: mark(isNat(X)) -> active(isNat(X)) 42: mark(U31(X1,X2)) -> active(U31(mark(X1),X2)) 43: mark(U32(X)) -> active(U32(mark(X))) 44: mark(U41(X1,X2,X3)) -> active(U41(mark(X1),X2,X3)) 45: mark(U42(X1,X2)) -> active(U42(mark(X1),X2)) 46: mark(U43(X)) -> active(U43(mark(X))) 47: mark(isNatIList(X)) -> active(isNatIList(X)) 48: mark(U51(X1,X2,X3)) -> active(U51(mark(X1),X2,X3)) 49: mark(U52(X1,X2)) -> active(U52(mark(X1),X2)) 50: mark(U53(X)) -> active(U53(mark(X))) 51: mark(U61(X1,X2)) -> active(U61(mark(X1),X2)) 52: mark(s(X)) -> active(s(mark(X))) 53: mark(length(X)) -> active(length(mark(X))) 54: mark(and(X1,X2)) -> active(and(mark(X1),X2)) 55: mark(isNatIListKind(X)) -> active(isNatIListKind(X)) 56: mark(isNatKind(X)) -> active(isNatKind(X)) 57: mark(nil()) -> active(nil()) 58: cons(mark(X1),X2) -> cons(X1,X2) 59: cons(X1,mark(X2)) -> cons(X1,X2) 60: cons(active(X1),X2) -> cons(X1,X2) 61: cons(X1,active(X2)) -> cons(X1,X2) 62: U11(mark(X1),X2) -> U11(X1,X2) 63: U11(X1,mark(X2)) -> U11(X1,X2) 64: U11(active(X1),X2) -> U11(X1,X2) 65: U11(X1,active(X2)) -> U11(X1,X2) 66: U12(mark(X)) -> U12(X) 67: U12(active(X)) -> U12(X) 68: isNatList(mark(X)) -> isNatList(X) 69: isNatList(active(X)) -> isNatList(X) 70: U21(mark(X1),X2) -> U21(X1,X2) 71: U21(X1,mark(X2)) -> U21(X1,X2) 72: U21(active(X1),X2) -> U21(X1,X2) 73: U21(X1,active(X2)) -> U21(X1,X2) 74: U22(mark(X)) -> U22(X) 75: U22(active(X)) -> U22(X) 76: isNat(mark(X)) -> isNat(X) 77: isNat(active(X)) -> isNat(X) 78: U31(mark(X1),X2) -> U31(X1,X2) 79: U31(X1,mark(X2)) -> U31(X1,X2) 80: U31(active(X1),X2) -> U31(X1,X2) 81: U31(X1,active(X2)) -> U31(X1,X2) 82: U32(mark(X)) -> U32(X) 83: U32(active(X)) -> U32(X) 84: U41(mark(X1),X2,X3) -> U41(X1,X2,X3) 85: U41(X1,mark(X2),X3) -> U41(X1,X2,X3) 86: U41(X1,X2,mark(X3)) -> U41(X1,X2,X3) 87: U41(active(X1),X2,X3) -> U41(X1,X2,X3) 88: U41(X1,active(X2),X3) -> U41(X1,X2,X3) 89: U41(X1,X2,active(X3)) -> U41(X1,X2,X3) 90: U42(mark(X1),X2) -> U42(X1,X2) 91: U42(X1,mark(X2)) -> U42(X1,X2) 92: U42(active(X1),X2) -> U42(X1,X2) 93: U42(X1,active(X2)) -> U42(X1,X2) 94: U43(mark(X)) -> U43(X) 95: U43(active(X)) -> U43(X) 96: isNatIList(mark(X)) -> isNatIList(X) 97: isNatIList(active(X)) -> isNatIList(X) 98: U51(mark(X1),X2,X3) -> U51(X1,X2,X3) 99: U51(X1,mark(X2),X3) -> U51(X1,X2,X3) 100: U51(X1,X2,mark(X3)) -> U51(X1,X2,X3) 101: U51(active(X1),X2,X3) -> U51(X1,X2,X3) 102: U51(X1,active(X2),X3) -> U51(X1,X2,X3) 103: U51(X1,X2,active(X3)) -> U51(X1,X2,X3) 104: U52(mark(X1),X2) -> U52(X1,X2) 105: U52(X1,mark(X2)) -> U52(X1,X2) 106: U52(active(X1),X2) -> U52(X1,X2) 107: U52(X1,active(X2)) -> U52(X1,X2) 108: U53(mark(X)) -> U53(X) 109: U53(active(X)) -> U53(X) 110: U61(mark(X1),X2) -> U61(X1,X2) 111: U61(X1,mark(X2)) -> U61(X1,X2) 112: U61(active(X1),X2) -> U61(X1,X2) 113: U61(X1,active(X2)) -> U61(X1,X2) 114: s(mark(X)) -> s(X) 115: s(active(X)) -> s(X) 116: length(mark(X)) -> length(X) 117: length(active(X)) -> length(X) 118: and(mark(X1),X2) -> and(X1,X2) 119: and(X1,mark(X2)) -> and(X1,X2) 120: and(active(X1),X2) -> and(X1,X2) 121: and(X1,active(X2)) -> and(X1,X2) 122: isNatIListKind(mark(X)) -> isNatIListKind(X) 123: isNatIListKind(active(X)) -> isNatIListKind(X) 124: isNatKind(mark(X)) -> isNatKind(X) 125: isNatKind(active(X)) -> isNatKind(X) Number of strict rules: 125 Direct Order(PosReal,>,Poly) ... failed. Freezing ... failed. Dependency Pairs: #1: #active(U11(tt(),V1)) -> #mark(U12(isNatList(V1))) #2: #active(U11(tt(),V1)) -> #U12(isNatList(V1)) #3: #active(U11(tt(),V1)) -> #isNatList(V1) #4: #U41(X1,X2,mark(X3)) -> #U41(X1,X2,X3) #5: #mark(U32(X)) -> #active(U32(mark(X))) #6: #mark(U32(X)) -> #U32(mark(X)) #7: #mark(U32(X)) -> #mark(X) #8: #active(isNatList(cons(V1,V2))) -> #mark(U51(and(isNatKind(V1),isNatIListKind(V2)),V1,V2)) #9: #active(isNatList(cons(V1,V2))) -> #U51(and(isNatKind(V1),isNatIListKind(V2)),V1,V2) #10: #active(isNatList(cons(V1,V2))) -> #and(isNatKind(V1),isNatIListKind(V2)) #11: #active(isNatList(cons(V1,V2))) -> #isNatKind(V1) #12: #active(isNatList(cons(V1,V2))) -> #isNatIListKind(V2) #13: #mark(U11(X1,X2)) -> #active(U11(mark(X1),X2)) #14: #mark(U11(X1,X2)) -> #U11(mark(X1),X2) #15: #mark(U11(X1,X2)) -> #mark(X1) #16: #U32(active(X)) -> #U32(X) #17: #U12(mark(X)) -> #U12(X) #18: #mark(U43(X)) -> #active(U43(mark(X))) #19: #mark(U43(X)) -> #U43(mark(X)) #20: #mark(U43(X)) -> #mark(X) #21: #mark(U31(X1,X2)) -> #active(U31(mark(X1),X2)) #22: #mark(U31(X1,X2)) -> #U31(mark(X1),X2) #23: #mark(U31(X1,X2)) -> #mark(X1) #24: #s(active(X)) -> #s(X) #25: #U43(active(X)) -> #U43(X) #26: #mark(isNat(X)) -> #active(isNat(X)) #27: #mark(U12(X)) -> #active(U12(mark(X))) #28: #mark(U12(X)) -> #U12(mark(X)) #29: #mark(U12(X)) -> #mark(X) #30: #s(mark(X)) -> #s(X) #31: #U51(X1,mark(X2),X3) -> #U51(X1,X2,X3) #32: #isNatIList(active(X)) -> #isNatIList(X) #33: #U42(X1,mark(X2)) -> #U42(X1,X2) #34: #U21(X1,active(X2)) -> #U21(X1,X2) #35: #mark(isNatIList(X)) -> #active(isNatIList(X)) #36: #mark(length(X)) -> #active(length(mark(X))) #37: #mark(length(X)) -> #length(mark(X)) #38: #mark(length(X)) -> #mark(X) #39: #U21(X1,mark(X2)) -> #U21(X1,X2) #40: #mark(U51(X1,X2,X3)) -> #active(U51(mark(X1),X2,X3)) #41: #mark(U51(X1,X2,X3)) -> #U51(mark(X1),X2,X3) #42: #mark(U51(X1,X2,X3)) -> #mark(X1) #43: #isNatIListKind(active(X)) -> #isNatIListKind(X) #44: #U22(active(X)) -> #U22(X) #45: #U61(active(X1),X2) -> #U61(X1,X2) #46: #U22(mark(X)) -> #U22(X) #47: #cons(mark(X1),X2) -> #cons(X1,X2) #48: #U61(X1,active(X2)) -> #U61(X1,X2) #49: #cons(X1,active(X2)) -> #cons(X1,X2) #50: #mark(isNatList(X)) -> #active(isNatList(X)) #51: #length(mark(X)) -> #length(X) #52: #active(U31(tt(),V)) -> #mark(U32(isNatList(V))) #53: #active(U31(tt(),V)) -> #U32(isNatList(V)) #54: #active(U31(tt(),V)) -> #isNatList(V) #55: #cons(X1,mark(X2)) -> #cons(X1,X2) #56: #U61(mark(X1),X2) -> #U61(X1,X2) #57: #mark(isNatIListKind(X)) -> #active(isNatIListKind(X)) #58: #U12(active(X)) -> #U12(X) #59: #mark(U22(X)) -> #active(U22(mark(X))) #60: #mark(U22(X)) -> #U22(mark(X)) #61: #mark(U22(X)) -> #mark(X) #62: #U42(mark(X1),X2) -> #U42(X1,X2) #63: #U52(X1,active(X2)) -> #U52(X1,X2) #64: #mark(U61(X1,X2)) -> #active(U61(mark(X1),X2)) #65: #mark(U61(X1,X2)) -> #U61(mark(X1),X2) #66: #mark(U61(X1,X2)) -> #mark(X1) #67: #active(U53(tt())) -> #mark(tt()) #68: #active(U42(tt(),V2)) -> #mark(U43(isNatIList(V2))) #69: #active(U42(tt(),V2)) -> #U43(isNatIList(V2)) #70: #active(U42(tt(),V2)) -> #isNatIList(V2) #71: #active(U51(tt(),V1,V2)) -> #mark(U52(isNat(V1),V2)) #72: #active(U51(tt(),V1,V2)) -> #U52(isNat(V1),V2) #73: #active(U51(tt(),V1,V2)) -> #isNat(V1) #74: #U51(mark(X1),X2,X3) -> #U51(X1,X2,X3) #75: #mark(nil()) -> #active(nil()) #76: #isNat(mark(X)) -> #isNat(X) #77: #U53(active(X)) -> #U53(X) #78: #U43(mark(X)) -> #U43(X) #79: #active(isNatIListKind(cons(V1,V2))) -> #mark(and(isNatKind(V1),isNatIListKind(V2))) #80: #active(isNatIListKind(cons(V1,V2))) -> #and(isNatKind(V1),isNatIListKind(V2)) #81: #active(isNatIListKind(cons(V1,V2))) -> #isNatKind(V1) #82: #active(isNatIListKind(cons(V1,V2))) -> #isNatIListKind(V2) #83: #U21(mark(X1),X2) -> #U21(X1,X2) #84: #active(isNatIListKind(zeros())) -> #mark(tt()) #85: #U31(X1,active(X2)) -> #U31(X1,X2) #86: #and(mark(X1),X2) -> #and(X1,X2) #87: #U31(mark(X1),X2) -> #U31(X1,X2) #88: #mark(U42(X1,X2)) -> #active(U42(mark(X1),X2)) #89: #mark(U42(X1,X2)) -> #U42(mark(X1),X2) #90: #mark(U42(X1,X2)) -> #mark(X1) #91: #isNatIList(mark(X)) -> #isNatIList(X) #92: #isNatList(active(X)) -> #isNatList(X) #93: #U51(active(X1),X2,X3) -> #U51(X1,X2,X3) #94: #active(U52(tt(),V2)) -> #mark(U53(isNatList(V2))) #95: #active(U52(tt(),V2)) -> #U53(isNatList(V2)) #96: #active(U52(tt(),V2)) -> #isNatList(V2) #97: #active(length(cons(N,L))) -> #mark(U61(and(and(isNatList(L),isNatIListKind(L)),and(isNat(N),isNatKind(N))),L)) #98: #active(length(cons(N,L))) -> #U61(and(and(isNatList(L),isNatIListKind(L)),and(isNat(N),isNatKind(N))),L) #99: #active(length(cons(N,L))) -> #and(and(isNatList(L),isNatIListKind(L)),and(isNat(N),isNatKind(N))) #100: #active(length(cons(N,L))) -> #and(isNatList(L),isNatIListKind(L)) #101: #active(length(cons(N,L))) -> #isNatList(L) #102: #active(length(cons(N,L))) -> #isNatIListKind(L) #103: #active(length(cons(N,L))) -> #and(isNat(N),isNatKind(N)) #104: #active(length(cons(N,L))) -> #isNat(N) #105: #active(length(cons(N,L))) -> #isNatKind(N) #106: #U31(X1,mark(X2)) -> #U31(X1,X2) #107: #mark(isNatKind(X)) -> #active(isNatKind(X)) #108: #U41(X1,X2,active(X3)) -> #U41(X1,X2,X3) #109: #U32(mark(X)) -> #U32(X) #110: #U61(X1,mark(X2)) -> #U61(X1,X2) #111: #active(U61(tt(),L)) -> #mark(s(length(L))) #112: #active(U61(tt(),L)) -> #s(length(L)) #113: #active(U61(tt(),L)) -> #length(L) #114: #U52(active(X1),X2) -> #U52(X1,X2) #115: #U11(mark(X1),X2) -> #U11(X1,X2) #116: #active(length(nil())) -> #mark(0()) #117: #mark(s(X)) -> #active(s(mark(X))) #118: #mark(s(X)) -> #s(mark(X)) #119: #mark(s(X)) -> #mark(X) #120: #mark(U52(X1,X2)) -> #active(U52(mark(X1),X2)) #121: #mark(U52(X1,X2)) -> #U52(mark(X1),X2) #122: #mark(U52(X1,X2)) -> #mark(X1) #123: #active(isNatKind(0())) -> #mark(tt()) #124: #U53(mark(X)) -> #U53(X) #125: #active(isNatIList(zeros())) -> #mark(tt()) #126: #U41(X1,active(X2),X3) -> #U41(X1,X2,X3) #127: #active(U32(tt())) -> #mark(tt()) #128: #mark(U21(X1,X2)) -> #active(U21(mark(X1),X2)) #129: #mark(U21(X1,X2)) -> #U21(mark(X1),X2) #130: #mark(U21(X1,X2)) -> #mark(X1) #131: #active(U43(tt())) -> #mark(tt()) #132: #U42(active(X1),X2) -> #U42(X1,X2) #133: #and(X1,mark(X2)) -> #and(X1,X2) #134: #U42(X1,active(X2)) -> #U42(X1,X2) #135: #U11(active(X1),X2) -> #U11(X1,X2) #136: #mark(cons(X1,X2)) -> #active(cons(mark(X1),X2)) #137: #mark(cons(X1,X2)) -> #cons(mark(X1),X2) #138: #mark(cons(X1,X2)) -> #mark(X1) #139: #U21(active(X1),X2) -> #U21(X1,X2) #140: #and(active(X1),X2) -> #and(X1,X2) #141: #active(U22(tt())) -> #mark(tt()) #142: #mark(U41(X1,X2,X3)) -> #active(U41(mark(X1),X2,X3)) #143: #mark(U41(X1,X2,X3)) -> #U41(mark(X1),X2,X3) #144: #mark(U41(X1,X2,X3)) -> #mark(X1) #145: #U11(X1,active(X2)) -> #U11(X1,X2) #146: #active(isNatList(nil())) -> #mark(tt()) #147: #active(isNatIListKind(nil())) -> #mark(tt()) #148: #mark(0()) -> #active(0()) #149: #U41(mark(X1),X2,X3) -> #U41(X1,X2,X3) #150: #U41(active(X1),X2,X3) -> #U41(X1,X2,X3) #151: #active(isNatKind(s(V1))) -> #mark(isNatKind(V1)) #152: #active(isNatKind(s(V1))) -> #isNatKind(V1) #153: #cons(active(X1),X2) -> #cons(X1,X2) #154: #length(active(X)) -> #length(X) #155: #active(isNat(length(V1))) -> #mark(U11(isNatIListKind(V1),V1)) #156: #active(isNat(length(V1))) -> #U11(isNatIListKind(V1),V1) #157: #active(isNat(length(V1))) -> #isNatIListKind(V1) #158: #mark(zeros()) -> #active(zeros()) #159: #active(isNatIList(V)) -> #mark(U31(isNatIListKind(V),V)) #160: #active(isNatIList(V)) -> #U31(isNatIListKind(V),V) #161: #active(isNatIList(V)) -> #isNatIListKind(V) #162: #isNatKind(active(X)) -> #isNatKind(X) #163: #U11(X1,mark(X2)) -> #U11(X1,X2) #164: #U52(X1,mark(X2)) -> #U52(X1,X2) #165: #active(isNatKind(length(V1))) -> #mark(isNatIListKind(V1)) #166: #active(isNatKind(length(V1))) -> #isNatIListKind(V1) #167: #U51(X1,X2,mark(X3)) -> #U51(X1,X2,X3) #168: #U41(X1,mark(X2),X3) -> #U41(X1,X2,X3) #169: #isNatIListKind(mark(X)) -> #isNatIListKind(X) #170: #isNatList(mark(X)) -> #isNatList(X) #171: #mark(tt()) -> #active(tt()) #172: #active(isNatIList(cons(V1,V2))) -> #mark(U41(and(isNatKind(V1),isNatIListKind(V2)),V1,V2)) #173: #active(isNatIList(cons(V1,V2))) -> #U41(and(isNatKind(V1),isNatIListKind(V2)),V1,V2) #174: #active(isNatIList(cons(V1,V2))) -> #and(isNatKind(V1),isNatIListKind(V2)) #175: #active(isNatIList(cons(V1,V2))) -> #isNatKind(V1) #176: #active(isNatIList(cons(V1,V2))) -> #isNatIListKind(V2) #177: #active(isNat(0())) -> #mark(tt()) #178: #active(U12(tt())) -> #mark(tt()) #179: #isNat(active(X)) -> #isNat(X) #180: #active(zeros()) -> #mark(cons(0(),zeros())) #181: #active(zeros()) -> #cons(0(),zeros()) #182: #isNatKind(mark(X)) -> #isNatKind(X) #183: #mark(and(X1,X2)) -> #active(and(mark(X1),X2)) #184: #mark(and(X1,X2)) -> #and(mark(X1),X2) #185: #mark(and(X1,X2)) -> #mark(X1) #186: #active(U41(tt(),V1,V2)) -> #mark(U42(isNat(V1),V2)) #187: #active(U41(tt(),V1,V2)) -> #U42(isNat(V1),V2) #188: #active(U41(tt(),V1,V2)) -> #isNat(V1) #189: #and(X1,active(X2)) -> #and(X1,X2) #190: #active(and(tt(),X)) -> #mark(X) #191: #U51(X1,active(X2),X3) -> #U51(X1,X2,X3) #192: #U51(X1,X2,active(X3)) -> #U51(X1,X2,X3) #193: #active(U21(tt(),V1)) -> #mark(U22(isNat(V1))) #194: #active(U21(tt(),V1)) -> #U22(isNat(V1)) #195: #active(U21(tt(),V1)) -> #isNat(V1) #196: #U52(mark(X1),X2) -> #U52(X1,X2) #197: #U31(active(X1),X2) -> #U31(X1,X2) #198: #mark(U53(X)) -> #active(U53(mark(X))) #199: #mark(U53(X)) -> #U53(mark(X)) #200: #mark(U53(X)) -> #mark(X) #201: #active(isNat(s(V1))) -> #mark(U21(isNatKind(V1),V1)) #202: #active(isNat(s(V1))) -> #U21(isNatKind(V1),V1) #203: #active(isNat(s(V1))) -> #isNatKind(V1) Number of SCCs: 23, DPs: 120, edges: 888 SCC { #77 #124 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: x1 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #77 #124 Number of SCCs: 22, DPs: 118, edges: 884 SCC { #76 #179 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: x1 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #76 #179 Number of SCCs: 21, DPs: 116, edges: 880 SCC { #92 #170 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: x1 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #92 #170 Number of SCCs: 20, DPs: 114, edges: 876 SCC { #24 #30 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: x1 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #24 #30 Number of SCCs: 19, DPs: 112, edges: 872 SCC { #43 #169 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: x1 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #43 #169 Number of SCCs: 18, DPs: 110, edges: 868 SCC { #162 #182 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: x1 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #162 #182 Number of SCCs: 17, DPs: 108, edges: 864 SCC { #32 #91 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: x1 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #32 #91 Number of SCCs: 16, DPs: 106, edges: 860 SCC { #25 #78 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: x1 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #25 #78 Number of SCCs: 15, DPs: 104, edges: 856 SCC { #51 #154 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: x1 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #51 #154 Number of SCCs: 14, DPs: 102, edges: 852 SCC { #44 #46 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: x1 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #44 #46 Number of SCCs: 13, DPs: 100, edges: 848 SCC { #17 #58 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: x1 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #17 #58 Number of SCCs: 12, DPs: 98, edges: 844 SCC { #16 #109 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: x1 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #16 #109 Number of SCCs: 11, DPs: 96, edges: 840 SCC { #86 #133 #140 #189 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: x2 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #133 #189 Number of SCCs: 11, DPs: 94, edges: 828 SCC { #86 #140 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: x1 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #86 #140 Number of SCCs: 10, DPs: 92, edges: 824 SCC { #33 #62 #132 #134 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: x1 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #62 #132 Number of SCCs: 11, DPs: 90, edges: 812 SCC { #33 #134 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: x2 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #33 #134 Number of SCCs: 10, DPs: 88, edges: 808 SCC { #47 #49 #55 #153 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: x2 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #49 #55 Number of SCCs: 11, DPs: 86, edges: 796 SCC { #47 #153 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: x1 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #47 #153 Number of SCCs: 10, DPs: 84, edges: 792 SCC { #34 #39 #83 #139 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: x1 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #83 #139 Number of SCCs: 11, DPs: 82, edges: 780 SCC { #34 #39 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: x2 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #34 #39 Number of SCCs: 10, DPs: 80, edges: 776 SCC { #63 #114 #164 #196 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: x2 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #63 #164 Number of SCCs: 11, DPs: 78, edges: 764 SCC { #114 #196 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: x1 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #114 #196 Number of SCCs: 10, DPs: 76, edges: 760 SCC { #45 #48 #56 #110 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: x1 Usable rules: { } Removed DPs: #45 #56 Number of SCCs: 11, DPs: 74, edges: 748 SCC { #48 #110 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: x2 Usable rules: { } Removed DPs: #48 #110 Number of SCCs: 10, DPs: 72, edges: 744 SCC { #85 #87 #106 #197 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: x2 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #85 #106 Number of SCCs: 11, DPs: 70, edges: 732 SCC { #87 #197 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: x1 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #87 #197 Number of SCCs: 10, DPs: 68, edges: 728 SCC { #115 #135 #145 #163 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: x2 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #145 #163 Number of SCCs: 11, DPs: 66, edges: 716 SCC { #115 #135 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: x1 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #115 #135 Number of SCCs: 10, DPs: 64, edges: 712 SCC { #4 #108 #126 #149 #150 #168 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: x1 + x3 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #4 #108 #149 #150 Number of SCCs: 11, DPs: 60, edges: 680 SCC { #126 #168 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: x2 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #126 #168 Number of SCCs: 10, DPs: 58, edges: 676 SCC { #31 #74 #93 #167 #191 #192 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: x2 + x3 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #31 #167 #191 #192 Number of SCCs: 11, DPs: 54, edges: 644 SCC { #74 #93 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: 0 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: 0 isNatIList(x1) weight: 0 U43(x1) weight: 0 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: 0 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: (/ 1 2) + x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: x1 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: 0 #active(x1) weight: 0 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: 0 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: 0 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { } Removed DPs: #74 #93 Number of SCCs: 10, DPs: 52, edges: 640 SCC { #1 #7 #8 #13 #15 #20 #21 #23 #26 #29 #35 #36 #38 #40 #42 #50 #52 #57 #61 #64 #66 #68 #71 #79 #88 #90 #94 #97 #107 #111 #119 #120 #122 #128 #130 #138 #142 #144 #151 #155 #158 #159 #165 #172 #180 #183 #185 #186 #190 #193 #200 #201 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: x1 isNatList(x1) weight: 0 U11(x1,x2) weight: x1 #cons(x1,x2) weight: 0 s(x1) weight: x1 #isNat(x1) weight: 0 U42(x1,x2) weight: (/ 3 4) + x1 and(x1,x2) weight: x1 + x2 isNatIList(x1) weight: (/ 3 4) U43(x1) weight: x1 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: x1 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: x1 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: x1 U32(x1) weight: (/ 1 4) + x1 isNat(x1) weight: 0 U52(x1,x2) weight: x1 U61(x1,x2) weight: (/ 1 4) + x1 + x2 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: x1 U31(x1,x2) weight: (/ 1 2) + x1 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: x1 + x2 #active(x1) weight: x1 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: x1 U51(x1,x2,x3) weight: x1 #isNatKind(x1) weight: 0 U53(x1) weight: x1 length(x1) weight: (/ 1 4) + x1 #length(x1) weight: 0 U41(x1,x2,x3) weight: (/ 3 4) + x1 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { 1..125 } Removed DPs: #7 #23 #38 #52 #66 #90 #144 #159 Number of SCCs: 11, DPs: 43, edges: 350 SCC { #1 #8 #13 #15 #20 #26 #29 #35 #36 #40 #42 #50 #57 #61 #64 #68 #71 #79 #88 #94 #97 #107 #111 #119 #120 #122 #128 #130 #138 #142 #151 #155 #158 #165 #172 #180 #183 #185 #186 #190 #193 #200 #201 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: x1 + x2 isNatList(x1) weight: (/ 1 8) + x1 U11(x1,x2) weight: (/ 3 8) + x1 + x2 #cons(x1,x2) weight: 0 s(x1) weight: x1 #isNat(x1) weight: 0 U42(x1,x2) weight: (/ 1 8) and(x1,x2) weight: x1 + x2 isNatIList(x1) weight: (/ 1 8) U43(x1) weight: x1 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: (/ 1 8) + x1 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: x1 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: x1 U32(x1) weight: (/ 1 8) isNat(x1) weight: x1 U52(x1,x2) weight: (/ 1 8) + x1 + x2 U61(x1,x2) weight: (/ 1 2) + x2 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: x1 U31(x1,x2) weight: (/ 1 8) #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: x1 + x2 #active(x1) weight: x1 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: x1 U51(x1,x2,x3) weight: (/ 1 8) + x1 + x2 + x3 #isNatKind(x1) weight: 0 U53(x1) weight: x1 length(x1) weight: (/ 1 2) + x1 #length(x1) weight: 0 U41(x1,x2,x3) weight: (/ 1 8) #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { 1..125 } Removed DPs: #1 #15 #29 #42 #122 #155 Number of SCCs: 11, DPs: 36, edges: 199 SCC { #8 #20 #26 #35 #36 #40 #50 #57 #61 #64 #68 #71 #79 #88 #94 #97 #107 #111 #119 #120 #128 #130 #138 #142 #151 #158 #165 #172 #180 #183 #185 #186 #190 #193 #200 #201 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: (/ 1 2) + x1 isNatList(x1) weight: (/ 1 4) U11(x1,x2) weight: (/ 1 2) #cons(x1,x2) weight: 0 s(x1) weight: x1 #isNat(x1) weight: 0 U42(x1,x2) weight: (/ 1 4) and(x1,x2) weight: x1 + x2 isNatIList(x1) weight: (/ 1 4) U43(x1) weight: x1 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: (/ 1 4) + x1 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: x1 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: x1 U32(x1) weight: (/ 1 4) isNat(x1) weight: (/ 1 2) U52(x1,x2) weight: (/ 1 4) U61(x1,x2) weight: (/ 1 4) #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: x1 U31(x1,x2) weight: (/ 1 4) #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: x1 + x2 #active(x1) weight: x1 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: x1 U51(x1,x2,x3) weight: (/ 1 4) #isNatKind(x1) weight: 0 U53(x1) weight: x1 length(x1) weight: (/ 1 4) #length(x1) weight: 0 U41(x1,x2,x3) weight: (/ 1 4) #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { 1..125 } Removed DPs: #130 Number of SCCs: 11, DPs: 35, edges: 170 SCC { #8 #20 #26 #35 #36 #40 #50 #57 #61 #64 #68 #71 #79 #88 #94 #97 #107 #111 #119 #120 #128 #138 #142 #151 #158 #165 #172 #180 #183 #185 #186 #190 #193 #200 #201 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: x1 U21(x1,x2) weight: (/ 1 4) isNatList(x1) weight: (/ 1 8) U11(x1,x2) weight: (/ 1 4) #cons(x1,x2) weight: 0 s(x1) weight: x1 #isNat(x1) weight: 0 U42(x1,x2) weight: (/ 1 8) and(x1,x2) weight: x1 + x2 isNatIList(x1) weight: (/ 1 8) U43(x1) weight: x1 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: (/ 1 8) + x1 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: x1 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: (/ 1 8) + x1 nil() weight: 0 mark(x1) weight: x1 U32(x1) weight: (/ 1 8) isNat(x1) weight: (/ 1 4) U52(x1,x2) weight: (/ 1 8) U61(x1,x2) weight: (/ 1 4) + x2 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: x1 U31(x1,x2) weight: (/ 1 8) #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: x1 + x2 #active(x1) weight: x1 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: x1 U51(x1,x2,x3) weight: (/ 1 8) #isNatKind(x1) weight: 0 U53(x1) weight: x1 length(x1) weight: (/ 1 4) + x1 #length(x1) weight: 0 U41(x1,x2,x3) weight: (/ 1 8) #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { 1..125 } Removed DPs: #165 Number of SCCs: 12, DPs: 34, edges: 161 SCC { #107 #151 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: (/ 1 8) + x1 U21(x1,x2) weight: (/ 3 8) isNatList(x1) weight: (/ 1 8) U11(x1,x2) weight: (/ 3 8) + x2 #cons(x1,x2) weight: 0 s(x1) weight: (/ 1 2) + x1 #isNat(x1) weight: 0 U42(x1,x2) weight: (/ 5 8) and(x1,x2) weight: 0 isNatIList(x1) weight: (/ 1 8) U43(x1) weight: (/ 3 4) + x1 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: (/ 1 2) + x1 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: (/ 1 8) + x1 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: (/ 5 8) nil() weight: 0 mark(x1) weight: (/ 1 8) + x1 U32(x1) weight: (/ 5 8) isNat(x1) weight: (/ 1 8) U52(x1,x2) weight: (/ 5 8) + x2 U61(x1,x2) weight: (/ 1 2) #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 4) + x1 U31(x1,x2) weight: (/ 3 8) + x2 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: (/ 1 4) + x1 #active(x1) weight: x1 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: (/ 5 8) U51(x1,x2,x3) weight: (/ 3 8) + x2 #isNatKind(x1) weight: 0 U53(x1) weight: (/ 3 4) + x1 length(x1) weight: (/ 1 4) #length(x1) weight: 0 U41(x1,x2,x3) weight: (/ 3 8) + x2 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { 124 125 } Removed DPs: #107 #151 Number of SCCs: 11, DPs: 32, edges: 159 SCC { #8 #20 #26 #35 #36 #40 #50 #57 #61 #64 #68 #71 #79 #88 #94 #97 #111 #119 #120 #128 #138 #142 #158 #172 #180 #183 #185 #186 #190 #193 #200 #201 } Removing DPs: Order(PosReal,>,Sum)... Order(PosReal,>,Max)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: x1 U21(x1,x2) weight: max{(/ 1 8) + x2, (/ 1 8) + x1} isNatList(x1) weight: (/ 3 8) + x1 U11(x1,x2) weight: max{0, (/ 1 8) + x2} #cons(x1,x2) weight: 0 s(x1) weight: x1 #isNat(x1) weight: 0 U42(x1,x2) weight: 0 and(x1,x2) weight: max{x2, (/ 46825 8) + x1} isNatIList(x1) weight: 0 U43(x1) weight: x1 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: (/ 46827 8) #U52(x1,x2) weight: 0 U12(x1) weight: (/ 1 8) #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: x1 0() weight: (/ 1 8) #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: x1 nil() weight: (/ 1 8) mark(x1) weight: x1 U32(x1) weight: 0 isNat(x1) weight: (/ 1 8) + x1 U52(x1,x2) weight: max{(/ 3 8) + x2, (/ 1 8) + x1} U61(x1,x2) weight: max{0, (/ 1 8) + x2} #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: max{x2, (/ 46825 8) + x1} #active(x1) weight: x1 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: x1 U51(x1,x2,x3) weight: max{0, (/ 3 8) + x3, (/ 11707 2) + x2} #isNatKind(x1) weight: 0 U53(x1) weight: x1 length(x1) weight: (/ 1 8) + x1 #length(x1) weight: 0 U41(x1,x2,x3) weight: 0 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { 1..125 } Removed DPs: #138 #185 Number of SCCs: 11, DPs: 28, edges: 103 SCC { #8 #20 #26 #35 #36 #40 #50 #57 #61 #64 #68 #71 #79 #88 #94 #97 #111 #119 #120 #128 #142 #172 #183 #186 #190 #193 #200 #201 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: x1 #isNat(x1) weight: 0 U42(x1,x2) weight: (/ 1 4) + x2 and(x1,x2) weight: x2 isNatIList(x1) weight: x1 U43(x1) weight: (/ 1 4) + x1 #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: (/ 1 4) + x1 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: x1 U32(x1) weight: x1 isNat(x1) weight: 0 U52(x1,x2) weight: 0 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 4) + x1 U31(x1,x2) weight: x2 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: (/ 1 4) + x1 + x2 #active(x1) weight: (/ 1 4) + x1 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: x1 U51(x1,x2,x3) weight: 0 #isNatKind(x1) weight: 0 U53(x1) weight: x1 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: (/ 1 4) + x3 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { 62..65 68..73 76..81 84..93 96..107 110..113 116..125 } Removed DPs: #20 Number of SCCs: 11, DPs: 21, edges: 65 SCC { #8 #26 #36 #40 #50 #57 #61 #64 #71 #79 #94 #97 #111 #119 #120 #128 #183 #190 #193 #200 #201 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: x1 U11(x1,x2) weight: 0 #cons(x1,x2) weight: 0 s(x1) weight: x1 #isNat(x1) weight: 0 U42(x1,x2) weight: x2 and(x1,x2) weight: x2 isNatIList(x1) weight: 0 U43(x1) weight: (/ 1 4) #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: 0 #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: (/ 1 4) + x1 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: x2 U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 4) + x1 U31(x1,x2) weight: x2 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: (/ 1 4) + x2 #active(x1) weight: (/ 1 4) + x1 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: x1 U51(x1,x2,x3) weight: x3 #isNatKind(x1) weight: 0 U53(x1) weight: x1 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: (/ 1 4) #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { 62..65 68..73 76..107 110..113 116..125 } Removed DPs: #8 Number of SCCs: 11, DPs: 19, edges: 59 SCC { #26 #36 #40 #57 #61 #64 #71 #79 #94 #97 #111 #119 #120 #128 #183 #190 #193 #200 #201 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: 0 U11(x1,x2) weight: (/ 1 8) #cons(x1,x2) weight: 0 s(x1) weight: x1 #isNat(x1) weight: 0 U42(x1,x2) weight: (/ 5 16) + x2 and(x1,x2) weight: x2 isNatIList(x1) weight: (/ 1 16) + x1 U43(x1) weight: (/ 7 16) #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: (/ 1 4) #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: (/ 1 16) + x1 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: (/ 1 8) U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 16) + x1 U31(x1,x2) weight: 0 #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: x2 #active(x1) weight: (/ 1 16) + x1 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: x1 U51(x1,x2,x3) weight: (/ 1 8) + x2 #isNatKind(x1) weight: 0 U53(x1) weight: x1 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: (/ 3 16) #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { 62..65 68..73 76..81 84..93 96..107 110..113 116..125 } Removed DPs: #94 Number of SCCs: 11, DPs: 15, edges: 47 SCC { #26 #36 #57 #61 #64 #79 #97 #111 #119 #128 #183 #190 #193 #200 #201 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: 0 U21(x1,x2) weight: 0 isNatList(x1) weight: (/ 1 16) U11(x1,x2) weight: (/ 1 8) #cons(x1,x2) weight: 0 s(x1) weight: x1 #isNat(x1) weight: 0 U42(x1,x2) weight: (/ 5 16) + x2 and(x1,x2) weight: x2 isNatIList(x1) weight: (/ 1 16) + x1 U43(x1) weight: (/ 7 16) #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: (/ 1 4) #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: (/ 1 16) + x1 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: 0 nil() weight: 0 mark(x1) weight: x1 U32(x1) weight: 0 isNat(x1) weight: 0 U52(x1,x2) weight: (/ 1 4) U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 16) + x1 U31(x1,x2) weight: (/ 1 16) #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: x2 #active(x1) weight: (/ 1 16) + x1 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: x1 U51(x1,x2,x3) weight: (/ 3 16) + x2 #isNatKind(x1) weight: 0 U53(x1) weight: (/ 1 16) + x1 length(x1) weight: 0 #length(x1) weight: 0 U41(x1,x2,x3) weight: (/ 3 16) #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { 62..65 68..73 76..81 84..93 96..107 110..113 116..125 } Removed DPs: #200 Number of SCCs: 11, DPs: 14, edges: 35 SCC { #26 #36 #57 #61 #64 #79 #97 #111 #119 #128 #183 #190 #193 #201 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: (/ 1 8) + x1 U21(x1,x2) weight: (/ 1 8) isNatList(x1) weight: (/ 1 8) U11(x1,x2) weight: (/ 3 8) #cons(x1,x2) weight: 0 s(x1) weight: x1 #isNat(x1) weight: 0 U42(x1,x2) weight: (/ 7 8) + x2 and(x1,x2) weight: x2 isNatIList(x1) weight: (/ 1 8) + x1 U43(x1) weight: (/ 9 8) #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: (/ 5 8) #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: (/ 1 8) + x1 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: (/ 1 2) + x1 nil() weight: 0 mark(x1) weight: (/ 1 8) + x1 U32(x1) weight: (/ 1 2) + x1 isNat(x1) weight: (/ 1 8) U52(x1,x2) weight: (/ 5 8) + x2 U61(x1,x2) weight: (/ 1 8) #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 4) + x1 U31(x1,x2) weight: (/ 3 8) #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: (/ 1 4) + x1 + x2 #active(x1) weight: (/ 1 8) + x1 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: x1 U51(x1,x2,x3) weight: (/ 3 8) + x2 #isNatKind(x1) weight: 0 U53(x1) weight: (/ 3 4) + x1 length(x1) weight: (/ 1 8) #length(x1) weight: 0 U41(x1,x2,x3) weight: (/ 5 8) + x2 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { 62..73 76..81 84..93 96..107 110..113 116..125 } Removed DPs: #79 Number of SCCs: 11, DPs: 12, edges: 30 SCC { #26 #36 #61 #64 #97 #111 #119 #128 #183 #190 #193 #201 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: (/ 1 8) + x1 U21(x1,x2) weight: (/ 1 8) isNatList(x1) weight: (/ 1 8) U11(x1,x2) weight: (/ 3 8) #cons(x1,x2) weight: 0 s(x1) weight: x1 #isNat(x1) weight: 0 U42(x1,x2) weight: (/ 7 8) + x2 and(x1,x2) weight: (/ 1 8) + x2 isNatIList(x1) weight: (/ 1 8) + x1 U43(x1) weight: (/ 9 8) #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: (/ 5 8) #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: (/ 1 8) + x1 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: (/ 1 2) + x1 nil() weight: 0 mark(x1) weight: (/ 1 8) + x1 U32(x1) weight: (/ 1 2) + x1 isNat(x1) weight: (/ 1 8) U52(x1,x2) weight: (/ 5 8) + x2 U61(x1,x2) weight: (/ 1 8) #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 4) + x1 U31(x1,x2) weight: (/ 3 8) #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: (/ 1 4) + x1 + x2 #active(x1) weight: (/ 1 8) + x1 #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: x1 U51(x1,x2,x3) weight: (/ 3 8) + x2 #isNatKind(x1) weight: 0 U53(x1) weight: (/ 3 4) + x1 length(x1) weight: (/ 1 8) #length(x1) weight: 0 U41(x1,x2,x3) weight: (/ 5 8) + x2 #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { 62..73 76..81 84..93 96..107 110..113 116..125 } Removed DPs: #190 Number of SCCs: 11, DPs: 10, edges: 20 SCC { #26 #36 #61 #64 #97 #111 #119 #128 #193 #201 } Removing DPs: Order(PosReal,>,Sum)... Order(PosReal,>,Max)... QLPOpS... Order(PosReal,>,MaxSum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: (max (- (/ 1 16)) 0) U21(x1,x2) weight: max{0, (/ 13 16) + x2} isNatList(x1) weight: max{0, (/ 3 2) + x1} U11(x1,x2) weight: max{0, (/ 53 16) + x1} #cons(x1,x2) weight: 0 s(x1) weight: max{0, (/ 5 16) + x1} #isNat(x1) weight: 0 U42(x1,x2) weight: max{0, (- (/ 11 16)) + x1, (- (/ 5 8)) + x2} and(x1,x2) weight: max{0, (- (/ 3 4)) + x1, (/ 1 16) + x2} isNatIList(x1) weight: (max (/ 1 16) 0) U43(x1) weight: (max (/ 1 16) 0) #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: (/ 1 16) #U52(x1,x2) weight: 0 U12(x1) weight: (max (/ 27 8) 0) #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: max{0, (- (/ 1 2)) + x1} 0() weight: (/ 7 4) #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: (max (- (/ 5 2)) 0) nil() weight: (/ 1 16) mark(x1) weight: max{0, x1} U32(x1) weight: (max (- (/ 1 8)) 0) isNat(x1) weight: max{0, (/ 5 8) + x1} U52(x1,x2) weight: max{0, (/ 5 2) + x1, (- (/ 1 16)) + x2} U61(x1,x2) weight: 0 #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: max{0, x1} U31(x1,x2) weight: max{0, (- (/ 1 8)) + x1, (- (/ 1 16)) + x2} #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: max{0, (- (/ 13 8)) + x1} #active(x1) weight: max{0, (- (/ 9 16)) + x1} #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: max{0, (/ 1 16) + x1} U51(x1,x2,x3) weight: max{0, (/ 19 8) + x1, (/ 39 16) + x2} #isNatKind(x1) weight: 0 U53(x1) weight: (max (/ 41 16) 0) length(x1) weight: (max (/ 1 8) 0) #length(x1) weight: 0 U41(x1,x2,x3) weight: max{0, (- (/ 13 16)) + x1, (- (/ 3 4)) + x2, (- (/ 5 8)) + x3} #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { 70..73 76 77 108..113 116 117 } Removed DPs: #26 #128 #193 #201 Number of SCCs: 11, DPs: 6, edges: 12 SCC { #36 #61 #64 #97 #111 #119 } Removing DPs: Order(PosReal,>,Sum)... succeeded. #U32(x1) weight: 0 #isNatIListKind(x1) weight: 0 isNatKind(x1) weight: (/ 1 4) U21(x1,x2) weight: (/ 1 4) isNatList(x1) weight: (/ 1 4) U11(x1,x2) weight: (/ 1 4) #cons(x1,x2) weight: 0 s(x1) weight: x1 #isNat(x1) weight: 0 U42(x1,x2) weight: (/ 1 4) and(x1,x2) weight: (/ 1 4) isNatIList(x1) weight: (/ 1 4) + x1 U43(x1) weight: (/ 1 4) #U53(x1) weight: 0 #U43(x1) weight: 0 zeros() weight: 0 #U52(x1,x2) weight: 0 U12(x1) weight: (/ 1 4) #U42(x1,x2) weight: 0 #U12(x1) weight: 0 #mark(x1) weight: (/ 1 4) + x1 0() weight: 0 #isNatList(x1) weight: 0 #s(x1) weight: 0 isNatIListKind(x1) weight: (/ 1 4) nil() weight: 0 mark(x1) weight: (/ 1 4) U32(x1) weight: (/ 1 4) + x1 isNat(x1) weight: (/ 1 4) U52(x1,x2) weight: (/ 1 4) U61(x1,x2) weight: (/ 1 4) #U51(x1,x2,x3) weight: 0 #U11(x1,x2) weight: 0 active(x1) weight: (/ 1 2) U31(x1,x2) weight: (/ 1 4) #U41(x1,x2,x3) weight: 0 cons(x1,x2) weight: (/ 1 4) + x1 #active(x1) weight: (/ 1 2) #isNatIList(x1) weight: 0 #U21(x1,x2) weight: 0 #U22(x1) weight: 0 tt() weight: 0 U22(x1) weight: (/ 1 4) + x1 U51(x1,x2,x3) weight: (/ 1 4) #isNatKind(x1) weight: 0 U53(x1) weight: (/ 1 4) + x1 length(x1) weight: (/ 1 4) #length(x1) weight: 0 U41(x1,x2,x3) weight: (/ 1 4) #U31(x1,x2) weight: 0 #and(x1,x2) weight: 0 #U61(x1,x2) weight: 0 Usable rules: { 62..73 76..81 84..93 98..107 110..113 116 117 122..125 } Removed DPs: #61 Number of SCCs: 11, DPs: 5, edges: 7 SCC { #36 #64 #97 #111 #119 } Removing DPs: Order(PosReal,>,Sum)... Order(PosReal,>,Max)... QLPOpS... Order(PosReal,>,MaxSum)... QWPOpS(PosReal,>,MaxSum)... Order(PosReal,>,Sum-Sum; PosReal,≥,Sum-Sum)... Order(PosReal,>,Sum-Sum; NegReal,≥,Sum)... succeeded. #U32(x1) weight: 0; 0 #isNatIListKind(x1) weight: 0; 0 isNatKind(x1) weight: max{0, (/ 1 8) + x1_1}; 0 U21(x1,x2) weight: max{0, x1_1}; 0 isNatList(x1) weight: max{0, x1_2}; x1_2 U11(x1,x2) weight: (max (/ 1 16) 0); 0 #cons(x1,x2) weight: 0; 0 s(x1) weight: max{0, (/ 1 16) + x1_1}; 0 #isNat(x1) weight: 0; 0 U42(x1,x2) weight: max{0, x2_2}; 0 and(x1,x2) weight: max{0, x2_1}; x1_2 isNatIList(x1) weight: max{0, (/ 1 16) + x1_1}; 0 U43(x1) weight: 0; 0 #U53(x1) weight: 0; 0 #U43(x1) weight: 0; 0 zeros() weight: (/ 1 16); (- (/ 7 16)) #U52(x1,x2) weight: 0; 0 U12(x1) weight: (max (- (/ 1 16)) 0); 0 #U42(x1,x2) weight: 0; 0 #U12(x1) weight: 0; 0 #mark(x1) weight: max{0, (/ 1 8) + x1_1 + x1_2}; 0 0() weight: (/ 1 16); (- (/ 1 16)) #isNatList(x1) weight: 0; 0 #s(x1) weight: 0; 0 isNatIListKind(x1) weight: (max (/ 1 16) 0); 0 nil() weight: (/ 1 16); 0 mark(x1) weight: max{0, x1_1}; x1_2 U32(x1) weight: 0; x1_2 isNat(x1) weight: max{0, (/ 1 16) + x1_1}; 0 U52(x1,x2) weight: (max (- (/ 1 16)) 0); x2_2 U61(x1,x2) weight: max{0, (/ 5 16) + x2_1 + x1_2}; 0 #U51(x1,x2,x3) weight: 0; 0 #U11(x1,x2) weight: 0; 0 active(x1) weight: max{0, x1_1}; x1_2 U31(x1,x2) weight: max{0, x2_1 + x1_1}; x2_2 + x1_2 #U41(x1,x2,x3) weight: 0; 0 cons(x1,x2) weight: max{0, (/ 5 16) + x2_1 + x2_2 + x1_1}; x2_2 #active(x1) weight: max{0, (/ 1 16) + x1_1}; 0 #isNatIList(x1) weight: 0; 0 #U21(x1,x2) weight: 0; 0 #U22(x1) weight: 0; 0 tt() weight: 0; 0 U22(x1) weight: 0; 0 U51(x1,x2,x3) weight: max{0, x3_2}; x3_2 #isNatKind(x1) weight: 0; 0 U53(x1) weight: (max (- (/ 1 16)) 0); x1_2 length(x1) weight: max{0, (/ 1 8) + x1_1}; 0 #length(x1) weight: 0; 0 U41(x1,x2,x3) weight: max{0, x3_2 + x2_1}; 0 #U31(x1,x2) weight: 0; 0 #and(x1,x2) weight: 0; 0 #U61(x1,x2) weight: 0; 0 Usable rules: { 1..125 } Removed DPs: #36 #64 #97 #111 #119 Number of SCCs: 10, DPs: 0, edges: 0 YES