Skip to content

Commit

Permalink
Merge pull request #27 from ntnu-ai-lab/docs
Browse files Browse the repository at this point in the history
Ammendments to the documentation and result.jl
  • Loading branch information
saxarona authored Feb 15, 2023
2 parents 09573e2 + 6c7aedf commit 84790d3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ makedocs(
"Mutation operators" => "mutation.md",
"Population generators" => "generators.md",
"Benchmark functions" => "benchmarks.md",
"Stats logbook" => "logbook.md",
"Reporting results" => "results.md"
"Reporting results" => "results.md",
"Logging statistics" => "logbook.md"
],
format = Documenter.HTML(prettyurls = false, mathengine = MathJax3())
)
4 changes: 2 additions & 2 deletions docs/src/results.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ Result
Additionally, some functions are included to obtain specific information about the results of an algorithm.

```@docs
optimizer
optimum
optimizer
population
iterations
f_calls
population
```
6 changes: 3 additions & 3 deletions src/result.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@


"""
The result of an algorithm. The result contains information about the optimizer ``x^*``,
its evaluation ``f(x^*)``, the last state of the population, the number of iterations and
the number of function calls.
The result of an algorithm. The result contains information about the optimum ``f(x^*)``,
the optimizer ``x^*``, the population, the number of iterations and the number of
function calls.
"""
struct Result
fxstar # optimum
Expand Down

0 comments on commit 84790d3

Please sign in to comment.