39.30 model_0/increment_prob_of_index.h

/* Incrementa la probabilidad del símbolo asociado a "index". */  
void increment_prob_of_index() {  
  prob[index]++;  
  while(index>0) {  
    cum_prob[--index]++;  
  }  
}