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