diff --git a/docs/Adding_Selection_Method.html b/docs/Adding_Selection_Method.html index d5ae63a..6c78862 100644 --- a/docs/Adding_Selection_Method.html +++ b/docs/Adding_Selection_Method.html @@ -4,19 +4,17 @@
  1. Define a selection method function in propeller.selection that selects an individual from the population
  2. Add the selection method in propeller.selection/select-parent under the case call:
  3. -
+
 (defn select-parent
  "Selects a parent from the population using the specified method."
  [pop argmap]
  (case (:parent-selection argmap)
  :new-selection-method (new-selection-method )))
- ```
-3. When runnning a problem, specify the selection method in `:parent-selection`. 
-For example:
- ```
- lein run -m propeller.problems.simple-regression :parent-selection :new-selection-method"
- ```
-
-
 
+ +
  • When runnning a problem, specify the selection method in :parent-selection. For example: +
    lein run -m propeller.problems.simple-regression :parent-selection :new-selection-method"
    +
    +
  • + \ No newline at end of file