From c8350c13a09b8c19656cd32a065b69693b6117c5 Mon Sep 17 00:00:00 2001 From: Will Hawkins Date: Fri, 27 Jan 2023 22:06:10 -0500 Subject: [FEATURE] Finalize implementation of rev3 of the draft --- constants/constants.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'constants') diff --git a/constants/constants.go b/constants/constants.go index 99de22d..1f3ed57 100644 --- a/constants/constants.go +++ b/constants/constants.go @@ -25,10 +25,10 @@ var ( // The number of previous instantaneous measurements to consider when generating the so-called // instantaneous moving averages of a measurement. - InstantaneousThroughputMeasurementCount int = 4 - InstantaneousProbeMeasurementCount int = 1 + InstantaneousThroughputMeasurementCount uint64 = 4 + InstantaneousProbeMeasurementCount uint64 = 1 // The number of instantaneous moving averages to consider when determining stability. - InstantaneousMovingAverageStabilityCount int = 4 + InstantaneousMovingAverageStabilityCount uint64 = 4 // The standard deviation cutoff used to determine stability among the K preceding moving averages // of a measurement (as a percentage of the mean). StabilityStandardDeviation float64 = 5.0 -- cgit v1.2.3