Explicitly require clojure.set

This commit is contained in:
Lee Spector 2023-12-26 15:40:25 -05:00
parent 77b160e454
commit feb5a52d25

View File

@ -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"