Ramrod
Ramrod

Reputation: 378

How to solve a polynomial equation with genetic algorithms in java?

For my first class project I need to understand the basics of how genetic algorithms work (no big deal), I also need to find an example of a number optimization problem which is solved by using genetic algorithms in Java, and be able to explain how it works to my Professor.

I have searched the internet the best I can to find a Java program that solves some form of a multi-variable equation with constraints, but to no avail.

So my question is: Does anyone happen to have linkable content to a sample polynomial solving GA with constraints?

Upvotes: 0

Views: 2147

Answers (1)

Klaus
Klaus

Reputation: 26

JGAP is a Java framework for GA and GP and provides GA+GP examples for solving formulae. Please see http://jgap.sf.net

Upvotes: 1

Related Questions