Skip to content

Commit

Permalink
docs update
Browse files Browse the repository at this point in the history
  • Loading branch information
wildart committed Jun 23, 2020
1 parent 4649476 commit 9e5a18a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions docs/src/mutation.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,23 +29,25 @@ gaussian(::AnisotropicStrategy)

## Genetic Algorithm

List of the binary mutation operations:

### Binary Mutations

```@docs
flip
bitinversion
```

List of the real valued mutation operations:
### Real-valued Mutations


```@docs
uniform(::Real)
gaussian(::Real)
domainrange
```

List of the combinatorial mutation operations (applicable to binary vectors):
### Combinatorial Mutations

*Note: The combinatorial mutation operations are applicable to binary vectors.*

```@docs
inversion
Expand Down
2 changes: 1 addition & 1 deletion docs/src/selection.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ tournament selection, rank selection, steady state selection and some others.

## Selection Interface

All selection algorithms have following call interface `selection(fintess, N)` where `fintess` is the vector of population fitness values, of size ``M``, and ``N`` is the number of selected individuals. The selection function returns a vector of integer indexes of selected individuals, of size ``N`` with indexes in range ``[1,M]``.
All selection algorithms have following call interface `selection(fitness, N)` where `fitness` is the vector of population fitness values, of size ``M``, and ``N`` is the number of selected individuals. The selection function returns a vector of integer indexes of selected individuals, of size ``N`` with indexes in range ``[1,M]``.

**Note:** Some of the selection algorithms implemented as function closures, in order to provide additional parameters to the specified above selection interface.

Expand Down

0 comments on commit 9e5a18a

Please sign in to comment.