private void MakeSingleMove(Move move) { // Record the move. if (TraceMoves) { Utils.WriteLine("Move {0}: {1}", Tableau.Moves.Count, move); } // Make the move. Tableau.Move(move); }