Skip to content

Commit 57411b3

Browse files
committed
minor update
1 parent 7e8ba05 commit 57411b3

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

docs/src/api.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -146,50 +146,50 @@ Metaheuristics.GA_reproduction
146146
Metaheuristics.GA_reproduction_half
147147
```
148148

149-
```@doc
149+
```@docs
150150
RandomInBounds
151151
```
152152

153-
```@doc
153+
```@docs
154154
RandomBinary
155155
```
156156

157-
```@doc
157+
```@docs
158158
RandomPermutation
159159
```
160160

161-
```@doc
161+
```@docs
162162
TournamentSelection
163163
```
164-
```@doc
164+
```@docs
165165
RouletteWheelSelection
166166
```
167167

168-
```@doc
168+
```@docs
169169
UniformCrossover
170170
```
171-
```@doc
171+
```@docs
172172
OrderCrossover
173173
```
174174

175-
```@doc
175+
```@docs
176176
BitFlipMutation
177177
```
178178

179-
```@doc
179+
```@docs
180180
SlightMutation
181181
```
182182

183183

184-
```@doc
184+
```@docs
185185
PolynomialMutation
186186
```
187187

188-
```@doc
188+
```@docs
189189
GenerationalReplacement
190190
```
191191

192-
```@doc
192+
```@docs
193193
ElitistReplacement
194194
```
195195

src/PerformanceIndicators/epsilon_indicator.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ _epsilon(A, B, j) = [maximum(A[i,:] ./ (B[j,:])) for i in 1:size(A, 1)]
33
"""
44
epsilon_indicator(A, B)
55
6-
Computes the ε-indicator for `A` and `B` (be can be the Pareto-optimal front).
6+
Computes the ε-indicator for non-dominated sets `A` and `B`.
77
It is assumed that all values in `A` and `B` are positive. If negative,
88
the sets are translated to positive values.
99
@@ -15,7 +15,7 @@ the sets are translated to positive values.
1515
- `epsilon_indicator(A, B) > 1` means that B is better than A.
1616
- Values closer to 1 are preferable.
1717
18-
### Example
18+
### Examples
1919
2020
```julia-repl
2121
julia> A1 = [4 7;5 6;7 5; 8 4.0; 9 2];

0 commit comments

Comments
 (0)