Tagged Questions

26
votes
9answers
1k views

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 far as I know, most programs remain written by programmers, and I'm curious ...
14
votes
4answers
2k views

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 need to find an arrangement of meeting times such that each ...
8
votes
1answer
359 views

Do you have genetic algorithm in production?

Is it good idea to use genetic algorithm in production? If you are using it: In what case? What pros for selecting subj? Can you easily add changes to algorithm?
7
votes
7answers
632 views

Code generation by genetic algorithms

evolutionary programming seems to be great way to solve many optimization problems. Idea is very easy, implementation also does not make problems. I was wondering last time is there any way to ...
4
votes
4answers
277 views

Novel fitness measure for evolutionary image matching simulation

I'm sure many people have already seen demos of using genetic algorithms to generate an image that matches a sample image. You start off with noise, and gradually it comes to resemble the target image ...
3
votes
3answers
362 views

Genetic Programming and Search Algorithms

Is Genetic Programming currently capable of evolving one type of search algorithm into another? F or example, has any experiment ever ever bred / mutated BubbleSort from QuickSort (see ...
2
votes
1answer
254 views

Is this possible to find equation of a series using genetic programming?

I have a list of numbers which form a series. I want to find the equation which can regenerate the same series. Is this possible? Also, what would you recommend to program it (GA, GP, etc). Please ...
0
votes
4answers
228 views

How to design an approximate solution algorithm

I want to write an algorithm that can take parts of a picture and match them to another picture of the same object. For example, If I gave the computer a picture of a vase and a picture of a scene ...