static void Main(string[] args)
        {
            ShortestPath s1 = new ShortestPath();

            s1.ShowDialog();
        }
Ejemplo n.º 2
0
 public NearestNeighbour(ShortestPath display)
 {
     this.display = display;
 }
Ejemplo n.º 3
0
 private void button2_Click(object sender, EventArgs e)
 {
     ShortestPath.UpdateQueue(int.Parse(id.Text), this);
 }