From 09d5455da39f1ddc60c9dafc70f8c436616e4cb8 Mon Sep 17 00:00:00 2001 From: Lee Spector Date: Tue, 8 Dec 2020 12:21:40 -0500 Subject: [PATCH] Remove extraneous argmap argument --- src/propeller/variation.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/propeller/variation.cljc b/src/propeller/variation.cljc index 7c2acd3..1c01464 100755 --- a/src/propeller/variation.cljc +++ b/src/propeller/variation.cljc @@ -18,7 +18,7 @@ (defn diploid-crossover "Crosses over two individuals using uniform crossover. Pads shorter one." - [plushy-a plushy-b argmap] + [plushy-a plushy-b] (let [plushy-a (partition 2 plushy-a) plushy-b (partition 2 plushy-b) shorter (min-key count plushy-a plushy-b)