I want to implement some simple genetic algorithms in Java.
So far I found only JGAP. Did somebody has some experience with that? And do you know other Java libraries for ...
I have this program that simulate a soccer penalty kick between 2 teams.
-The goal is 24 x 8 with coordinate (0,0) at the bottom left corner.
-Each team has 5 kickers and ...
I'm writing a genetic algorithm and I plan to move from roulette wheel selection to tournament selection, but I suspect my understanding may be flawed.
If I'm only selecting the n/2 best ...
I try to learn and implement a simple genetic algorithm library for my project. At this time, evolution, selection of population is ready, and I'm trying to implement a simple good ...
I'm new to java and can't seem to wrap my head around a problem. I'm trying to take two arrays of stock information, and compare them against each other(only keeping ...
I'm not sure what to make of it, without knowing more about the purpose of the program, and what each method is suppose to do. It looks like the program generates random strings, which represent genetic code. It compares the strings to "to be or not to be that is the question" which represents the desired genetics. Eventually the random string ...
Hi people, i really need help badly with a project im doing as im not very good at programming yet, The project is as follows Project Allocation This project will develop a Genetic Algorithm that will evolve project allocations, with the aim of maximising several criteria: giving every student the highest ranked project possible, spreading the project load between lecturers etc. ...
Grettings. I need to write a program to solve the Travel Salesman Person using Genetic Algorithms. The main trouble here is that, my teacher doesn't explain ANYTHING about GA, nor the way of implementing them in Java. So, can anyone give a Starting Point to write my application? Thank you in Advance.
Hi Iam new to GA's My Individual genome is of the form [a1,a2,a3,.....an, g11,g12,g13.....gij, h11, h12, hij] Search regions a -- 0-3 g- 0-3.5 h-0-1 If iam doing mutation how can i specify boundaries i.e. a1 value shouldnt not mutate with g11value and so on(Iam not clear with this) Thanks For Help