Top "Genetic-programming" questions

Genetic programming (GP) is a specialization of evolutionary computation where each individual is a computer program.

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 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
Best Fit Scheduling Algorithm

I'm writing a scheduling program with a difficult programming problem. There are several events, each with multiple meeting times. I …

algorithm scheduling genetic-algorithm genetic-programming
Which Java library/libraries for Genetic Algorithms?

I want to implement some simple genetic algorithms in Java. So far I found only JGAP. Did somebody has some …

java genetic-algorithm genetic-programming
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 …

algorithm code-generation genetic-algorithm genetic-programming evolutionary-algorithm
How to get the parameters' type and return type of a function?

I'm trying to implement strong type genetic programming in python. Is there something like these sample? def funcA(a,b): …

python types genetic-programming
Difference between exploration and exploitation in genetic algorithm

In evolutionary algorithms two main abilities maintained which are Exploration and Exploitation. In Exploration the algorithm searching for new solutions …

search genetic-algorithm genetic-programming
What is the difference between roulette wheel selection, rank selection and tournament selection?

I'm reading a slide about genetic programming, where some methods to select individuals, such as roulette wheel selection, rank selection …

selection genetic-algorithm genetic-programming roulette-wheel-selection
What is holding genetic programming back?

I have done a fair amount of work with genetic algorithms quite successfully and thus far ignored genetic programming. As …

algorithm genetic-programming evolutionary-algorithm
Roulette Wheel Selection for Genetic Algorithm in Java

I am implementing a roulette wheel selection method for a genetic algorithm. My question, in essence, is pretty simple but …

java genetic-algorithm genetic-programming roulette-wheel-selection