示例#1
0
        private void btnGerar_Click(object sender, EventArgs e)
        {
            Individuo ind = new Individuo();

            txtIndividuo.Text = ind.PrintIndividuo();

            Populacao pop = new Populacao();

            txtPopulacao.Text = pop.PrintPop();
        }
示例#2
0
 private void btnIterar_Click(object sender, EventArgs e)
 {
     pop           = ag.ExecutaAG(pop);
     txtPop.Text   = pop.PrintPop();
     lblMedia.Text = pop.GetMediaPopulacao().ToString();
 }