CLARITY: Standard Generic Function TREE-INSERT-RECURSIVE

Generic function TREE-INSERT-RECURSIVE

Package:

CLARITY

Syntax:

  tree-insert-recursive cl-handle new-node current-node
  

Arguments and Values:

cl-handle---a clarity-handle

new-node---an integer

current-node---an integer

Description:

The generic function tree-insert-recursive inserts new data into the phylogenetic tree. It takes three parameters, clarity-handle, which identifies the clarity database; new-node, which is the integer id of the new node in the tree table of the database and current-node, which is the id of the current node to which the new node is being aligned. It returns two values, the number of the node to which the alignment score was highest, as well as that score.

Known Methods:

  •   tree-insert-recursive (cl-handle clarity-handle) (new-node integer) (current-node integer)
      

Examples:

cl-prompt: (clarity:tree-insert-recursive cl-handle 7 9)
  cl-prompt: 7 42

Affected By:

None.

Exceptional Situations:

None.

See Also:

TREE-INSERT

Notes:

None.


News

News in chronological order, most recent on top.

  • 2006-07-26
    Completed description.