We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
permissible_values
permissible_values in Genome should be a list of arrays (https://github.com/Happy-Algorithms-League/hal-cgp/blob/master/cgp/genome.py#L107). However, it seems to be a list of scalars and arrays (e.g.,https://github.com/Happy-Algorithms-League/hal-cgp/blob/master/cgp/genome.py#L189 vs https://github.com/Happy-Algorithms-League/hal-cgp/blob/master/cgp/genome.py#L198).
Genome
This causes problems at other points in the code (e.g., Genome.mutate) and should be fixed. Ugh, if only we had strict typing. ;)
Genome.mutate
The text was updated successfully, but these errors were encountered:
jakobj
Successfully merging a pull request may close this issue.
permissible_values
inGenome
should be a list of arrays (https://github.com/Happy-Algorithms-League/hal-cgp/blob/master/cgp/genome.py#L107). However, it seems to be a list of scalars and arrays (e.g.,https://github.com/Happy-Algorithms-League/hal-cgp/blob/master/cgp/genome.py#L189 vs https://github.com/Happy-Algorithms-League/hal-cgp/blob/master/cgp/genome.py#L198).This causes problems at other points in the code (e.g.,
Genome.mutate
) and should be fixed. Ugh, if only we had strict typing. ;)The text was updated successfully, but these errors were encountered: