@@ -1977,13 +1977,21 @@ mod bucketed_history {
1977
1977
* bucket = ( ( * bucket as u32 + * other_bucket as u32 ) / 2 ) as u16 ;
1978
1978
}
1979
1979
}
1980
+
1981
+ /// Applies decay at the given half-life to all buckets.
1982
+ fn decay ( & mut self , half_lives : f64 ) {
1983
+ let factor = ( 1024.0 * powf64 ( 0.5 , half_lives) ) as u64 ;
1984
+ for bucket in self . buckets . iter_mut ( ) {
1985
+ * bucket = ( ( * bucket as u64 ) * factor / 1024 ) as u16 ;
1986
+ }
1987
+ }
1980
1988
}
1981
1989
1982
1990
impl_writeable_tlv_based ! ( HistoricalBucketRangeTracker , { ( 0 , buckets, required) } ) ;
1983
1991
impl_writeable_tlv_based ! ( LegacyHistoricalBucketRangeTracker , { ( 0 , buckets, required) } ) ;
1984
1992
1985
1993
#[ derive( Clone , Copy ) ]
1986
- #[ repr( C ) ] // Force the fields in memory to be in the order we specify.
1994
+ #[ repr( C ) ] // Force the fields in memory to be in the order we specify.
1987
1995
pub ( super ) struct HistoricalLiquidityTracker {
1988
1996
// This struct sits inside a `(u64, ChannelLiquidity)` in memory, and we first read the
1989
1997
// liquidity offsets in `ChannelLiquidity` when calculating the non-historical score. This
@@ -2031,13 +2039,8 @@ mod bucketed_history {
2031
2039
}
2032
2040
2033
2041
pub ( super ) fn decay_buckets ( & mut self , half_lives : f64 ) {
2034
- let divisor = powf64 ( 2048.0 , half_lives) as u64 ;
2035
- for bucket in self . min_liquidity_offset_history . buckets . iter_mut ( ) {
2036
- * bucket = ( ( * bucket as u64 ) * 1024 / divisor) as u16 ;
2037
- }
2038
- for bucket in self . max_liquidity_offset_history . buckets . iter_mut ( ) {
2039
- * bucket = ( ( * bucket as u64 ) * 1024 / divisor) as u16 ;
2040
- }
2042
+ self . min_liquidity_offset_history . decay ( half_lives) ;
2043
+ self . max_liquidity_offset_history . decay ( half_lives) ;
2041
2044
self . recalculate_valid_point_count ( ) ;
2042
2045
}
2043
2046
@@ -2276,6 +2279,28 @@ mod bucketed_history {
2276
2279
) ;
2277
2280
}
2278
2281
2282
+ #[ test]
2283
+ fn historical_liquidity_bucket_decay ( ) {
2284
+ let mut bucket = HistoricalBucketRangeTracker :: new ( ) ;
2285
+ bucket. track_datapoint ( 100 , 1000 ) ;
2286
+ assert_eq ! (
2287
+ bucket. buckets,
2288
+ [
2289
+ 0u16 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 32 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 ,
2290
+ 0 , 0 , 0 , 0 , 0 , 0 , 0
2291
+ ]
2292
+ ) ;
2293
+
2294
+ bucket. decay ( 2.0 ) ;
2295
+ assert_eq ! (
2296
+ bucket. buckets,
2297
+ [
2298
+ 0u16 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 8 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 ,
2299
+ 0 , 0 , 0 , 0 , 0 , 0 , 0
2300
+ ]
2301
+ ) ;
2302
+ }
2303
+
2279
2304
#[ test]
2280
2305
fn historical_liquidity_tracker_merge ( ) {
2281
2306
let params = ProbabilisticScoringFeeParameters :: default ( ) ;
0 commit comments