GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Algorithm::Evolutionary::Fitness::Trap(3) User Contributed Perl Documentation Algorithm::Evolutionary::Fitness::Trap(3)

Algorithm::Evolutionary::Fitness::Trap - 'Trap' fitness function for evolutionary algorithms

    my $number_of_bits = 5;
    my $a = $number_of_bits -1; # Usual default values follow
    my $b = $number_of_bits;
    my $z = $number_of_bits -1;
    my $trap = Algorithm::Evolutionary::Fitness::Trap->new( $number_of_bits, $a, $b, $z );

# Equivalent to

    $trap = Algorithm::Evolutionary::Fitness::Trap->new( $number_of_bits );

    my $chromosome = "10101111110000";
    my $fitness = $trap->apply( $chromosome );

Trap functions act as "yucky" or deceptive for evolutionary algorithms; they "trap" population into going to easier, but local, optima.

Creates a new instance of the problem, with the said number of bits and traps. Uses default values from $number_of_bits if needed

Applies the instantiated problem to a chromosome

Computes the value of the trap function on the $string. Optimum is number_of_blocs * $b (by default, $b = $l or number of ones)

  This file is released under the GPL. See the LICENSE file included in this distribution,
  or go to http://www.fsf.org/licenses/gpl.txt
2017-10-29 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.