Initial Problem

Start: l0
Program_Vars: X₀, X₁
Temp_Vars: C
Locations: l0, l1
Transitions:
t₀: l0(X₀, X₁) → l1(X₀-1, C) :|: 0 ≤ X₀
t₁: l0(X₀, X₁) → l1(X₀, C) :|: X₀+1 ≤ 0

Preprocessing

Eliminate variables {C,X₁} that do not contribute to the problem

Problem after Preprocessing

Start: l0
Program_Vars: X₀
Temp_Vars:
Locations: l0, l1
Transitions:
t₂: l0(X₀) → l1(X₀-1) :|: 0 ≤ X₀
t₃: l0(X₀) → l1(X₀) :|: X₀+1 ≤ 0

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