Initial Problem

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

Preprocessing

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

Found invariant 1 ≤ X₀ for location f300

Problem after Preprocessing

Start: f3
Program_Vars: X₀
Temp_Vars:
Locations: f2, f3, f300
Transitions:
t₅: f2(X₀) → f2(X₀-1) :|: X₀ ≤ 1
t₆: f2(X₀) → f300(X₀-1) :|: 2 ≤ X₀
t₇: f3(X₀) → f2(X₀)

Found invariant 1 ≤ X₀ for location f300

Found invariant X₀ ≤ 0 for location f2_v1

All Bounds

Timebounds

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

Costbounds

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

Sizebounds

t₆, X₀: X₀ {O(n)}
t₇, X₀: X₀ {O(n)}