Help for this page

Select Code to Download


  1. or download this
    while (<INPUTB>)
    {
    ...
       
       print OUT "$u"."\t".$rel."\t".$v."\t".$conteggio."\n";
    }
    
  2. or download this
    my $cur_superclass;
    my @records;
    ...
       push @records, [ $u, $superclass, $rel, $v ];
       $cur_superclass = $superclass;
    }
    
  3. or download this
    sub calcolo {
        my $rRecs = shift;
    ...
        # combine partials
        return  $partials / $found_recs;  # or some such...
    }