Files
math/continuous_averager.go
T
Zach Kelling fd27f2ecb0 Reorganize math package into subpackages
- Create math/big for big.Int utilities (HexOrDecimal256, U256, parsing)
- Create math/safe for overflow-safe arithmetic (SafeAdd, SafeMul, etc.)
- Move averager files to root package level
- Add re-exports in root package for backwards compatibility
- Update README with new package structure documentation
- Remove old math/meter directory (consolidated elsewhere)
- Remove redundant math/ subdirectory structure
2026-01-03 18:22:33 -08:00

73 lines
2.0 KiB
Go

// Copyright (C) 2019-2024, Lux Industries Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package math
import (
"math"
"time"
)
var convertEToBase2 = math.Log(2)
type continuousAverager struct {
halflife float64
weightedSum float64
normalizer float64
lastUpdated time.Time
}
// NewUninitializedAverager creates a new averager with the given halflife. If
// [Read] is called before [Observe], the zero value will be returned. When
// [Observe] is called the first time, the averager will be initialized with
// [value] at that time.
func NewUninitializedAverager(halfLife time.Duration) Averager {
// Use 0 as the initialPrediction and 0 as the currentTime, so that when the
// first observation occurs (at a non-zero time) the initial prediction's
// weight will become negligible.
return NewAverager(0, halfLife, time.Time{})
}
func NewAverager(
initialPrediction float64,
halflife time.Duration,
currentTime time.Time,
) Averager {
return &continuousAverager{
halflife: float64(halflife) / convertEToBase2,
weightedSum: initialPrediction,
normalizer: 1,
lastUpdated: currentTime,
}
}
func (a *continuousAverager) Observe(value float64, currentTime time.Time) {
delta := a.lastUpdated.Sub(currentTime)
switch {
case delta < 0:
// If the times are called in order, scale the previous values to keep the
// sizes manageable
newWeight := math.Exp(float64(delta) / a.halflife)
a.weightedSum = value + newWeight*a.weightedSum
a.normalizer = 1 + newWeight*a.normalizer
a.lastUpdated = currentTime
case delta == 0:
// If this is called multiple times at the same wall clock time, no
// scaling needs to occur
a.weightedSum += value
a.normalizer++
default:
// If the times are called out of order, don't scale the previous values
newWeight := math.Exp(float64(-delta) / a.halflife)
a.weightedSum += newWeight * value
a.normalizer += newWeight
}
}
func (a *continuousAverager) Read() float64 {
return a.weightedSum / a.normalizer
}