(0) Obligation:
Runtime Complexity TRS:
The TRS R consists of the following rules:
plus(x, y) → ifPlus(isZero(x), x, inc(y))
ifPlus(true, x, y) → p(y)
ifPlus(false, x, y) → plus(p(x), y)
times(x, y) → timesIter(0, x, y, 0)
timesIter(i, x, y, z) → ifTimes(ge(i, x), i, x, y, z)
ifTimes(true, i, x, y, z) → z
ifTimes(false, i, x, y, z) → timesIter(inc(i), x, y, plus(z, y))
isZero(0) → true
isZero(s(0)) → false
isZero(s(s(x))) → isZero(s(x))
inc(0) → s(0)
inc(s(x)) → s(inc(x))
inc(x) → s(x)
p(0) → 0
p(s(x)) → x
p(s(s(x))) → s(p(s(x)))
ge(x, 0) → true
ge(0, s(y)) → false
ge(s(x), s(y)) → ge(x, y)
f0(0, y, x) → f1(x, y, x)
f1(x, y, z) → f2(x, y, z)
f2(x, 1, z) → f0(x, z, z)
f0(x, y, z) → d
f1(x, y, z) → c
Rewrite Strategy: FULL
(1) RenamingProof (EQUIVALENT transformation)
Renamed function symbols to avoid clashes with predefined symbol.
(2) Obligation:
Runtime Complexity Relative TRS:
The TRS R consists of the following rules:
plus(x, y) → ifPlus(isZero(x), x, inc(y))
ifPlus(true, x, y) → p(y)
ifPlus(false, x, y) → plus(p(x), y)
times(x, y) → timesIter(0', x, y, 0')
timesIter(i, x, y, z) → ifTimes(ge(i, x), i, x, y, z)
ifTimes(true, i, x, y, z) → z
ifTimes(false, i, x, y, z) → timesIter(inc(i), x, y, plus(z, y))
isZero(0') → true
isZero(s(0')) → false
isZero(s(s(x))) → isZero(s(x))
inc(0') → s(0')
inc(s(x)) → s(inc(x))
inc(x) → s(x)
p(0') → 0'
p(s(x)) → x
p(s(s(x))) → s(p(s(x)))
ge(x, 0') → true
ge(0', s(y)) → false
ge(s(x), s(y)) → ge(x, y)
f0(0', y, x) → f1(x, y, x)
f1(x, y, z) → f2(x, y, z)
f2(x, 1', z) → f0(x, z, z)
f0(x, y, z) → d
f1(x, y, z) → c
S is empty.
Rewrite Strategy: FULL
(3) TypeInferenceProof (BOTH BOUNDS(ID, ID) transformation)
Infered types.
(4) Obligation:
TRS:
Rules:
plus(x, y) → ifPlus(isZero(x), x, inc(y))
ifPlus(true, x, y) → p(y)
ifPlus(false, x, y) → plus(p(x), y)
times(x, y) → timesIter(0', x, y, 0')
timesIter(i, x, y, z) → ifTimes(ge(i, x), i, x, y, z)
ifTimes(true, i, x, y, z) → z
ifTimes(false, i, x, y, z) → timesIter(inc(i), x, y, plus(z, y))
isZero(0') → true
isZero(s(0')) → false
isZero(s(s(x))) → isZero(s(x))
inc(0') → s(0')
inc(s(x)) → s(inc(x))
inc(x) → s(x)
p(0') → 0'
p(s(x)) → x
p(s(s(x))) → s(p(s(x)))
ge(x, 0') → true
ge(0', s(y)) → false
ge(s(x), s(y)) → ge(x, y)
f0(0', y, x) → f1(x, y, x)
f1(x, y, z) → f2(x, y, z)
f2(x, 1', z) → f0(x, z, z)
f0(x, y, z) → d
f1(x, y, z) → c
Types:
plus :: 0':s:1' → 0':s:1' → 0':s:1'
ifPlus :: true:false → 0':s:1' → 0':s:1' → 0':s:1'
isZero :: 0':s:1' → true:false
inc :: 0':s:1' → 0':s:1'
true :: true:false
p :: 0':s:1' → 0':s:1'
false :: true:false
times :: 0':s:1' → 0':s:1' → 0':s:1'
timesIter :: 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
0' :: 0':s:1'
ifTimes :: true:false → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
ge :: 0':s:1' → 0':s:1' → true:false
s :: 0':s:1' → 0':s:1'
f0 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f1 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f2 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
1' :: 0':s:1'
d :: d:c
c :: d:c
hole_0':s:1'1_3 :: 0':s:1'
hole_true:false2_3 :: true:false
hole_d:c3_3 :: d:c
gen_0':s:1'4_3 :: Nat → 0':s:1'
(5) OrderProof (LOWER BOUND(ID) transformation)
Heuristically decided to analyse the following defined symbols:
plus,
isZero,
inc,
p,
timesIter,
ge,
f0,
f1,
f2They will be analysed ascendingly in the following order:
isZero < plus
inc < plus
p < plus
plus < timesIter
inc < timesIter
ge < timesIter
f0 = f1
f0 = f2
f1 = f2
(6) Obligation:
TRS:
Rules:
plus(
x,
y) →
ifPlus(
isZero(
x),
x,
inc(
y))
ifPlus(
true,
x,
y) →
p(
y)
ifPlus(
false,
x,
y) →
plus(
p(
x),
y)
times(
x,
y) →
timesIter(
0',
x,
y,
0')
timesIter(
i,
x,
y,
z) →
ifTimes(
ge(
i,
x),
i,
x,
y,
z)
ifTimes(
true,
i,
x,
y,
z) →
zifTimes(
false,
i,
x,
y,
z) →
timesIter(
inc(
i),
x,
y,
plus(
z,
y))
isZero(
0') →
trueisZero(
s(
0')) →
falseisZero(
s(
s(
x))) →
isZero(
s(
x))
inc(
0') →
s(
0')
inc(
s(
x)) →
s(
inc(
x))
inc(
x) →
s(
x)
p(
0') →
0'p(
s(
x)) →
xp(
s(
s(
x))) →
s(
p(
s(
x)))
ge(
x,
0') →
truege(
0',
s(
y)) →
falsege(
s(
x),
s(
y)) →
ge(
x,
y)
f0(
0',
y,
x) →
f1(
x,
y,
x)
f1(
x,
y,
z) →
f2(
x,
y,
z)
f2(
x,
1',
z) →
f0(
x,
z,
z)
f0(
x,
y,
z) →
df1(
x,
y,
z) →
cTypes:
plus :: 0':s:1' → 0':s:1' → 0':s:1'
ifPlus :: true:false → 0':s:1' → 0':s:1' → 0':s:1'
isZero :: 0':s:1' → true:false
inc :: 0':s:1' → 0':s:1'
true :: true:false
p :: 0':s:1' → 0':s:1'
false :: true:false
times :: 0':s:1' → 0':s:1' → 0':s:1'
timesIter :: 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
0' :: 0':s:1'
ifTimes :: true:false → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
ge :: 0':s:1' → 0':s:1' → true:false
s :: 0':s:1' → 0':s:1'
f0 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f1 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f2 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
1' :: 0':s:1'
d :: d:c
c :: d:c
hole_0':s:1'1_3 :: 0':s:1'
hole_true:false2_3 :: true:false
hole_d:c3_3 :: d:c
gen_0':s:1'4_3 :: Nat → 0':s:1'
Generator Equations:
gen_0':s:1'4_3(0) ⇔ 0'
gen_0':s:1'4_3(+(x, 1)) ⇔ s(gen_0':s:1'4_3(x))
The following defined symbols remain to be analysed:
isZero, plus, inc, p, timesIter, ge, f0, f1, f2
They will be analysed ascendingly in the following order:
isZero < plus
inc < plus
p < plus
plus < timesIter
inc < timesIter
ge < timesIter
f0 = f1
f0 = f2
f1 = f2
(7) RewriteLemmaProof (LOWER BOUND(ID) transformation)
Proved the following rewrite lemma:
isZero(
gen_0':s:1'4_3(
+(
1,
n6_3))) →
false, rt ∈ Ω(1 + n6
3)
Induction Base:
isZero(gen_0':s:1'4_3(+(1, 0))) →RΩ(1)
false
Induction Step:
isZero(gen_0':s:1'4_3(+(1, +(n6_3, 1)))) →RΩ(1)
isZero(s(gen_0':s:1'4_3(n6_3))) →IH
false
We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).
(8) Complex Obligation (BEST)
(9) Obligation:
TRS:
Rules:
plus(
x,
y) →
ifPlus(
isZero(
x),
x,
inc(
y))
ifPlus(
true,
x,
y) →
p(
y)
ifPlus(
false,
x,
y) →
plus(
p(
x),
y)
times(
x,
y) →
timesIter(
0',
x,
y,
0')
timesIter(
i,
x,
y,
z) →
ifTimes(
ge(
i,
x),
i,
x,
y,
z)
ifTimes(
true,
i,
x,
y,
z) →
zifTimes(
false,
i,
x,
y,
z) →
timesIter(
inc(
i),
x,
y,
plus(
z,
y))
isZero(
0') →
trueisZero(
s(
0')) →
falseisZero(
s(
s(
x))) →
isZero(
s(
x))
inc(
0') →
s(
0')
inc(
s(
x)) →
s(
inc(
x))
inc(
x) →
s(
x)
p(
0') →
0'p(
s(
x)) →
xp(
s(
s(
x))) →
s(
p(
s(
x)))
ge(
x,
0') →
truege(
0',
s(
y)) →
falsege(
s(
x),
s(
y)) →
ge(
x,
y)
f0(
0',
y,
x) →
f1(
x,
y,
x)
f1(
x,
y,
z) →
f2(
x,
y,
z)
f2(
x,
1',
z) →
f0(
x,
z,
z)
f0(
x,
y,
z) →
df1(
x,
y,
z) →
cTypes:
plus :: 0':s:1' → 0':s:1' → 0':s:1'
ifPlus :: true:false → 0':s:1' → 0':s:1' → 0':s:1'
isZero :: 0':s:1' → true:false
inc :: 0':s:1' → 0':s:1'
true :: true:false
p :: 0':s:1' → 0':s:1'
false :: true:false
times :: 0':s:1' → 0':s:1' → 0':s:1'
timesIter :: 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
0' :: 0':s:1'
ifTimes :: true:false → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
ge :: 0':s:1' → 0':s:1' → true:false
s :: 0':s:1' → 0':s:1'
f0 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f1 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f2 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
1' :: 0':s:1'
d :: d:c
c :: d:c
hole_0':s:1'1_3 :: 0':s:1'
hole_true:false2_3 :: true:false
hole_d:c3_3 :: d:c
gen_0':s:1'4_3 :: Nat → 0':s:1'
Lemmas:
isZero(gen_0':s:1'4_3(+(1, n6_3))) → false, rt ∈ Ω(1 + n63)
Generator Equations:
gen_0':s:1'4_3(0) ⇔ 0'
gen_0':s:1'4_3(+(x, 1)) ⇔ s(gen_0':s:1'4_3(x))
The following defined symbols remain to be analysed:
inc, plus, p, timesIter, ge, f0, f1, f2
They will be analysed ascendingly in the following order:
inc < plus
p < plus
plus < timesIter
inc < timesIter
ge < timesIter
f0 = f1
f0 = f2
f1 = f2
(10) RewriteLemmaProof (LOWER BOUND(ID) transformation)
Proved the following rewrite lemma:
inc(
gen_0':s:1'4_3(
n163_3)) →
gen_0':s:1'4_3(
+(
1,
n163_3)), rt ∈ Ω(1 + n163
3)
Induction Base:
inc(gen_0':s:1'4_3(0)) →RΩ(1)
s(0')
Induction Step:
inc(gen_0':s:1'4_3(+(n163_3, 1))) →RΩ(1)
s(inc(gen_0':s:1'4_3(n163_3))) →IH
s(gen_0':s:1'4_3(+(1, c164_3)))
We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).
(11) Complex Obligation (BEST)
(12) Obligation:
TRS:
Rules:
plus(
x,
y) →
ifPlus(
isZero(
x),
x,
inc(
y))
ifPlus(
true,
x,
y) →
p(
y)
ifPlus(
false,
x,
y) →
plus(
p(
x),
y)
times(
x,
y) →
timesIter(
0',
x,
y,
0')
timesIter(
i,
x,
y,
z) →
ifTimes(
ge(
i,
x),
i,
x,
y,
z)
ifTimes(
true,
i,
x,
y,
z) →
zifTimes(
false,
i,
x,
y,
z) →
timesIter(
inc(
i),
x,
y,
plus(
z,
y))
isZero(
0') →
trueisZero(
s(
0')) →
falseisZero(
s(
s(
x))) →
isZero(
s(
x))
inc(
0') →
s(
0')
inc(
s(
x)) →
s(
inc(
x))
inc(
x) →
s(
x)
p(
0') →
0'p(
s(
x)) →
xp(
s(
s(
x))) →
s(
p(
s(
x)))
ge(
x,
0') →
truege(
0',
s(
y)) →
falsege(
s(
x),
s(
y)) →
ge(
x,
y)
f0(
0',
y,
x) →
f1(
x,
y,
x)
f1(
x,
y,
z) →
f2(
x,
y,
z)
f2(
x,
1',
z) →
f0(
x,
z,
z)
f0(
x,
y,
z) →
df1(
x,
y,
z) →
cTypes:
plus :: 0':s:1' → 0':s:1' → 0':s:1'
ifPlus :: true:false → 0':s:1' → 0':s:1' → 0':s:1'
isZero :: 0':s:1' → true:false
inc :: 0':s:1' → 0':s:1'
true :: true:false
p :: 0':s:1' → 0':s:1'
false :: true:false
times :: 0':s:1' → 0':s:1' → 0':s:1'
timesIter :: 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
0' :: 0':s:1'
ifTimes :: true:false → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
ge :: 0':s:1' → 0':s:1' → true:false
s :: 0':s:1' → 0':s:1'
f0 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f1 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f2 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
1' :: 0':s:1'
d :: d:c
c :: d:c
hole_0':s:1'1_3 :: 0':s:1'
hole_true:false2_3 :: true:false
hole_d:c3_3 :: d:c
gen_0':s:1'4_3 :: Nat → 0':s:1'
Lemmas:
isZero(gen_0':s:1'4_3(+(1, n6_3))) → false, rt ∈ Ω(1 + n63)
inc(gen_0':s:1'4_3(n163_3)) → gen_0':s:1'4_3(+(1, n163_3)), rt ∈ Ω(1 + n1633)
Generator Equations:
gen_0':s:1'4_3(0) ⇔ 0'
gen_0':s:1'4_3(+(x, 1)) ⇔ s(gen_0':s:1'4_3(x))
The following defined symbols remain to be analysed:
p, plus, timesIter, ge, f0, f1, f2
They will be analysed ascendingly in the following order:
p < plus
plus < timesIter
ge < timesIter
f0 = f1
f0 = f2
f1 = f2
(13) NoRewriteLemmaProof (LOWER BOUND(ID) transformation)
Could not prove a rewrite lemma for the defined symbol p.
(14) Obligation:
TRS:
Rules:
plus(
x,
y) →
ifPlus(
isZero(
x),
x,
inc(
y))
ifPlus(
true,
x,
y) →
p(
y)
ifPlus(
false,
x,
y) →
plus(
p(
x),
y)
times(
x,
y) →
timesIter(
0',
x,
y,
0')
timesIter(
i,
x,
y,
z) →
ifTimes(
ge(
i,
x),
i,
x,
y,
z)
ifTimes(
true,
i,
x,
y,
z) →
zifTimes(
false,
i,
x,
y,
z) →
timesIter(
inc(
i),
x,
y,
plus(
z,
y))
isZero(
0') →
trueisZero(
s(
0')) →
falseisZero(
s(
s(
x))) →
isZero(
s(
x))
inc(
0') →
s(
0')
inc(
s(
x)) →
s(
inc(
x))
inc(
x) →
s(
x)
p(
0') →
0'p(
s(
x)) →
xp(
s(
s(
x))) →
s(
p(
s(
x)))
ge(
x,
0') →
truege(
0',
s(
y)) →
falsege(
s(
x),
s(
y)) →
ge(
x,
y)
f0(
0',
y,
x) →
f1(
x,
y,
x)
f1(
x,
y,
z) →
f2(
x,
y,
z)
f2(
x,
1',
z) →
f0(
x,
z,
z)
f0(
x,
y,
z) →
df1(
x,
y,
z) →
cTypes:
plus :: 0':s:1' → 0':s:1' → 0':s:1'
ifPlus :: true:false → 0':s:1' → 0':s:1' → 0':s:1'
isZero :: 0':s:1' → true:false
inc :: 0':s:1' → 0':s:1'
true :: true:false
p :: 0':s:1' → 0':s:1'
false :: true:false
times :: 0':s:1' → 0':s:1' → 0':s:1'
timesIter :: 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
0' :: 0':s:1'
ifTimes :: true:false → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
ge :: 0':s:1' → 0':s:1' → true:false
s :: 0':s:1' → 0':s:1'
f0 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f1 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f2 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
1' :: 0':s:1'
d :: d:c
c :: d:c
hole_0':s:1'1_3 :: 0':s:1'
hole_true:false2_3 :: true:false
hole_d:c3_3 :: d:c
gen_0':s:1'4_3 :: Nat → 0':s:1'
Lemmas:
isZero(gen_0':s:1'4_3(+(1, n6_3))) → false, rt ∈ Ω(1 + n63)
inc(gen_0':s:1'4_3(n163_3)) → gen_0':s:1'4_3(+(1, n163_3)), rt ∈ Ω(1 + n1633)
Generator Equations:
gen_0':s:1'4_3(0) ⇔ 0'
gen_0':s:1'4_3(+(x, 1)) ⇔ s(gen_0':s:1'4_3(x))
The following defined symbols remain to be analysed:
plus, timesIter, ge, f0, f1, f2
They will be analysed ascendingly in the following order:
plus < timesIter
ge < timesIter
f0 = f1
f0 = f2
f1 = f2
(15) NoRewriteLemmaProof (LOWER BOUND(ID) transformation)
Could not prove a rewrite lemma for the defined symbol plus.
(16) Obligation:
TRS:
Rules:
plus(
x,
y) →
ifPlus(
isZero(
x),
x,
inc(
y))
ifPlus(
true,
x,
y) →
p(
y)
ifPlus(
false,
x,
y) →
plus(
p(
x),
y)
times(
x,
y) →
timesIter(
0',
x,
y,
0')
timesIter(
i,
x,
y,
z) →
ifTimes(
ge(
i,
x),
i,
x,
y,
z)
ifTimes(
true,
i,
x,
y,
z) →
zifTimes(
false,
i,
x,
y,
z) →
timesIter(
inc(
i),
x,
y,
plus(
z,
y))
isZero(
0') →
trueisZero(
s(
0')) →
falseisZero(
s(
s(
x))) →
isZero(
s(
x))
inc(
0') →
s(
0')
inc(
s(
x)) →
s(
inc(
x))
inc(
x) →
s(
x)
p(
0') →
0'p(
s(
x)) →
xp(
s(
s(
x))) →
s(
p(
s(
x)))
ge(
x,
0') →
truege(
0',
s(
y)) →
falsege(
s(
x),
s(
y)) →
ge(
x,
y)
f0(
0',
y,
x) →
f1(
x,
y,
x)
f1(
x,
y,
z) →
f2(
x,
y,
z)
f2(
x,
1',
z) →
f0(
x,
z,
z)
f0(
x,
y,
z) →
df1(
x,
y,
z) →
cTypes:
plus :: 0':s:1' → 0':s:1' → 0':s:1'
ifPlus :: true:false → 0':s:1' → 0':s:1' → 0':s:1'
isZero :: 0':s:1' → true:false
inc :: 0':s:1' → 0':s:1'
true :: true:false
p :: 0':s:1' → 0':s:1'
false :: true:false
times :: 0':s:1' → 0':s:1' → 0':s:1'
timesIter :: 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
0' :: 0':s:1'
ifTimes :: true:false → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
ge :: 0':s:1' → 0':s:1' → true:false
s :: 0':s:1' → 0':s:1'
f0 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f1 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f2 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
1' :: 0':s:1'
d :: d:c
c :: d:c
hole_0':s:1'1_3 :: 0':s:1'
hole_true:false2_3 :: true:false
hole_d:c3_3 :: d:c
gen_0':s:1'4_3 :: Nat → 0':s:1'
Lemmas:
isZero(gen_0':s:1'4_3(+(1, n6_3))) → false, rt ∈ Ω(1 + n63)
inc(gen_0':s:1'4_3(n163_3)) → gen_0':s:1'4_3(+(1, n163_3)), rt ∈ Ω(1 + n1633)
Generator Equations:
gen_0':s:1'4_3(0) ⇔ 0'
gen_0':s:1'4_3(+(x, 1)) ⇔ s(gen_0':s:1'4_3(x))
The following defined symbols remain to be analysed:
ge, timesIter, f0, f1, f2
They will be analysed ascendingly in the following order:
ge < timesIter
f0 = f1
f0 = f2
f1 = f2
(17) RewriteLemmaProof (LOWER BOUND(ID) transformation)
Proved the following rewrite lemma:
ge(
gen_0':s:1'4_3(
n1329_3),
gen_0':s:1'4_3(
n1329_3)) →
true, rt ∈ Ω(1 + n1329
3)
Induction Base:
ge(gen_0':s:1'4_3(0), gen_0':s:1'4_3(0)) →RΩ(1)
true
Induction Step:
ge(gen_0':s:1'4_3(+(n1329_3, 1)), gen_0':s:1'4_3(+(n1329_3, 1))) →RΩ(1)
ge(gen_0':s:1'4_3(n1329_3), gen_0':s:1'4_3(n1329_3)) →IH
true
We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).
(18) Complex Obligation (BEST)
(19) Obligation:
TRS:
Rules:
plus(
x,
y) →
ifPlus(
isZero(
x),
x,
inc(
y))
ifPlus(
true,
x,
y) →
p(
y)
ifPlus(
false,
x,
y) →
plus(
p(
x),
y)
times(
x,
y) →
timesIter(
0',
x,
y,
0')
timesIter(
i,
x,
y,
z) →
ifTimes(
ge(
i,
x),
i,
x,
y,
z)
ifTimes(
true,
i,
x,
y,
z) →
zifTimes(
false,
i,
x,
y,
z) →
timesIter(
inc(
i),
x,
y,
plus(
z,
y))
isZero(
0') →
trueisZero(
s(
0')) →
falseisZero(
s(
s(
x))) →
isZero(
s(
x))
inc(
0') →
s(
0')
inc(
s(
x)) →
s(
inc(
x))
inc(
x) →
s(
x)
p(
0') →
0'p(
s(
x)) →
xp(
s(
s(
x))) →
s(
p(
s(
x)))
ge(
x,
0') →
truege(
0',
s(
y)) →
falsege(
s(
x),
s(
y)) →
ge(
x,
y)
f0(
0',
y,
x) →
f1(
x,
y,
x)
f1(
x,
y,
z) →
f2(
x,
y,
z)
f2(
x,
1',
z) →
f0(
x,
z,
z)
f0(
x,
y,
z) →
df1(
x,
y,
z) →
cTypes:
plus :: 0':s:1' → 0':s:1' → 0':s:1'
ifPlus :: true:false → 0':s:1' → 0':s:1' → 0':s:1'
isZero :: 0':s:1' → true:false
inc :: 0':s:1' → 0':s:1'
true :: true:false
p :: 0':s:1' → 0':s:1'
false :: true:false
times :: 0':s:1' → 0':s:1' → 0':s:1'
timesIter :: 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
0' :: 0':s:1'
ifTimes :: true:false → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
ge :: 0':s:1' → 0':s:1' → true:false
s :: 0':s:1' → 0':s:1'
f0 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f1 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f2 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
1' :: 0':s:1'
d :: d:c
c :: d:c
hole_0':s:1'1_3 :: 0':s:1'
hole_true:false2_3 :: true:false
hole_d:c3_3 :: d:c
gen_0':s:1'4_3 :: Nat → 0':s:1'
Lemmas:
isZero(gen_0':s:1'4_3(+(1, n6_3))) → false, rt ∈ Ω(1 + n63)
inc(gen_0':s:1'4_3(n163_3)) → gen_0':s:1'4_3(+(1, n163_3)), rt ∈ Ω(1 + n1633)
ge(gen_0':s:1'4_3(n1329_3), gen_0':s:1'4_3(n1329_3)) → true, rt ∈ Ω(1 + n13293)
Generator Equations:
gen_0':s:1'4_3(0) ⇔ 0'
gen_0':s:1'4_3(+(x, 1)) ⇔ s(gen_0':s:1'4_3(x))
The following defined symbols remain to be analysed:
timesIter, f0, f1, f2
They will be analysed ascendingly in the following order:
f0 = f1
f0 = f2
f1 = f2
(20) NoRewriteLemmaProof (LOWER BOUND(ID) transformation)
Could not prove a rewrite lemma for the defined symbol timesIter.
(21) Obligation:
TRS:
Rules:
plus(
x,
y) →
ifPlus(
isZero(
x),
x,
inc(
y))
ifPlus(
true,
x,
y) →
p(
y)
ifPlus(
false,
x,
y) →
plus(
p(
x),
y)
times(
x,
y) →
timesIter(
0',
x,
y,
0')
timesIter(
i,
x,
y,
z) →
ifTimes(
ge(
i,
x),
i,
x,
y,
z)
ifTimes(
true,
i,
x,
y,
z) →
zifTimes(
false,
i,
x,
y,
z) →
timesIter(
inc(
i),
x,
y,
plus(
z,
y))
isZero(
0') →
trueisZero(
s(
0')) →
falseisZero(
s(
s(
x))) →
isZero(
s(
x))
inc(
0') →
s(
0')
inc(
s(
x)) →
s(
inc(
x))
inc(
x) →
s(
x)
p(
0') →
0'p(
s(
x)) →
xp(
s(
s(
x))) →
s(
p(
s(
x)))
ge(
x,
0') →
truege(
0',
s(
y)) →
falsege(
s(
x),
s(
y)) →
ge(
x,
y)
f0(
0',
y,
x) →
f1(
x,
y,
x)
f1(
x,
y,
z) →
f2(
x,
y,
z)
f2(
x,
1',
z) →
f0(
x,
z,
z)
f0(
x,
y,
z) →
df1(
x,
y,
z) →
cTypes:
plus :: 0':s:1' → 0':s:1' → 0':s:1'
ifPlus :: true:false → 0':s:1' → 0':s:1' → 0':s:1'
isZero :: 0':s:1' → true:false
inc :: 0':s:1' → 0':s:1'
true :: true:false
p :: 0':s:1' → 0':s:1'
false :: true:false
times :: 0':s:1' → 0':s:1' → 0':s:1'
timesIter :: 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
0' :: 0':s:1'
ifTimes :: true:false → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
ge :: 0':s:1' → 0':s:1' → true:false
s :: 0':s:1' → 0':s:1'
f0 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f1 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f2 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
1' :: 0':s:1'
d :: d:c
c :: d:c
hole_0':s:1'1_3 :: 0':s:1'
hole_true:false2_3 :: true:false
hole_d:c3_3 :: d:c
gen_0':s:1'4_3 :: Nat → 0':s:1'
Lemmas:
isZero(gen_0':s:1'4_3(+(1, n6_3))) → false, rt ∈ Ω(1 + n63)
inc(gen_0':s:1'4_3(n163_3)) → gen_0':s:1'4_3(+(1, n163_3)), rt ∈ Ω(1 + n1633)
ge(gen_0':s:1'4_3(n1329_3), gen_0':s:1'4_3(n1329_3)) → true, rt ∈ Ω(1 + n13293)
Generator Equations:
gen_0':s:1'4_3(0) ⇔ 0'
gen_0':s:1'4_3(+(x, 1)) ⇔ s(gen_0':s:1'4_3(x))
The following defined symbols remain to be analysed:
f1, f0, f2
They will be analysed ascendingly in the following order:
f0 = f1
f0 = f2
f1 = f2
(22) NoRewriteLemmaProof (LOWER BOUND(ID) transformation)
Could not prove a rewrite lemma for the defined symbol f1.
(23) Obligation:
TRS:
Rules:
plus(
x,
y) →
ifPlus(
isZero(
x),
x,
inc(
y))
ifPlus(
true,
x,
y) →
p(
y)
ifPlus(
false,
x,
y) →
plus(
p(
x),
y)
times(
x,
y) →
timesIter(
0',
x,
y,
0')
timesIter(
i,
x,
y,
z) →
ifTimes(
ge(
i,
x),
i,
x,
y,
z)
ifTimes(
true,
i,
x,
y,
z) →
zifTimes(
false,
i,
x,
y,
z) →
timesIter(
inc(
i),
x,
y,
plus(
z,
y))
isZero(
0') →
trueisZero(
s(
0')) →
falseisZero(
s(
s(
x))) →
isZero(
s(
x))
inc(
0') →
s(
0')
inc(
s(
x)) →
s(
inc(
x))
inc(
x) →
s(
x)
p(
0') →
0'p(
s(
x)) →
xp(
s(
s(
x))) →
s(
p(
s(
x)))
ge(
x,
0') →
truege(
0',
s(
y)) →
falsege(
s(
x),
s(
y)) →
ge(
x,
y)
f0(
0',
y,
x) →
f1(
x,
y,
x)
f1(
x,
y,
z) →
f2(
x,
y,
z)
f2(
x,
1',
z) →
f0(
x,
z,
z)
f0(
x,
y,
z) →
df1(
x,
y,
z) →
cTypes:
plus :: 0':s:1' → 0':s:1' → 0':s:1'
ifPlus :: true:false → 0':s:1' → 0':s:1' → 0':s:1'
isZero :: 0':s:1' → true:false
inc :: 0':s:1' → 0':s:1'
true :: true:false
p :: 0':s:1' → 0':s:1'
false :: true:false
times :: 0':s:1' → 0':s:1' → 0':s:1'
timesIter :: 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
0' :: 0':s:1'
ifTimes :: true:false → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
ge :: 0':s:1' → 0':s:1' → true:false
s :: 0':s:1' → 0':s:1'
f0 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f1 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f2 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
1' :: 0':s:1'
d :: d:c
c :: d:c
hole_0':s:1'1_3 :: 0':s:1'
hole_true:false2_3 :: true:false
hole_d:c3_3 :: d:c
gen_0':s:1'4_3 :: Nat → 0':s:1'
Lemmas:
isZero(gen_0':s:1'4_3(+(1, n6_3))) → false, rt ∈ Ω(1 + n63)
inc(gen_0':s:1'4_3(n163_3)) → gen_0':s:1'4_3(+(1, n163_3)), rt ∈ Ω(1 + n1633)
ge(gen_0':s:1'4_3(n1329_3), gen_0':s:1'4_3(n1329_3)) → true, rt ∈ Ω(1 + n13293)
Generator Equations:
gen_0':s:1'4_3(0) ⇔ 0'
gen_0':s:1'4_3(+(x, 1)) ⇔ s(gen_0':s:1'4_3(x))
The following defined symbols remain to be analysed:
f2, f0
They will be analysed ascendingly in the following order:
f0 = f1
f0 = f2
f1 = f2
(24) NoRewriteLemmaProof (LOWER BOUND(ID) transformation)
Could not prove a rewrite lemma for the defined symbol f2.
(25) Obligation:
TRS:
Rules:
plus(
x,
y) →
ifPlus(
isZero(
x),
x,
inc(
y))
ifPlus(
true,
x,
y) →
p(
y)
ifPlus(
false,
x,
y) →
plus(
p(
x),
y)
times(
x,
y) →
timesIter(
0',
x,
y,
0')
timesIter(
i,
x,
y,
z) →
ifTimes(
ge(
i,
x),
i,
x,
y,
z)
ifTimes(
true,
i,
x,
y,
z) →
zifTimes(
false,
i,
x,
y,
z) →
timesIter(
inc(
i),
x,
y,
plus(
z,
y))
isZero(
0') →
trueisZero(
s(
0')) →
falseisZero(
s(
s(
x))) →
isZero(
s(
x))
inc(
0') →
s(
0')
inc(
s(
x)) →
s(
inc(
x))
inc(
x) →
s(
x)
p(
0') →
0'p(
s(
x)) →
xp(
s(
s(
x))) →
s(
p(
s(
x)))
ge(
x,
0') →
truege(
0',
s(
y)) →
falsege(
s(
x),
s(
y)) →
ge(
x,
y)
f0(
0',
y,
x) →
f1(
x,
y,
x)
f1(
x,
y,
z) →
f2(
x,
y,
z)
f2(
x,
1',
z) →
f0(
x,
z,
z)
f0(
x,
y,
z) →
df1(
x,
y,
z) →
cTypes:
plus :: 0':s:1' → 0':s:1' → 0':s:1'
ifPlus :: true:false → 0':s:1' → 0':s:1' → 0':s:1'
isZero :: 0':s:1' → true:false
inc :: 0':s:1' → 0':s:1'
true :: true:false
p :: 0':s:1' → 0':s:1'
false :: true:false
times :: 0':s:1' → 0':s:1' → 0':s:1'
timesIter :: 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
0' :: 0':s:1'
ifTimes :: true:false → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
ge :: 0':s:1' → 0':s:1' → true:false
s :: 0':s:1' → 0':s:1'
f0 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f1 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f2 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
1' :: 0':s:1'
d :: d:c
c :: d:c
hole_0':s:1'1_3 :: 0':s:1'
hole_true:false2_3 :: true:false
hole_d:c3_3 :: d:c
gen_0':s:1'4_3 :: Nat → 0':s:1'
Lemmas:
isZero(gen_0':s:1'4_3(+(1, n6_3))) → false, rt ∈ Ω(1 + n63)
inc(gen_0':s:1'4_3(n163_3)) → gen_0':s:1'4_3(+(1, n163_3)), rt ∈ Ω(1 + n1633)
ge(gen_0':s:1'4_3(n1329_3), gen_0':s:1'4_3(n1329_3)) → true, rt ∈ Ω(1 + n13293)
Generator Equations:
gen_0':s:1'4_3(0) ⇔ 0'
gen_0':s:1'4_3(+(x, 1)) ⇔ s(gen_0':s:1'4_3(x))
The following defined symbols remain to be analysed:
f0
They will be analysed ascendingly in the following order:
f0 = f1
f0 = f2
f1 = f2
(26) NoRewriteLemmaProof (LOWER BOUND(ID) transformation)
Could not prove a rewrite lemma for the defined symbol f0.
(27) Obligation:
TRS:
Rules:
plus(
x,
y) →
ifPlus(
isZero(
x),
x,
inc(
y))
ifPlus(
true,
x,
y) →
p(
y)
ifPlus(
false,
x,
y) →
plus(
p(
x),
y)
times(
x,
y) →
timesIter(
0',
x,
y,
0')
timesIter(
i,
x,
y,
z) →
ifTimes(
ge(
i,
x),
i,
x,
y,
z)
ifTimes(
true,
i,
x,
y,
z) →
zifTimes(
false,
i,
x,
y,
z) →
timesIter(
inc(
i),
x,
y,
plus(
z,
y))
isZero(
0') →
trueisZero(
s(
0')) →
falseisZero(
s(
s(
x))) →
isZero(
s(
x))
inc(
0') →
s(
0')
inc(
s(
x)) →
s(
inc(
x))
inc(
x) →
s(
x)
p(
0') →
0'p(
s(
x)) →
xp(
s(
s(
x))) →
s(
p(
s(
x)))
ge(
x,
0') →
truege(
0',
s(
y)) →
falsege(
s(
x),
s(
y)) →
ge(
x,
y)
f0(
0',
y,
x) →
f1(
x,
y,
x)
f1(
x,
y,
z) →
f2(
x,
y,
z)
f2(
x,
1',
z) →
f0(
x,
z,
z)
f0(
x,
y,
z) →
df1(
x,
y,
z) →
cTypes:
plus :: 0':s:1' → 0':s:1' → 0':s:1'
ifPlus :: true:false → 0':s:1' → 0':s:1' → 0':s:1'
isZero :: 0':s:1' → true:false
inc :: 0':s:1' → 0':s:1'
true :: true:false
p :: 0':s:1' → 0':s:1'
false :: true:false
times :: 0':s:1' → 0':s:1' → 0':s:1'
timesIter :: 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
0' :: 0':s:1'
ifTimes :: true:false → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
ge :: 0':s:1' → 0':s:1' → true:false
s :: 0':s:1' → 0':s:1'
f0 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f1 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f2 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
1' :: 0':s:1'
d :: d:c
c :: d:c
hole_0':s:1'1_3 :: 0':s:1'
hole_true:false2_3 :: true:false
hole_d:c3_3 :: d:c
gen_0':s:1'4_3 :: Nat → 0':s:1'
Lemmas:
isZero(gen_0':s:1'4_3(+(1, n6_3))) → false, rt ∈ Ω(1 + n63)
inc(gen_0':s:1'4_3(n163_3)) → gen_0':s:1'4_3(+(1, n163_3)), rt ∈ Ω(1 + n1633)
ge(gen_0':s:1'4_3(n1329_3), gen_0':s:1'4_3(n1329_3)) → true, rt ∈ Ω(1 + n13293)
Generator Equations:
gen_0':s:1'4_3(0) ⇔ 0'
gen_0':s:1'4_3(+(x, 1)) ⇔ s(gen_0':s:1'4_3(x))
No more defined symbols left to analyse.
(28) LowerBoundsProof (EQUIVALENT transformation)
The lowerbound Ω(n1) was proven with the following lemma:
isZero(gen_0':s:1'4_3(+(1, n6_3))) → false, rt ∈ Ω(1 + n63)
(29) BOUNDS(n^1, INF)
(30) Obligation:
TRS:
Rules:
plus(
x,
y) →
ifPlus(
isZero(
x),
x,
inc(
y))
ifPlus(
true,
x,
y) →
p(
y)
ifPlus(
false,
x,
y) →
plus(
p(
x),
y)
times(
x,
y) →
timesIter(
0',
x,
y,
0')
timesIter(
i,
x,
y,
z) →
ifTimes(
ge(
i,
x),
i,
x,
y,
z)
ifTimes(
true,
i,
x,
y,
z) →
zifTimes(
false,
i,
x,
y,
z) →
timesIter(
inc(
i),
x,
y,
plus(
z,
y))
isZero(
0') →
trueisZero(
s(
0')) →
falseisZero(
s(
s(
x))) →
isZero(
s(
x))
inc(
0') →
s(
0')
inc(
s(
x)) →
s(
inc(
x))
inc(
x) →
s(
x)
p(
0') →
0'p(
s(
x)) →
xp(
s(
s(
x))) →
s(
p(
s(
x)))
ge(
x,
0') →
truege(
0',
s(
y)) →
falsege(
s(
x),
s(
y)) →
ge(
x,
y)
f0(
0',
y,
x) →
f1(
x,
y,
x)
f1(
x,
y,
z) →
f2(
x,
y,
z)
f2(
x,
1',
z) →
f0(
x,
z,
z)
f0(
x,
y,
z) →
df1(
x,
y,
z) →
cTypes:
plus :: 0':s:1' → 0':s:1' → 0':s:1'
ifPlus :: true:false → 0':s:1' → 0':s:1' → 0':s:1'
isZero :: 0':s:1' → true:false
inc :: 0':s:1' → 0':s:1'
true :: true:false
p :: 0':s:1' → 0':s:1'
false :: true:false
times :: 0':s:1' → 0':s:1' → 0':s:1'
timesIter :: 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
0' :: 0':s:1'
ifTimes :: true:false → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
ge :: 0':s:1' → 0':s:1' → true:false
s :: 0':s:1' → 0':s:1'
f0 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f1 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f2 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
1' :: 0':s:1'
d :: d:c
c :: d:c
hole_0':s:1'1_3 :: 0':s:1'
hole_true:false2_3 :: true:false
hole_d:c3_3 :: d:c
gen_0':s:1'4_3 :: Nat → 0':s:1'
Lemmas:
isZero(gen_0':s:1'4_3(+(1, n6_3))) → false, rt ∈ Ω(1 + n63)
inc(gen_0':s:1'4_3(n163_3)) → gen_0':s:1'4_3(+(1, n163_3)), rt ∈ Ω(1 + n1633)
ge(gen_0':s:1'4_3(n1329_3), gen_0':s:1'4_3(n1329_3)) → true, rt ∈ Ω(1 + n13293)
Generator Equations:
gen_0':s:1'4_3(0) ⇔ 0'
gen_0':s:1'4_3(+(x, 1)) ⇔ s(gen_0':s:1'4_3(x))
No more defined symbols left to analyse.
(31) LowerBoundsProof (EQUIVALENT transformation)
The lowerbound Ω(n1) was proven with the following lemma:
isZero(gen_0':s:1'4_3(+(1, n6_3))) → false, rt ∈ Ω(1 + n63)
(32) BOUNDS(n^1, INF)
(33) Obligation:
TRS:
Rules:
plus(
x,
y) →
ifPlus(
isZero(
x),
x,
inc(
y))
ifPlus(
true,
x,
y) →
p(
y)
ifPlus(
false,
x,
y) →
plus(
p(
x),
y)
times(
x,
y) →
timesIter(
0',
x,
y,
0')
timesIter(
i,
x,
y,
z) →
ifTimes(
ge(
i,
x),
i,
x,
y,
z)
ifTimes(
true,
i,
x,
y,
z) →
zifTimes(
false,
i,
x,
y,
z) →
timesIter(
inc(
i),
x,
y,
plus(
z,
y))
isZero(
0') →
trueisZero(
s(
0')) →
falseisZero(
s(
s(
x))) →
isZero(
s(
x))
inc(
0') →
s(
0')
inc(
s(
x)) →
s(
inc(
x))
inc(
x) →
s(
x)
p(
0') →
0'p(
s(
x)) →
xp(
s(
s(
x))) →
s(
p(
s(
x)))
ge(
x,
0') →
truege(
0',
s(
y)) →
falsege(
s(
x),
s(
y)) →
ge(
x,
y)
f0(
0',
y,
x) →
f1(
x,
y,
x)
f1(
x,
y,
z) →
f2(
x,
y,
z)
f2(
x,
1',
z) →
f0(
x,
z,
z)
f0(
x,
y,
z) →
df1(
x,
y,
z) →
cTypes:
plus :: 0':s:1' → 0':s:1' → 0':s:1'
ifPlus :: true:false → 0':s:1' → 0':s:1' → 0':s:1'
isZero :: 0':s:1' → true:false
inc :: 0':s:1' → 0':s:1'
true :: true:false
p :: 0':s:1' → 0':s:1'
false :: true:false
times :: 0':s:1' → 0':s:1' → 0':s:1'
timesIter :: 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
0' :: 0':s:1'
ifTimes :: true:false → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
ge :: 0':s:1' → 0':s:1' → true:false
s :: 0':s:1' → 0':s:1'
f0 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f1 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f2 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
1' :: 0':s:1'
d :: d:c
c :: d:c
hole_0':s:1'1_3 :: 0':s:1'
hole_true:false2_3 :: true:false
hole_d:c3_3 :: d:c
gen_0':s:1'4_3 :: Nat → 0':s:1'
Lemmas:
isZero(gen_0':s:1'4_3(+(1, n6_3))) → false, rt ∈ Ω(1 + n63)
inc(gen_0':s:1'4_3(n163_3)) → gen_0':s:1'4_3(+(1, n163_3)), rt ∈ Ω(1 + n1633)
Generator Equations:
gen_0':s:1'4_3(0) ⇔ 0'
gen_0':s:1'4_3(+(x, 1)) ⇔ s(gen_0':s:1'4_3(x))
No more defined symbols left to analyse.
(34) LowerBoundsProof (EQUIVALENT transformation)
The lowerbound Ω(n1) was proven with the following lemma:
isZero(gen_0':s:1'4_3(+(1, n6_3))) → false, rt ∈ Ω(1 + n63)
(35) BOUNDS(n^1, INF)
(36) Obligation:
TRS:
Rules:
plus(
x,
y) →
ifPlus(
isZero(
x),
x,
inc(
y))
ifPlus(
true,
x,
y) →
p(
y)
ifPlus(
false,
x,
y) →
plus(
p(
x),
y)
times(
x,
y) →
timesIter(
0',
x,
y,
0')
timesIter(
i,
x,
y,
z) →
ifTimes(
ge(
i,
x),
i,
x,
y,
z)
ifTimes(
true,
i,
x,
y,
z) →
zifTimes(
false,
i,
x,
y,
z) →
timesIter(
inc(
i),
x,
y,
plus(
z,
y))
isZero(
0') →
trueisZero(
s(
0')) →
falseisZero(
s(
s(
x))) →
isZero(
s(
x))
inc(
0') →
s(
0')
inc(
s(
x)) →
s(
inc(
x))
inc(
x) →
s(
x)
p(
0') →
0'p(
s(
x)) →
xp(
s(
s(
x))) →
s(
p(
s(
x)))
ge(
x,
0') →
truege(
0',
s(
y)) →
falsege(
s(
x),
s(
y)) →
ge(
x,
y)
f0(
0',
y,
x) →
f1(
x,
y,
x)
f1(
x,
y,
z) →
f2(
x,
y,
z)
f2(
x,
1',
z) →
f0(
x,
z,
z)
f0(
x,
y,
z) →
df1(
x,
y,
z) →
cTypes:
plus :: 0':s:1' → 0':s:1' → 0':s:1'
ifPlus :: true:false → 0':s:1' → 0':s:1' → 0':s:1'
isZero :: 0':s:1' → true:false
inc :: 0':s:1' → 0':s:1'
true :: true:false
p :: 0':s:1' → 0':s:1'
false :: true:false
times :: 0':s:1' → 0':s:1' → 0':s:1'
timesIter :: 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
0' :: 0':s:1'
ifTimes :: true:false → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1' → 0':s:1'
ge :: 0':s:1' → 0':s:1' → true:false
s :: 0':s:1' → 0':s:1'
f0 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f1 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
f2 :: 0':s:1' → 0':s:1' → 0':s:1' → d:c
1' :: 0':s:1'
d :: d:c
c :: d:c
hole_0':s:1'1_3 :: 0':s:1'
hole_true:false2_3 :: true:false
hole_d:c3_3 :: d:c
gen_0':s:1'4_3 :: Nat → 0':s:1'
Lemmas:
isZero(gen_0':s:1'4_3(+(1, n6_3))) → false, rt ∈ Ω(1 + n63)
Generator Equations:
gen_0':s:1'4_3(0) ⇔ 0'
gen_0':s:1'4_3(+(x, 1)) ⇔ s(gen_0':s:1'4_3(x))
No more defined symbols left to analyse.
(37) LowerBoundsProof (EQUIVALENT transformation)
The lowerbound Ω(n1) was proven with the following lemma:
isZero(gen_0':s:1'4_3(+(1, n6_3))) → false, rt ∈ Ω(1 + n63)
(38) BOUNDS(n^1, INF)