private void алгоритмДейкстриToolStripMenuItem2_Click(object sender, EventArgs e) { Theory theory = new Theory(); theory.deijkstraChoose(); theory.ShowDialog(); }
private void алгоритмФлойдаУоршаллаToolStripMenuItem1_Click(object sender, EventArgs e) { Theory theory = new Theory(); theory.yorshallChoose(); theory.ShowDialog(); }
private void алгоритмБелманаФордаToolStripMenuItem1_Click(object sender, EventArgs e) { Theory theory = new Theory(); theory.belmanaChoose(); theory.ShowDialog(); }