Initial Problem

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

Preprocessing

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

Problem after Preprocessing

Start: l0
Program_Vars:
Temp_Vars: D
Locations: l0, l1
Transitions:
t₂: l0 → l1 :|: D ≤ 99
t₃: l0 → l1

All Bounds

Timebounds

Overall timebound:2 {O(1)}
t₂: 1 {O(1)}
t₃: 1 {O(1)}

Costbounds

Overall costbound: 2 {O(1)}
t₂: 1 {O(1)}
t₃: 1 {O(1)}

Sizebounds