private void addBinary(BinaryRule binaryRule) {
   CollectionUtils.addToValueList(binaryRulesByLeftChild, binaryRule.getLeftChild(), binaryRule);
   CollectionUtils.addToValueList(
       binaryRulesByRightChild, binaryRule.getRightChild(), binaryRule);
 }