Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement population traits for Evaluated individual #130

Merged
merged 3 commits into from
Feb 9, 2025

Conversation

dbalcomb
Copy link
Contributor

@dbalcomb dbalcomb commented Feb 9, 2025

This implements additional traits for the Evaluated individual type.

The Evaluated individual, previously called Scored, was introduced as the default way to associated any individual with a separate fitness value. This allows users to use this type instead of writing a custom implementation of Individual which may need many different trait implementations to support all of the different operators. However, even Evaluated does not implement enough traits to be used everywhere. In particular it cannot be used with Generator::populate because although the inner genome may be a population the individual itself is not.

This change introduces new trait implementations for the Evaluated type to support the Populate generator. Specifically, this implements both Population and TryFromIterator. Various individuals such as Vec already implement both Individual and Population so this isn't anything new. The type is still primarily an individual but as the Population trait is used in place of a generic Collection trait it needs the implementation. The TryFromIterator trait is also a requirement of the Populate generator so it is also implemented.

@dbalcomb dbalcomb added package: brace-ec Affects the `brace-ec` package change: feature A new feature labels Feb 9, 2025
@dbalcomb dbalcomb merged commit e030007 into main Feb 9, 2025
5 checks passed
@dbalcomb dbalcomb deleted the feature/add-evaluated-trait-impls branch February 9, 2025 11:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
change: feature A new feature package: brace-ec Affects the `brace-ec` package
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant