private void btnAnswer_Click(object sender, EventArgs e) { if (pop == null) { return; } FormList frm = new FormList(pop.AnswerPopulation, "Итоговая популяция"); frm.Show(); }
private void btnParrents_Click(object sender, EventArgs e) { if (pop == null) { return; } FormList frm = new FormList(pop.ParrentPopulation, "Родительская популяция"); frm.Show(); }
private void btnMutation_Click(object sender, EventArgs e) { if (pop == null) { return; } FormList frm = new FormList(pop.MutationPopulation, "Мутация"); frm.Show(); }
private void btnSelection_Click(object sender, EventArgs e) { if (pop == null) { return; } FormList frm = new FormList(pop.CurrentPopulation, "Скрещивание"); frm.Show(); }