bgalvao / nodevo

An implementation of Genetic Programming in Rust.
https://docs.google.com/presentation/d/1-T-MNxm-bCozN1VtoF7VLlWRhL_eEkn-U5fpIf8s10U/edit?usp=sharing
MIT License
13 stars 1 forks source link

Implement Geometric Semantic Genetic Programming (GSGP) #2

Open bgalvao opened 7 years ago

bgalvao commented 7 years ago

implemented, but without reconstrcution ability.

I am planning on changing the enum:

enum Variation {
    Standard,
    GeometricSemantic(f32, bool)
}

to:

enum Variation {
    Standard,
    GeometricSemantic(f32, bool, GSHistory)
}

where GSHistory is a struct including Hashtables of references to individuals in the population.