// main Program
import GUIMain;
class GATest {
int M; // population size in Koza's notation
public static void main(String[] args) {
GUIMain screen = new GUIMain("Genetic Algorithm Tester");
screen.setSize(600,400);
screen.setVisible(true);
//Now try and restrieve text once it is typed in
//get population size (use Koza's notation)
}
}
|