From 0a5e17195e9bab0a4fdc89d125462ea29e9244c4 Mon Sep 17 00:00:00 2001 From: Lee Spector Date: Sun, 22 Nov 2020 16:30:25 -0500 Subject: [PATCH] Scale UMAD deletion rate from addion rate for size neutrality --- 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 5df807a..03e2837 100755 --- a/src/propeller/variation.cljc +++ b/src/propeller/variation.cljc @@ -48,5 +48,5 @@ (uniform-deletion (uniform-addition (:plushy (selection/select-parent pop argmap)) (:instructions argmap) (:umad-rate argmap)) - (:umad-rate argmap)) + (/ 1 (+ (/ 1 (:umad-rate argmap)) 1))) :else (:plushy (selection/select-parent pop argmap))))})