Questions tagged [genetic-programming]

Genetic programming (GP) is a specialization of evolutionary computation where each individual is a computer program. It is used to optimize a population of computer programs according to a fitness landscape determined by a program's ability to perform a given computational task.

Genetic programming (GP) is a type of where each individual in a population is a computer program. It is used to optimize a population of computer programs according to a fitness landscape determined by a program's ability to perform a given computational task.

Traditional genetic programming, originally popularized by John Koza, represents code as expression trees, but this topic also includes other systems in which code evolves.

See also: , which refers to evolution-inspired algorithms in which an abstract representation of the solution is being evolved, rather than code itself.

347 questions
-4
votes
1 answer

Finding minima of a function using genetic algorithm

I am working on genetic algorithm project. I need code to find out maxima/minima of Rastrigin function or Easom function (For y=0) using basic genetic algorithm.
-6
votes
1 answer

How do I solve for the shortest path between nodes using genetic algorithms?

If I have a network of nodes, how can I use genetic algorithms to calculate the shortest path between any two nodes?
jordan11
  • 43
  • 1
  • 1
1 2 3
23
24