Initial Problem

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

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₀) :|: X₀+1 ≤ 0
t₄: l0(X₀) → l1(1+X₀) :|: 0 ≤ X₀

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