Exemplo n.º 1
0
        private void Click_Search(object sender, EventArgs e)
        {
            SearchAlgorithm alg = (SearchAlgorithm)algorithm.SelectedItem;

            Task.Factory.StartNew(() => Program.Search(maze, alg));
        }
Exemplo n.º 2
0
 public static void Search(int[, ][] maze, SearchAlgorithm alg)
 {
     alg.Search(maze);
 }