Skip to content

Commit 8cca589

Browse files
committed
Update README.md
1 parent dd67cb5 commit 8cca589

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ The current release of jMetalPy (v1.9.0) contains the following components:
127127

128128
## Changelog
129129
* [Current]
130+
* Added the multi-objective TSP problem
130131
* Added the Average Hausdorff Distance (AHD) quality indicator.
131132
* Added the ZDT benchmark problems. Contributed by Nicolás Rodríguez Uribe.
132133
* [1.9.0]

examples/multiobjective/nsgaii/multiobjective_tsp_nsgaii.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def main(max_evaluations: int):
5757

5858
if __name__ == "__main__":
5959
parser = argparse.ArgumentParser()
60-
parser.add_argument("--max-evals", type=int, default=25000, help="Maximum number of evaluations")
60+
parser.add_argument("--max-evals", type=int, default=250000, help="Maximum number of evaluations")
6161
args = parser.parse_args()
6262

6363
main(args.max_evals)

0 commit comments

Comments
 (0)