diff options
| author | Will Hawkins <[email protected]> | 2023-01-27 22:06:10 -0500 |
|---|---|---|
| committer | Will Hawkins <[email protected]> | 2023-01-27 22:06:10 -0500 |
| commit | c8350c13a09b8c19656cd32a065b69693b6117c5 (patch) | |
| tree | 083f345217d7f9a4d2136078f830b4887c9715e4 /constants/constants.go | |
| parent | b7bc5fa7dd75b8aa0bc3be22b1b3deab1979cd96 (diff) | |
[FEATURE] Finalize implementation of rev3 of the draft
Diffstat (limited to 'constants/constants.go')
| -rw-r--r-- | constants/constants.go | 6 |
1 files changed, 3 insertions, 3 deletions
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 |
