/// <summary> /// Default Constructor /// </summary> public ProjectTwoViewModel() { BFSolver = new BreadthFirstSolver(); DFSolver = new DepthFirstSolver(); Cities = new List <City>(); }
public async void DepthFirstSolve() { ISolver depthFirstSolver = new DepthFirstSolver(_rubiksCube.GetState()); await Solve(depthFirstSolver); }