All Questions
Tagged with genetic-algorithm clojure
3 questions
4
votes
0
answers
92
views
Macro that allows for Linear Problem notation to create Genetic Algorithm fitness functions
As a side toy project for my Genetic Algorithm, I decided to try to create a macro that lets you use maximize: ... subject to: ... linear problem notation to ...
3
votes
1
answer
115
views
A running gene crossover function for a Genetic Algorithm
I'm writing a Genetic Algorithm, and need to write a function that crosses two gene sequences. Basically, I want it to work like this:
...
2
votes
2
answers
586
views
PMX crossover implementation in Clojure
I'm starting to learn Clojure and as an exercise I've implemented the following functions (written in Java) in Clojure:
...