AI-FuzzyInference
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
FuzzyInference.pm view on Meta::CPAN
);
# sub new() - constructor.
#
# doesn't take any arguments. Returns an initialized AI::FuzzyInference object.
sub new {
my $self = shift;
my $class = ref($self) || $self;
my $obj = bless {} => $class;
$obj->_init;
return $obj;
}
# sub _init() - private method.
#
# no arguments. Initializes the data structures we will need.
# It also defines the default logic operations we might need.
FuzzyInference/Set.pm view on Meta::CPAN
#our $VERSION = 0.02;
use vars qw/$VERSION/; # a bit more backward compatibility.
$VERSION = 0.04;
1;
sub new {
my $self = shift;
my $class = ref($self) || $self;
my $obj = bless {} => $class;
$obj->_init;
return $obj;
}
sub _init {
my $self = shift;
$self->{TS} = {};
view all matches for this distributionview release on metacpan - search on metacpan
( run in 0.916 second using v1.00-cache-2.02-grep-82fe00e-cpan-4185a24d4ac )