Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ajnebro committed Jul 9, 2024
1 parent 2dc65a4 commit e6fb61d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/multiobjective/nsgaii/nsgaii_standard_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
problem=problem,
population_size=100,
offspring_population_size=100,
mutation=PolynomialMutation(probability=1.0 * 1.0 / problem.number_of_variables(), distribution_index=20),
mutation=PolynomialMutation(probability=1.0 / problem.number_of_variables(), distribution_index=20),
crossover=SBXCrossover(probability=1.0, distribution_index=20),
termination_criterion=StoppingByEvaluations(max_evaluations=max_evaluations),
)
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ version = "1.7.1"
description = "Python version of the jMetal framework"
readme = "README.md"
authors = [
{name = "Antonio J. Nebro", email = "ajnebro@uma.es"}
{name = "Antonio J. Nebro", email = "ajnebro@uma.es"},
{name = "Antonio Benítez", email = "antonio.b@uma.es"}
]

maintainers = [
{name = "Antonio J. Nebro", email = "ajnebro@uma.es"},
]
Expand Down

0 comments on commit e6fb61d

Please sign in to comment.