
Preprocessing Cost Relations
=====================================

#### Computed strongly connected components 
0. recursive  : [g/7,g1/7]
1. non_recursive  : [exit_location/1]
2. recursive  : [h/2]
3. non_recursive  : [h_loop_cont/2]
4. non_recursive  : [g_loop_cont/5]
5. non_recursive  : [f/4]

#### Obtained direct recursion through partial evaluation 
0. SCC is partially evaluated into g/7
1. SCC is completely evaluated into other SCCs
2. SCC is partially evaluated into h/2
3. SCC is completely evaluated into other SCCs
4. SCC is partially evaluated into g_loop_cont/5
5. SCC is partially evaluated into f/4

Control-Flow Refinement of Cost Relations
=====================================

### Specialization of cost equations g/7 
* CE 3 is refined into CE [9] 
* CE 4 is refined into CE [10] 
* CE 2 is refined into CE [11] 


### Cost equations --> "Loop" of g/7 
* CEs [11] --> Loop 9 
* CEs [9] --> Loop 10 
* CEs [10] --> Loop 11 

### Ranking functions of CR g(A,B,C,D,E,F,G) 
* RF of phase [9]: [A]

#### Partial ranking functions of CR g(A,B,C,D,E,F,G) 
* Partial RF of phase [9]:
  - RF of loop [9:1]:
    A


### Specialization of cost equations h/2 
* CE 8 is refined into CE [12] 
* CE 7 is refined into CE [13] 


### Cost equations --> "Loop" of h/2 
* CEs [13] --> Loop 12 
* CEs [12] --> Loop 13 

### Ranking functions of CR h(B,D) 
* RF of phase [12]: [B]

#### Partial ranking functions of CR h(B,D) 
* Partial RF of phase [12]:
  - RF of loop [12:1]:
    B


### Specialization of cost equations g_loop_cont/5 
* CE 6 is refined into CE [14,15] 
* CE 5 is refined into CE [16] 


### Cost equations --> "Loop" of g_loop_cont/5 
* CEs [15] --> Loop 14 
* CEs [14] --> Loop 15 
* CEs [16] --> Loop 16 

### Ranking functions of CR g_loop_cont(A,B,C,D,E) 

#### Partial ranking functions of CR g_loop_cont(A,B,C,D,E) 


### Specialization of cost equations f/4 
* CE 1 is refined into CE [17,18,19,20,21,22] 


### Cost equations --> "Loop" of f/4 
* CEs [17,19,20] --> Loop 17 
* CEs [21,22] --> Loop 18 
* CEs [18] --> Loop 19 

### Ranking functions of CR f(A,B,C,D) 

#### Partial ranking functions of CR f(A,B,C,D) 


Computing Bounds
=====================================

#### Cost of chains of g(A,B,C,D,E,F,G):
* Chain [[9],11]: 1*it(9)+0
  Such that:it(9) =< A

  with precondition: [D=2,A>=1,B>=2*C] 

* Chain [[9],10]: 1*it(9)+0
  Such that:it(9) =< A

  with precondition: [D=3,E=0,F=2*G,A>=1,B>=2*C] 

* Chain [11]: 0
  with precondition: [D=2,B>=2*C] 

* Chain [10]: 0
  with precondition: [D=3,A=E,B=F,C=G,0>=A,B>=2*C] 


#### Cost of chains of h(B,D):
* Chain [[12],13]: 1*it(12)+0
  Such that:it(12) =< B

  with precondition: [D=2,B>=1] 

* Chain [13]: 0
  with precondition: [D=2] 


#### Cost of chains of g_loop_cont(A,B,C,D,E):
* Chain [16]: 0
  with precondition: [A=2] 

* Chain [15]: 0
  with precondition: [A=3] 

* Chain [14]: 1*s(1)+0
  Such that:s(1) =< C

  with precondition: [A=3,C>=1] 


#### Cost of chains of f(A,B,C,D):
* Chain [19]: 0
  with precondition: [] 

* Chain [18]: 1
  with precondition: [0>=A] 

* Chain [17]: 3*s(3)+1*s(6)+0
  Such that:aux(1) =< A
s(3) =< aux(1)

  with precondition: [A>=1] 


Closed-form bounds of f(A,B,C,D): 
-------------------------------------
* Chain [19] with precondition: [] 
    - Upper bound: 0 
    - Complexity: constant 
* Chain [18] with precondition: [0>=A] 
    - Upper bound: 1 
    - Complexity: constant 
* Chain [17] with precondition: [A>=1] 
    - Upper bound: inf 
    - Complexity: infinity 

### Maximum cost of f(A,B,C,D): inf 
Asymptotic class: infinity 
* Total analysis performed in 49 ms.

