From feb5a52d25a220fc158c26a8dab9b6c04e2b7d55 Mon Sep 17 00:00:00 2001 From: Lee Spector Date: Tue, 26 Dec 2023 15:40:25 -0500 Subject: [PATCH] Explicitly require clojure.set --- src/propeller/tools/metrics.cljc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/propeller/tools/metrics.cljc b/src/propeller/tools/metrics.cljc index 4572d62..db48c32 100755 --- a/src/propeller/tools/metrics.cljc +++ b/src/propeller/tools/metrics.cljc @@ -1,6 +1,7 @@ (ns propeller.tools.metrics "Functions to measure things." - (:require [propeller.tools.math :as math])) + (:require [clojure.set] + [propeller.tools.math :as math])) (defn argmins "returns the indice(s) of the minimum value of a list. Could be more efficient, probably"