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

Add RepeatN operator adapter #125

Merged
merged 1 commit into from
Feb 8, 2025
Merged

Conversation

dbalcomb
Copy link
Contributor

@dbalcomb dbalcomb commented Feb 8, 2025

This adds a new RepeatN operator adapter.

The Repeat operator adapter uses a parameter to select how many times the interior operator will be repeated. This works well for the Mutator, Recombinator and Evolver operators but the Selector implementation returns a Vec because it cannot know how many individuals will be produced at compile time. This requires users to then use the Take selector adapter to specify a const generic number in order to use the recombinators. The project should provide an alternative repeat operator that uses a constant generic instead.

This change introduces the RepeatN operator adapter that works much the same way as the Repeat operator adapter with the exception that it uses a const generic number instead of a parameter. The implementation of the Selector operator requires that the base selector return a single individual rather than multiple. This then allows it to return N individuals based on the const generic.

@dbalcomb dbalcomb added package: brace-ec Affects the `brace-ec` package change: feature A new feature labels Feb 8, 2025
@dbalcomb dbalcomb merged commit 735cce5 into main Feb 8, 2025
5 checks passed
@dbalcomb dbalcomb deleted the feature/add-repeat-n-operator branch February 8, 2025 19:44
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