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