Added NSGAII implementation#89
Merged
sandybrownlee merged 6 commits intogintool:masterfrom Oct 26, 2022
Merged
Conversation
sandybrownlee
requested changes
Sep 14, 2022
Collaborator
sandybrownlee
left a comment
There was a problem hiding this comment.
Thanks very much for submitting this PR! A multiobjective search has been on my to-do list for a long time. I have three requests before acceptance:
- can you please pull the latest changes from gin master; we just fixed a bug that (I think) is causing your build to fail
- can put the new algorithm and supporting classes into a gin.algorithm.nsgaii package so it's not all in util
- (optional - but very helpful) can you suggest something we can add to the README to show users how it works. Can just be with the triangle example or a variant.
Thanks!
sandybrownlee
approved these changes
Oct 26, 2022
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added an implementation of the NSGAII algorithm.