Implement population traits for Evaluated
individual
#130
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.
This implements additional traits for the
Evaluated
individual type.The
Evaluated
individual, previously calledScored
, 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 ofIndividual
which may need many different trait implementations to support all of the different operators. However, evenEvaluated
does not implement enough traits to be used everywhere. In particular it cannot be used withGenerator::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 thePopulate
generator. Specifically, this implements bothPopulation
andTryFromIterator
. Various individuals such asVec
already implement bothIndividual
andPopulation
so this isn't anything new. The type is still primarily an individual but as thePopulation
trait is used in place of a genericCollection
trait it needs the implementation. TheTryFromIterator
trait is also a requirement of thePopulate
generator so it is also implemented.