Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 3 of 3

Thread: Genetic algorithim

  1. #1
    Junior Member
    Join Date
    Mar 2013
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Post Genetic algorithim

    Hello everyone I have just started this new chapter in Genetic Algorithms and I understand the whole concept of it but to me it becomes more difficult in implementation of it please any one just that me through it


  2. #2
    Administrator copeg's Avatar
    Join Date
    Oct 2009
    Location
    US
    Posts
    5,320
    Thanks
    181
    Thanked 833 Times in 772 Posts
    Blog Entries
    5

    Default Re: Genetic algorithim

    Break the problem down. A GA consists of several components - organisms, mating, mutation, etc...use Object Oriented programming to break these concepts into classes/interfaces. Sometimes the hardest part of a GA is considering how to represent the problem as an 'organism', and how to rate the fitness of these - that being said if you take a real life example it might help in implementation. There are also open source projects that implement GA's which you might consider looking at (google 'java genetic algorithm')

  3. #3
    Junior Member
    Join Date
    Mar 2013
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Genetic algorithim

    Thank you very much copeg i looked at the source code and i will play around with it more

Similar Threads

  1. [SOLVED] Help with a simple Genetic Algorithm
    By JMeacham in forum What's Wrong With My Code?
    Replies: 3
    Last Post: December 13th, 2012, 01:38 PM
  2. Replies: 3
    Last Post: March 17th, 2011, 10:09 AM
  3. Genetic algorithm
    By rpsaranya in forum Algorithms & Recursion
    Replies: 2
    Last Post: March 5th, 2010, 11:00 PM