Hi Alex
Thank you for your comments.
About your comment on the $fis->addRule, I am not sure if I understood it. Could you, please, rephrase it? Anyway, to give you a better description of the $fis->addRule: each line in the addRule represents a hash's element with the 'quality=bad & speed=slow' being a “key” of the hash (guaranteeing uniqueness of the antecedents) and the 'award=minimum' being the “value” for the key.
About your comment on the output of the script, I just added a description just before the code.
Cheers!
lin0
| [reply] |
$fis->addRule(
'quality=bad & speed=slow' => 'award=minimum',
'quality=ok & speed=slow' => 'award=minimum',
'quality=good & speed=slow' => 'award=small',
'quality=excellent & speed=slow' => 'award=small',
'quality=bad & speed=regular' => 'award=minimum',
'quality=ok & speed=regular' => 'award=small',
'quality=good & speed=regular' => 'award=small',
'quality=excellent & speed=regular' => 'award=excellent',
'quality=bad & speed=fast' => 'award=small',
'quality=ok & speed=fast' => 'award=good',
'quality=good & speed=fast' => 'award=good',
'quality=excellent & speed=fast' => 'award=excellent',
'quality=bad & speed=fastest' => 'award=small',
'quality=ok & speed=fastest' => 'award=good',
'quality=good & speed=fastest' => 'award=excellent',
'quality=excellent & speed=fastest' => 'award=excellent',
);
and I was wondering if that could be replaced with just an array (in my original post), for prevention of errors and maintainability.
Just a thought.
Alex / talexb / Toronto
"Groklaw is the open-source mentality applied to legal research" ~ Linus Torvalds
| [reply] [d/l] |
Hi talexb,
Now, I got it!
It will be hard to change that particular chunk of code for an array because of the way those statements are treated in the AI::FuzzyInference module (please, see the code below). However, I will think about your idea and see if I can suggest some improvements to the module
thank you
lin0
# sub addRule() - public method.
#
# Adds fuzzy if-then inference rules.
#
# $obj->addRule('x=medium' => 'z = slow',
# 'x=low & y=small' => 'z = fast',
# 'x=high & y=tiny' => 'z=veryfast');
# spaces are optional. The characters [&=|] are special.
sub addRule {
my ($self, %rules) = @_;
for my $k (keys %rules) {
my $v = $rules{$k};
s/\s+//g for $v, $k;
push @{$self->{RULES}} => [$k, $v];
}
return 1;
}
| [reply] [d/l] |