Skip to content

Commit

Permalink
better documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasWeise committed Nov 26, 2023
1 parent ff49d78 commit 2db0c6c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
13 changes: 12 additions & 1 deletion moptipy/evaluation/frequency.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
"""Load the encounter frequencies or the set of different objective values."""
"""
Load the encounter frequencies or the set of different objective values.
This tool can load the different objective values that exist or are
encountered by optimization processes. This may be useful for statistical
evaluations or fitness landscape analyses.
This tool is based on code developed by Mr. Tianyu LIANG (梁天宇),
MSc student at the Institute of Applied Optimization (IAO,
应用优化研究所) of the School of Artificial Intelligence and
Big Data (人工智能与大数据学院) of Hefei University (合肥学院).
"""
import argparse
import os.path
from collections import Counter
Expand Down
2 changes: 1 addition & 1 deletion moptipy/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
from typing import Final

#: the version string of `moptipy`
__version__: Final[str] = "0.9.100"
__version__: Final[str] = "0.9.101"

0 comments on commit 2db0c6c

Please sign in to comment.