previousMonkey = currentMonkey;
}
}
private void compareEachOthersBestMoves(SearchMonkey first, SearchMonkey second, Deal originalGame) {
Card firstMove = first.getBestMove();
Card secondMove = second.getBestMove();
System.out.println("#####> Search strategies " + first + " and " + second
+ " differ on what is the best move ( " + firstMove + " versus " + secondMove + "). "
+ "Now comparing tricks taken if each evaluates the other's best move.");
Deal firstMovePlayed = originalGame.duplicate();