예제 #1
0
파일: Form1.cs 프로젝트: kastrulya/v2
 private void алгоритмДейкстриToolStripMenuItem2_Click(object sender, EventArgs e)
 {
     Theory theory = new Theory();
     theory.deijkstraChoose();
     theory.ShowDialog();
 }
예제 #2
0
파일: Form1.cs 프로젝트: kastrulya/v2
 private void алгоритмФлойдаУоршаллаToolStripMenuItem1_Click(object sender, EventArgs e)
 {
     Theory theory = new Theory();
     theory.yorshallChoose();
     theory.ShowDialog();
 }
예제 #3
0
파일: Form1.cs 프로젝트: kastrulya/v2
 private void алгоритмБелманаФордаToolStripMenuItem1_Click(object sender, EventArgs e)
 {
     Theory theory = new Theory();
     theory.belmanaChoose();
     theory.ShowDialog();
 }