/**
   The BinaryTree interface specifies a binary tree the elements of which
   are associated with positions.
  
   @author      Franck van Breugel
   @version     1.3    March 4, 2001
*/
public interface BinaryTree extends PositionalContainer, InspectableBinaryTree {}
