public void confirmAllStonesInGroupsClaimed(GoGroupSet groups) {
NeighborAnalyzer na = new NeighborAnalyzer(board_);
for (IGoGroup parentGroup : groups) {
GoBoardPositionSet parentGroupStones = parentGroup.getStones();
for (GoBoardPosition stone : parentGroupStones) { // for each stone in that group
// compute the group from this stone and confirm it matches the parent group
GoBoardPositionList g = na.findGroupFromInitialPosition(stone);
// perhaps we should do something more than check the size.
if (g.size() != parentGroupStones.size()) {
groups.debugPrint(0, "Confirm stones in groups they Claim failed. \nGroups are:\n", true, true);
StringBuilder bldr = new StringBuilder();
bldr.append(board_.toString());
bldr.append("\n");
bldr.append("\n\nIt seems that using different seeds yields different groups:");