Interesting. Is there a way to do this in a 3d physics based simulation environment. It would be cool to see if a genetic algorithm could be used to discover new aerodynamic configurations for drones/other platforms in simulation. I don't know enough about genetic algorithms to say for certain. Anyone have any reference materials for someone that's just started looking into this?
I’ve done a bunch of playing around with NEAT, a variant of GA using NNs, for various things. Typically for GA stuff though you have a genome, aka some set of instructions for an individual, a fitness function for scoring them, and then you generate new individuals from those genomes for the next population.
Original Paper on NEAT here:
https://nn.cs.utexas.edu/downloads/papers/stanley.ec02.pdf
Lots of good resources here.