Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl -l
    
    ...
    Z X
    W root
    B A
    
  2. or download this
    $ pm_find_common_ancestors.pl D E F
    Nodes for this run: D E F
    Lowest common ancestor: C
    
  3. or download this
    $ pm_find_common_ancestors.pl X Y N O P
    Unknown node: N
    ...
    Unknown node: P
    Nodes for this run: X Y
    Lowest common ancestor: X
    
  4. or download this
     pm_find_common_ancestors.pl X N O P
    Unknown node: N
    ...
    Unknown node: P
    Nodes for this run: X
    Need at least two nodes to process!
    
  5. or download this
    $ pm_find_common_ancestors.pl G H X Y
    Nodes for this run: G H X Y
    No common ancestor!
    
  6. or download this
    $ pm_find_common_ancestors.pl N O P
    Unknown node: N
    Unknown node: O
    Unknown node: P
    No valid nodes to process!