genetic-programming
Ant colony behavior using genetic programming
I\'m looking at evolving ants capable of food foraging behaviour using genetic programming, as described by Koza here. Each time step, I loop through each ant, executing its computer program (the same[详细]
2023-04-09 21:45 分类:问答Metabiology: how to randomly mutate an algorithm trying to ensure that the new version will be valid and will stop?
I\'m trying to hack a simulation of evolution according to Gregory Chaitin\'s metabiology model. Given an algorithm that returns an integer, i need to mutate it randomly trying to get another algorit[详细]
2023-03-23 03:29 分类:问答How to fix premature convergence in simple GA (Python)?
Yesterday i started exploring the genetic algorithms, and when i ended up with some basic theory, i tried to write simple GA on Python, that solves Diophantine equation. I\'m new to Python and GAs, so[详细]
2023-03-15 20:41 分类:问答Has anyone come across a rich GA framework in Ruby?
I am looking for something possibly as rich as JGAP framework (for Java), but for Ruby environment. The ones I have seen so far are fairly simplistic, and are not designed to be customised (I do开发者[详细]
2023-03-12 16:18 分类:问答Can Haskell programs be represented as Lisp S-expressions?
This would be useful for genetic programming, which usually use a Lisp subset as representation for programs.[详细]
2023-03-09 18:11 分类:问答What is the category of search techniques for automatic programming using artificial intelligence called?
I\'m doing research on automatic programming techniques available in the literature but only those which use AI. The o开发者_运维知识库nly such technique I can find is genetic programming.[详细]
2023-03-04 16:06 分类:问答Code generation by genetic algorithms
Evolutionary programming seems to be a great way to solve many optimization problems. The idea is very easy and the implementation does not make problems.[详细]
2023-02-27 03:15 分类:问答fitness function in PHP
I looked a whole day after an example to implement the \'fitness function\' in a Genetic开发者_JS百科 algorithm. (I implemented already a \'begin population\', \'mutation\' and permutation). The follo[详细]
2023-02-23 07:19 分类:问答Why don't genetic algorithms work on problems like factoring RSA?
Some time ago i was pretty interested in GAs and i studied about them quite a bit. I used C++ GAlib to write some programs and i was quite amazed by their ability to solve otherwise difficult to compu[详细]
2023-02-20 09:50 分类:问答Uniform crossover giving worse results than one-point crossover?
I have written a uniform crossover algorithm for part of my homework but it\'s not working properly. It\'s actually returning worse results than my one point cross over. I would just like someone to p[详细]
2023-02-18 22:57 分类:问答