Ignore:
Timestamp:
2008-09-08T12:35:53+12:00 (16 years ago)
Author:
kjdon
Message:

BasClas renamed to BaseClassifier, tidied up constructors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/perllib/classify/AZList.pm

    r15891 r17209  
    2828package AZList;
    2929
    30 use BasClas;
     30use BaseClassifier;
    3131use sorttools;
    3232
     
    3535
    3636sub BEGIN {
    37     @AZList::ISA = ('BasClas');
     37    @AZList::ISA = ('BaseClassifier');
    3838}
    3939
     
    6868    push(@$classifierslist, $class);
    6969
    70     if(defined $arguments){ push(@{$hashArgOptLists->{"ArgList"}},@{$arguments});}
    71     if(defined $options) { push(@{$hashArgOptLists->{"OptList"}},$options)};
    72 
    73     my $self = new BasClas($classifierslist, $inputargs, $hashArgOptLists);
     70    push(@{$hashArgOptLists->{"ArgList"}},@{$arguments});
     71    push(@{$hashArgOptLists->{"OptList"}},$options);
     72
     73    my $self = new BaseClassifier($classifierslist, $inputargs, $hashArgOptLists);
    7474
    7575    if ($self->{'info_only'}) {
Note: See TracChangeset for help on using the changeset viewer.