From 4508e87a57c54675ac9d94818ea5e0f4c0f7d4e6 Mon Sep 17 00:00:00 2001 From: Will Hawkins Date: Sat, 5 Nov 2022 20:37:48 -0400 Subject: [Refactor] Rename/update MovingAverage to MathematicalSeries We want the MovingAverage functionality to be more generic and useful than just doing a moving average calculation. The new functionality allows for the calculation of the standard deviation and supports a generic type (so it can be used with integers and floats). --- go.mod | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'go.mod') diff --git a/go.mod b/go.mod index c017675..3956ad9 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,10 @@ go 1.18 require ( golang.org/x/net v0.0.0-20220225172249-27dd8689420f - golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 + golang.org/x/sys v0.1.0 ) -require golang.org/x/text v0.3.7 // indirect +require ( + golang.org/x/exp v0.0.0-20221031165847-c99f073a8326 + golang.org/x/text v0.3.7 // indirect +) -- cgit v1.2.3