Initial Problem

Start: f3
Program_Vars: X₀, X₁
Temp_Vars: C
Locations: f0, f3
Transitions:
t₁: f0(X₀, X₁) → f0(1+X₀, C) :|: 1 ≤ C
t₂: f0(X₀, X₁) → f0(X₀-1, C) :|: C ≤ 0
t₀: f3(X₀, X₁) → f0(2, X₁)

Preprocessing

Eliminate variables [X₀; X₁] that do not contribute to the problem

Problem after Preprocessing

Start: f3
Program_Vars:
Temp_Vars: C
Locations: f0, f3
Transitions:
t₅: f0 → f0 :|: 1 ≤ C
t₆: f0 → f0 :|: C ≤ 0
t₇: f3 → f0

All Bounds

Timebounds

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

Costbounds

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

Sizebounds