solveDeeply method

Stream<Solution> solveDeeply({
  1. Solver solver = kociemba,
  2. Duration timeout = Solver.defaultTimeout,
})

Gets the Solutions as much as possible using the solver algorithm until the minimum number of moves is reached or the timeout is exceeded.

Implementation

Stream<Solution> solveDeeply({
  Solver solver = kociemba,
  Duration timeout = Solver.defaultTimeout,
}) {
  return solver.solveDeeply(this, timeout: timeout);
}