+ " 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();
firstMovePlayed.play(firstMove);
firstMovePlayed.printHandsDebug();
SearchMonkey firstProxy = new SearchMonkey(first.config);
SearchMonkey secondProxy = new SearchMonkey(second.config);
firstProxy.runSearch(firstMovePlayed.duplicate());
secondProxy.runSearch(firstMovePlayed.duplicate());
firstProxy.printAsTree();