Initial Problem

Start: f0
Program_Vars: Arg_0, Arg_1, Arg_2
Temp_Vars: D, E, F
Locations: f0, f1
Transitions:
0:f0(Arg_0,Arg_1,Arg_2) -> f1(Arg_0,Arg_1,Arg_2)
1:f1(Arg_0,Arg_1,Arg_2) -> f1(E,F,Arg_1):|:1<=Arg_0 && 1<=D && Arg_1<=0 && 0<=Arg_1

Preprocessing

Eliminate variables {Arg_2} that do not contribute to the problem

Problem after Preprocessing

Start: f0
Program_Vars: Arg_0, Arg_1
Temp_Vars: D, E, F
Locations: f0, f1
Transitions:
5:f0(Arg_0,Arg_1) -> f1(Arg_0,Arg_1)
6:f1(Arg_0,Arg_1) -> f1(E,F):|:1<=Arg_0 && 1<=D && Arg_1<=0 && 0<=Arg_1

All Bounds

Timebounds

Overall timebound:inf {Infinity}
5: f0->f1: 1 {O(1)}
6: f1->f1: inf {Infinity}

Costbounds

Overall costbound: inf {Infinity}
5: f0->f1: 1 {O(1)}
6: f1->f1: inf {Infinity}

Sizebounds

5: f0->f1, Arg_0: Arg_0 {O(n)}
5: f0->f1, Arg_1: Arg_1 {O(n)}