From d0d0427dcf898a1138fc700fffbdbd78f7766943 Mon Sep 17 00:00:00 2001 From: Lee Spector Date: Thu, 30 Nov 2023 19:06:04 -0500 Subject: [PATCH] Fix typo that spoiled behavioral diversity calculations --- src/propeller/problems/PSB2/find_pair.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/propeller/problems/PSB2/find_pair.cljc b/src/propeller/problems/PSB2/find_pair.cljc index 8cefa7b..e6d4d1f 100644 --- a/src/propeller/problems/PSB2/find_pair.cljc +++ b/src/propeller/problems/PSB2/find_pair.cljc @@ -77,7 +77,7 @@ (math/abs (- (second correct-output) output-2))))) correct-outputs outputs-1 outputs-2)] (assoc individual - :behavior outputs + :behaviors outputs :errors errors :total-error #?(:clj (apply +' errors) :cljs (apply + errors)))))