|
NAMEAI::Genetic::OpMutation - A class that implements various mutation operators.SYNOPSISSee AI::Genetic.DESCRIPTIONThis package implements a few mutation mechanisms that can be used in user-defined strategies. The methods in this class are to be called as static class methods, rather than instance methods, which means you must call them as such:AI::Genetic::OpCrossover::MethodName(arguments) CLASS METHODSThere is really one kind of mutation operator implemented in this class, but it implemented for the three default individuals types. Each gene of an individual is looked at separately to decide whether it will be mutated or not. Mutation is decided based upon the mutation rate (or probability). If a mutation is to happen, then the value of the gene is switched to some other possible value.For the case of bitvectors, an ON gene switches to an OFF gene. For the case of listvectors, a gene's value is replaced by another one from the possible list of values. For the case of rangevectors, a gene's value is replaced by another one from the possible range of integers. Thus, there are only three methods:
AUTHORWritten by Ala Qumsieh aqumsieh@cpan.org.COPYRIGHTS(c) 2003,2004 Ala Qumsieh. All rights reserved. This module is distributed under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |