Initial Problem

Start: l0
Program_Vars: X₀, X₁, X₂
Temp_Vars: D, E, F
Locations: l0, l1
Transitions:
t₀: l0(X₀, X₁, X₂) → l1(X₀, X₁, X₂)
t₁: l1(X₀, X₁, X₂) → l1(E, F, X₁) :|: 1 ≤ X₀ ∧ 1 ≤ D ∧ X₁ ≤ 0 ∧ 0 ≤ X₁

Preprocessing

Eliminate variables {X₂} that do not contribute to the problem

Problem after Preprocessing

Start: l0
Program_Vars: X₀, X₁
Temp_Vars: D, E, F
Locations: l0, l1
Transitions:
t₅: l0(X₀, X₁) → l1(X₀, X₁)
t₆: l1(X₀, X₁) → l1(E, F) :|: 1 ≤ X₀ ∧ 1 ≤ D ∧ X₁ ≤ 0 ∧ 0 ≤ X₁

Analysing control-flow refined program

CFR did not improve the program. Rolling back

All Bounds

Timebounds

Overall timebound:inf {Infinity}
t₅: 1 {O(1)}
t₆: inf {Infinity}

Costbounds

Overall costbound: inf {Infinity}
t₅: 1 {O(1)}
t₆: inf {Infinity}

Sizebounds

t₅, X₀: X₀ {O(n)}
t₅, X₁: X₁ {O(n)}