/**
  * @param name operation name
  * @param branch1 left operand
  * @param branch2 right operand
  */
 public BinaryOp(
     final String name, final AnnotatedTree<?> branch1, final AnnotatedTree<?> branch2) {
   this(Op2.getOp(name), branch1, branch2);
 }