GoSearchable searchable = (GoSearchable) goController.getSearchable().copy();
p1CapturesLabel_.setText( searchable.getNumCaptures( false ) + " " );
p2CapturesLabel_.setText( searchable.getNumCaptures( true ) + " " );
new BoardValidator(searchable.getBoard()).confirmStonesInValidGroups();
p1TerritoryLabel_.setText( searchable.getTerritoryEstimate( true ) + " " );
p2TerritoryLabel_.setText( searchable.getTerritoryEstimate( false ) + " " );
legendPanel_.setVisible(GameContext.getDebugMode() > 0);
}