Searched refs:decay_array (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/bgpd/
H A Dbgp_damp.h94 double *decay_array; member in struct:bgp_damp_config
H A Dbgp_damp.c106 return (int) (penalty * damp->decay_array[i]);
400 damp->decay_array = XMALLOC (MTYPE_BGP_DAMP_ARRAY,
402 damp->decay_array[0] = 1.0;
403 damp->decay_array[1] = exp ((1.0/((double)damp->half_life/DELTA_T)) * log(0.5));
407 damp->decay_array[i] = damp->decay_array[i-1] * damp->decay_array[1];
471 XFREE (MTYPE_BGP_DAMP_ARRAY, damp->decay_array);
567 reuse_time = (int) (DELTA_T * ((log((double)damp->reuse_limit/penalty))/(log(damp->decay_array[1]))));

Completed in 59 milliseconds