Top "Genetic-algorithm" questions

A genetic algorithm (GA) is a search heuristic that mimics the process of natural evolution.

What are good examples of genetic algorithms/genetic programming solutions?

Genetic algorithms (GA) and genetic programming (GP) are interesting areas of research. I'd like to know about specific problems you …

algorithm artificial-intelligence genetic-algorithm evolutionary-algorithm
Roulette wheel selection algorithm

Can anyone provide some pseudo code for a roulette selection function? How would I implement this: I don't really understand …

algorithm genetic-algorithm evolutionary-algorithm roulette-wheel-selection
When should I use genetic algorithms as opposed to neural networks?

Is there a rule of thumb (or set of examples) to determine when to use genetic algorithms as opposed to …

artificial-intelligence machine-learning neural-network genetic-algorithm
How to perform a bitwise operation on floating point numbers

I tried this: float a = 1.4123; a = a & (1 << 3); I get a compiler error saying that the operand of &…

c++ floating-point genetic-algorithm bitwise-operators
GA written in Java

I am attempting to write a Genetic Algorithm based on techniques I had picked up from the book "AI Techniques …

java genetic-algorithm evolutionary-algorithm roulette-wheel-selection
Roulette Selection in Genetic Algorithms

Can anyone provide some pseudo code for a roulette selection function? How would I implement this: I don't really understand …

genetic-algorithm evolutionary-algorithm roulette-wheel-selection
What is Crossover Probability & Mutation Probability in Genetic Algorithm or Genetic Programming?

What is Crossover Probability & Mutation Probability in Genetic Algorithm or Genetic Programming ? Could someone explain them from implementation perspective!

genetic-algorithm genetic-programming
What are some impressive algorithms or software in the world of AI?

I have always loved the idea of AI and evolutionary algorithms. Unfortunately, as we all know, the field hasn't developed …

artificial-intelligence genetic-algorithm
What is the difference between genetic and evolutionary algorithms?

Is there a difference between genetic algorithms and evolutionary algorithms? I have read multiple papers, talking about genetic or evolutionary …

algorithm genetic-algorithm evolutionary-algorithm
What are the differences between genetic algorithms and genetic programming?

I would like to have a simple explanation of the differences between genetic algorithms and genetic programming (without too much …

terminology genetic-algorithm genetic-programming