You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From my basic knowledge on this subject, cross over between fit individuals is a crucial part on this algorithm, but I don't see the method on the Individual trait. Why was this choice made?
The text was updated successfully, but these errors were encountered:
darwin-rs implements an evolutionary algorithm which is more general than a genetic algorithm.
With genetic algorithms you have a genetic sequence data structure which has cross over and other stuff. Evolutionary algorithms just mutate individuals and calculate a fittness for each individual.
Indirectly you can have a cross over but that happens by chance and depends on the actual mutation.
There are other rust based gentic algorithm crates that implement cross over, for example:
From my basic knowledge on this subject, cross over between fit individuals is a crucial part on this algorithm, but I don't see the method on the Individual trait. Why was this choice made?
The text was updated successfully, but these errors were encountered: