Initial Problem

Start: l0
Program_Vars: X₀, X₁, X₂
Temp_Vars: D, E
Locations: l0, l1, l2
Transitions:
t₀: l0(X₀, X₁, X₂) → l1(0, 0, X₂)
t₁: l1(X₀, X₁, X₂) → l1(X₀+1, X₁+2, D+E)
t₂: l1(X₀, X₁, X₂) → l2(X₀, X₁, X₂)

Preprocessing

Eliminate variables {D,E,X₀,X₁,X₂} that do not contribute to the problem

Problem after Preprocessing

Start: l0
Program_Vars:
Temp_Vars:
Locations: l0, l1, l2
Transitions:
t₆: l0 → l1
t₇: l1 → l1
t₈: l1 → l2

All Bounds

Timebounds

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

Costbounds

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

Sizebounds