Genetic programming (GP) is a specialization of genetic algorithms (GA) 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.

learn more… | top users | synonyms

12
votes
5answers
244 views

Is it possible to enumerate computer programs?

Suppose you have to write a program that will test all programs in search of one that completes a specific task. For example, consider this JavaScript function: function find_truth(){ ...
2
votes
1answer
46 views

How to remove overlap in numeric ranges (AWK)

I'm trying to remove the overlap within a file. There's a bunch of records that starts with an 'A' and which have a 'start-value' and an 'end-value'. There's also a bunch of records that start with ...
10
votes
2answers
306 views
+50

How can I train a Genetic Programming algorithm onto a variable sequence of descriptors?

I am currently trying to design a Genetic Programming algorithm that analyses a sequence of characters and assigns a value to those characters. Below I have made up an example set. Every line ...
0
votes
1answer
83 views

convert from recursive to iterative function cuda c++

I'm working on a genetic program in which I am porting some of the heavy lifting into CUDA. (Previously just OpenMP). It's not running very fast, and I'm getting an error related to the recursion: ...
-1
votes
0answers
29 views

Genetic Programming for Operating System in C sharp [closed]

I've been looking genetic programming for simulation operating system like cheddar in ada language or cpuss in C#. Anyone knows of good online resources? Wonder if there is a C# library out there for ...
1
vote
1answer
19 views

How does TinyGP create new constants

I am working on a project that makes use of TinyGP. I am in the process of studying the TinyGP code but it is really "dense", with few comments. I can get it to evolve equations based on my sample ...
3
votes
1answer
74 views

Roslyn CTP - Random Code Modification

I have been experimenting with the Roslyn API in a genetic programming type of scenario. It appears like a great way to do that type of programming, but the actual implementation of simple scenarios ...
1
vote
1answer
29 views

Maximal input length/Variable input length for TinyGP

i am planning to use tinyGP as a way to train a set of Input variables (Around 400 or so) to a value set before. Is there a maximum size of Input variables? Do i need to specify the same amount of ...
-2
votes
1answer
61 views

Why is my genetic mutation code not retuning the entire gene? Java

http://i.imgur.com/PWVruQ0.png /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package parentmutation; import java.util.ArrayList; import ...
1
vote
1answer
61 views

Is there way to detect formula with help of genetic algorithm?

I am trying to find how two images (let's say "image1" and "image2") match to each other. There are several parameters calculated for each possible position of "image2" relative to "image1". And I ...
0
votes
2answers
223 views

Genetic algorithm crossover [closed]

I have a question regarding genetic algorithm so: Should crossover be carried out differently, e.g. only at “gene” boundaries. Should representations include “noise” to improve performance – or does ...
1
vote
1answer
159 views

genetic programming fitness function

I am trying to write a fitness function in genetic programming to enlarge the area occupied by the points inside the polygon. There are some points near the center of the polygon, I want to expand ...
0
votes
5answers
64 views

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): return a + b return_type(funcA) output: <class 'Integer'> and def ...
1
vote
1answer
97 views

Genetic Algorithms applied to SEO [closed]

My question is the following : Are there any practical Genetic Algorithms / Swarm Intelligence use cases in SEO or website optimizations ? I googled quite a bit on this topic, but couldn't find ...
0
votes
0answers
102 views

using genetic evolution in ECJ?

We are using ECJ(Evolutionary Computation in java) for Grammatical evolution in our final year project. We are really stuck at some crucial point while using this framework. Our main Problems are: How ...
0
votes
2answers
282 views

Why Genetic Algorithm gives different results for optimization of one objective function with same parameters in MATLAB Optimization toolbox?

Hi I am using optimization tool box in matlab for my minimization problem. When I run the solver, it gives different results for one problem with same parameters. So how to conclude that which one is ...
0
votes
0answers
345 views

In MatLab, how to use Genetic Algorithm to optimize a cost function with variables in a vector form?

I am a freshman of using GA in MatLab. Now, I need to solve an optimization problem of a cost function, in which the variables are in a form of vector, say a nx1 vector. I have two questions on this ...
1
vote
1answer
284 views

Choosing parents to crossover in genetic algorithms?

First of all, this is a part of a homework. I am trying to implement a genetic algorithm. I am confused about selecting parents to crossover. In my notes (obviously something is wrong) this is what ...
0
votes
1answer
24 views

Difference between Disjoint and Excess genes in NEAT?

I was reading Stanley's paper but I couldn't figure out what exactly are Disjoint and Excess genes in NEAT. I understand they appear to be related in some particular way with the fact that all of them ...
3
votes
2answers
207 views

Using genetic programming to estimate probability

I would like to use a genetic program (gp) to estimate the probability of an 'outcome' from an 'event'. To train the nn I am using a genetic algorithm. So, in my database I have many events, with ...
0
votes
2answers
2k views

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 I can't wrap my mind around it. In my fitness function, if an answer is ...
0
votes
1answer
334 views

Can someone with GA experience examine my fitness function?

Here is my problem, I'm modifying code I found for Genetic Algorithms to do numerical optimization of a function. Essentially, given a function F and our Desired Value, the program uses GA to searches ...
0
votes
1answer
360 views

Genetic algorithm for classification

I am trying to solve classification problem using Matlab GPTIPS framework. I managed to build reasonable data representation and fitness function so far and got an average accuracy per class near ...
0
votes
1answer
223 views

Genetic Programming - algorithms for population initialization

Can someone provide me some pointers on population initialization algorithms for genetic programming? I already know about the Grown, Full, Ramped half-half (taken from "A Field Guide to Genetic ...
0
votes
2answers
77 views

Agent Framework on Hadoop

I was thinking of writing a simple agent based framework using Hadoop. This is an idea I have been toying around for quite a while now (but have not put a lot of deep thinking into). The target ...
0
votes
1answer
80 views

how to represent values of stock in a polynom?

i'm doing a project in genetic algorithms and we need to build a software that chooses set of stocks based on their history. we need to do it on genetic programming which means we need a fitness ...
0
votes
0answers
221 views

Proportional selection with roulette wheel implementation in javascript

I'm doing an implementation of proportional selection with roulette wheel in javascript, and i was wondering if i'm doing it right. According to Jarod Elliott code in this post I'am doing it right. ...
6
votes
3answers
235 views

Is it possible for evolutionary algorithms to create machine code? [closed]

This is a question of general interest, as I am not trying to solve a specific problem. I have looked around to try to find some articles that cover this area, but am struggling to even put together ...
2
votes
1answer
91 views

duplicated Individuals in the same population

I implemented the Java example provided with the jenes library (Tutorial 5: ObjectChromosome‎). I found that the individuals in the population are all the same (i.e. no randomization is happening); I ...
1
vote
1answer
312 views

Test error lower than training error

Would appreciate your input on this. I am constructing a regression model with the help of genetic programming. If my RMSE on test data is (much) lower than my RMSE on training data for a 1:5 ratio ...
0
votes
0answers
27 views

Largest Possible Exponents for Fundamental Dimensions [closed]

I am implementing a genetic programming system for obtaining relationships which are dimensionally consistent. I am using constraints for the purpose. Can anyone tell me the largest absolute exponent ...
6
votes
4answers
160 views

Genetic algorithms — what are the benefits of sexual, as opposed to asexual, genetic algorithms?

Intuitively I'd think that if I want to find the "best" set of parameters, I can simply take the best performing 1 guy from a subset of lots of children, make that guy generate 100 children similar to ...
0
votes
2answers
102 views

Linear Genetic Programming Intron Detection Algorithm

Can someone point me to a specific algorithm that is used to remove introns from lgp individuals ? Thank you
0
votes
1answer
265 views

How should Stochastic Universal Sampling be combined with Elitism in Genetic Programming?

Having implemented Ranked Selection ("RS") and Stochastic Universal Sampling ("SUS") [Baker, 1987] I'd now like to introduce Elitism (reintroduction of the fittest last-generation members into ...
0
votes
0answers
90 views

fitness finding procedure of flow shop scheduling programing c#

I'm working with flow job scheduling that has 3 jobs with 3 machines and I want to find the sequence of jobs that has minimum makespan (time consuming). the thing is how to program the fitness ...
1
vote
2answers
389 views

Benefits and implementation of crossover probability in genetic algorithm?

Can any one give an example of crossover probability? I really wonder to know what is the benefits of determining crossover probability in genetic algorithm or genetic programing.
2
votes
1answer
614 views

Roulette Wheel selection procedure

is it possible to evaluate each individual in the population using the fitness value without finding the probability as the following pseudo code For all members of population sum += fitness ( ...
1
vote
1answer
213 views

Can i have a variable length chromosome in JGAP?

Im using JGAP to generate testvectors for a schematic. I got maximum coverage of a single testvector by setting the genes of a chromosome to be bits . Now i need to get a 100% coverage with minimum ...
1
vote
2answers
545 views

R: Find function minimum with genetic programming

I am currently using RGP as a genetic programming library. If anyone has an idea for another library (better documentation, more active development, etc.) I would like to hear your suggestions. The ...
1
vote
1answer
135 views

linear genetic programming contants

What are the advantages and disadvantages to explicitly defining constants within the memory register, as opposed to initially seeding individuals with constants and mutating them through genetic ...
4
votes
2answers
152 views

Are there any “gotchas” I should know about with regards to using multithreading in JGAP?

I'm working on a Genetic Programming project that tries to generate GPs that would represent an image. My approach is to split the image into different independent sections and having seperate threads ...
0
votes
2answers
50 views

Dynamic number of test cases in genetic programming?

When looking at Genetic programming papers, it seems to me that the number of test cases is always fixed. However, most mutations should (?) at every stage of the execution be very deleterious, i. e. ...
2
votes
3answers
82 views

Stages in genetic programming

When evolving a genetic program, how is the required time distributed between different stages in development? I mean: Is 90 percent of the time devoted to becoming a little bit better than random ...
1
vote
4answers
170 views

Exponents in Genetic Programming

I want to have real-valued exponents (not just integers) for the terminal variables. For example, lets say I want to evolve a function y = x^3.5 + x^2.2 + 6. How should I proceed? I haven't seen any ...
0
votes
1answer
80 views

Example of networked manufacturing environment

I am designing an algorithm for job scheduling problem in networked manufacturing using genetic algorithm.I want to know the real life application where the following problem description can be ...
6
votes
2answers
3k views

Creating a binary tree in Java for Genetic Programming Purposes

I'm working on a project for a software engineering class I'm taking. The goal is to design a program that will use genetic programming to generate a mathematical expression that fits provided ...
-2
votes
1answer
2k views

Find the minimum of “y=x*x” using genetic algorithm in Matlab [closed]

Would somebody help me please in this question. I'm new in Matlab... And it's a bit hard for me to understand how to create and use genetic algorithm in Matlab. If anybody could help to write some ...
3
votes
2answers
214 views

Performant and Easy to Use Non-GPLed Genetic Programming Library

I would like to build an application that uses Genetic Programming to figure out what exactly the user is asking. It's a programming application for non-programmers. Basically the user feeds the ...
2
votes
2answers
103 views

Linear Genetic Programming - Error Landscape Issue

I'm exploring the world of linear genetic programming and I find myself stuck with this one issue. It seems to me that the error landscape of even the simplest problem is extremely non smooth. In ...
1
vote
3answers
363 views

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 ...

1 2 3