Rename :bmx-rate to :bmx-exchange-rate, which is more descriptive
This commit is contained in:
parent
de5aeabd5e
commit
2fa6eb5671
@ -311,6 +311,6 @@
|
|||||||
:bmx 0
|
:bmx 0
|
||||||
:bmx-umad 1}
|
:bmx-umad 1}
|
||||||
:single-thread-mode false
|
:single-thread-mode false
|
||||||
:bmx-rate 0.1
|
:bmx-exchange-rate 0.1
|
||||||
:bmx-enrichment 10}
|
:bmx-enrichment 10}
|
||||||
(apply hash-map (map #(if (string? %) (read-string %) %) args)))))
|
(apply hash-map (map #(if (string? %) (read-string %) %) args)))))
|
||||||
|
@ -183,7 +183,7 @@ The function `new-individual` returns a new individual produced by selection and
|
|||||||
(selection/select-parent pop argmap))
|
(selection/select-parent pop argmap))
|
||||||
plushy1 (:plushy parent1)
|
plushy1 (:plushy parent1)
|
||||||
plushy2 (:plushy parent2)
|
plushy2 (:plushy parent2)
|
||||||
rate (utils/onenum (or (:bmx-rate argmap) 0.5))]
|
rate (utils/onenum (or (:bmx-exchange-rate argmap) 0.5))]
|
||||||
(bmx plushy1 plushy2 rate))
|
(bmx plushy1 plushy2 rate))
|
||||||
;
|
;
|
||||||
:umad ;; uniform mutation by addition and deletion, see uniform-deletion for the
|
:umad ;; uniform mutation by addition and deletion, see uniform-deletion for the
|
||||||
@ -205,8 +205,8 @@ The function `new-individual` returns a new individual produced by selection and
|
|||||||
(selection/select-parent pop argmap))
|
(selection/select-parent pop argmap))
|
||||||
plushy1 (:plushy parent1)
|
plushy1 (:plushy parent1)
|
||||||
plushy2 (:plushy parent2)
|
plushy2 (:plushy parent2)
|
||||||
bmx-rate (utils/onenum (or (:bmx-rate argmap) 0.5))]
|
bmx-exchange-rate (utils/onenum (or (:bmx-exchange-rate argmap) 0.5))]
|
||||||
(bmx plushy1 plushy2 bmx-rate))
|
(bmx plushy1 plushy2 bmx-exchange-rate))
|
||||||
(uniform-addition (:instructions argmap) umad-rate)
|
(uniform-addition (:instructions argmap) umad-rate)
|
||||||
(uniform-deletion umad-rate)))
|
(uniform-deletion umad-rate)))
|
||||||
;
|
;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user