genetic-programming Questions

5

Solved

I am getting references in a paper on genetic programming, to a "protected division" operation. When I google this, i get mostly papers on genetic programming and various results related to cryptog...

3

Solved

In evolutionary algorithms two main abilities maintained which are Exploration and Exploitation. In Exploration the algorithm searching for new solutions in new regions, while Exploitation means u...
Blanks asked 23/11, 2013 at 11:55

4

I'm doing a linear genetic programming project, where programs are bred and evolved by means of natural evolution mechanisms. Their "DNA" is basically a container (I've used arrays and vectors succ...

6

Solved

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(){ for(n=0;;++...
Branchiopod asked 22/5, 2013 at 22:43

7

Solved

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 d...
Hilbert asked 4/3, 2013 at 11:3

5

Solved

I'm looking to add some genetic algorithms to an Operations research project I have been involved in. Currently we have a program that aids in optimizing some scheduling and we want to add in...
Outfall asked 18/5, 2010 at 13:11

6

Solved

I would like to have a simple explanation of the differences between genetic algorithms and genetic programming (without too much programming jargon). Examples would also be appreciated. Apparentl...
Suzansuzann asked 29/9, 2010 at 8:37

6

Solved

Some time ago i was pretty interested in GAs and i studied about them quite a bit. I used C++ GAlib to write some programs and i was quite amazed by their ability to solve otherwise difficult to co...
Spallation asked 28/3, 2011 at 8:38

1

for a study on genetic programming, I would like to implement an evolutionary system on basis of llvm and apply code-mutations (possibly on IR level). I found llvm-mutate which is quite useful exe...
Ranita asked 11/12, 2014 at 10:38

1

Solved

My understanding of a tournament selection is: For a given tournament size, t , randomly select t individuals from the population and determine the winner of that tournament as the individual with...

2

I implemented a genetic algorithm to solve an enhanced Traveling Salesman Problem (the weight of the edges changes with the time of the day). Currently I'm evaluating the different parameters of my...
Sheepshearing asked 23/3, 2016 at 13:7

2

Has anyone seen convincing results from the .Net Genetic Algorithm Framework? I am seeing poor randomization in the Traveling Salesman Problem demo provided with the Genetic Algorithm Framework. T...
Notum asked 30/12, 2015 at 12:58

3

I'm interesting in evolutionary algorithms. I have tested genetic algorithms with R but has someone tried with genetic programming? Do you know, if there are code somewhere written in R.
Musselman asked 21/4, 2010 at 8:8

1

I think this problem can be solved with ML because there are some properties of the output space that I want to achieve. Problem: D1 <-> D2 where D1 is input space and D2 is a space such that: ...

2

Solved

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 ( m...
Rosalvarosalyn asked 26/5, 2012 at 11:1

3

Solved

Something pretty annoying in evolutionary computing is that mildly different and overlapping concepts tend to pick dramatically different names. My latest confusion because of this is that gene-exp...
Myrmidon asked 13/8, 2010 at 10:8

3

Solved

I have just got started with Genetic Programming and I am having issues initializing my population. I am needing a tree to represent each candidate solution - The problem being, I am unfamiliar wi...
Tumblebug asked 1/8, 2015 at 17:45

8

Solved

Evolutionary programming seems to be a great way to solve many optimization problems. The idea is very easy and the implementation does not make problems. I was wondering if there is any way to ev...

4

What is Crossover Probability & Mutation Probability in Genetic Algorithm or Genetic Programming ? Could someone explain them from implementation perspective!
Stidham asked 20/5, 2010 at 21:13

1

There is GenProg (http://hackage.haskell.org/package/genprog) for example, but that only deals with numerical optimization, in this case finding an equation that describes the data. But I require...
Drumstick asked 30/9, 2014 at 19:59

12

Solved

I've been looking for some good genetic programming examples for C#. Anyone knows of good online/book resources? Wonder if there is a C# library out there for Evolutionary/Genetic programming...

8

I'm writing a genetic programming (GP) system (in C but that's a minor detail). I've read a lot of the literature (Koza, Poli, Langdon, Banzhaf, Brameier, et al) but there are some implementa...

1

Solved

I'm reading a slide about genetic programming, where some methods to select individuals, such as roulette wheel selection, rank selection and tournament selection, are mentioned. What is the differ...

2

Solved

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 repre...
Naidanaiditch asked 15/5, 2013 at 13:51

3

Solved

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

© 2022 - 2024 — McMap. All rights reserved.