Algorithm-Evolutionary 0.53 Deleted
Kwalitee Issues
- has_meta_yml
-
Add a META.yml to the distribution. Your buildtool should be able to autogenerate it.
- use_strict
-
Add 'use strict' (or its equivalents) to all modules, or convince us that your favorite module is well-known enough and people can easily see the modules are strictly written.
Error: Algorithm::Evolutionary
- prereq_matches_use
-
List all used modules in META.yml requires
Error:
- Algorithm::Permute
- Math::Random
- Tree::DAG_Node
- XML::Parser
- XML::Parser::EasyTree
- no_pod_errors
-
Remove the POD errors. You can check for POD errors automatically by including Test::Pod to your test suite.
Error: Algorithm-Evolutionary-0.53/Evolutionary/Individual/String.pm -- Around line 28: Non-ASCII character seen before =encoding in 'ñ);'. Assuming CP1252 Algorithm-Evolutionary-0.53/Evolutionary/Op/CX.pm -- Around line 38: alternative text 'http://www.cs.bham.ac.uk/~rmp/slide_book/node4.html#SECTION00444300000000000000' contains non-escaped | or / Algorithm-Evolutionary-0.53/Evolutionary/Op/Inverover.pm -- Around line 33: alternative text 'http://www.dcs.napier.ac.uk/coil/news/feature48.html' contains non-escaped | or / alternative text 'http://www.coe.uncc.edu/~zbyszek/papers.html' contains non-escaped | or / Algorithm-Evolutionary-0.53/Evolutionary/Op/LinearFreezer.pm -- Around line 14: L<> starts or ends with whitespace Algorithm-Evolutionary-0.53/Evolutionary/Op/RouletteWheel.pm -- Around line 20: alternative text 'http://www.geatbx.com/docu/algselct.html#nameselectionrws' contains non-escaped | or / Algorithm-Evolutionary-0.53/Evolutionary/Op/SimulatedAnnealing.pm -- Around line 18: L<> starts or ends with whitespace Around line 57: =cut found outside a pod block. Skipping to next block. Algorithm-Evolutionary-0.53/Evolutionary.pm -- Around line 47: Non-ASCII character seen before =encoding in 'GarcÃa,'. Assuming CP1252
- has_meta_json
-
Add a META.json to the distribution. Your buildtool should be able to autogenerate it.
- meta_yml_has_license
-
Define the license if you are using in Build.PL. If you are using MakeMaker (Makefile.PL) you should upgrade to ExtUtils::MakeMaker version 6.31.
- use_warnings
-
Add 'use warnings' (or its equivalents) to all modules, or convince us that your favorite module is well-known enough and people can easily see the modules warn when something bad happens.
Error: Algorithm::Evolutionary
- test_prereq_matches_use
-
List all modules used in the test suite in META.yml test_requires
Error:
- XML::LibXML
- XML::Parser
- XML::Parser::EasyTree
- consistent_version
-
Split the distribution, or fix the version numbers to make them consistent (use the highest version number to avoid version downgrade).
Error: 0.53,1,1.1,1.14,1.2,1.3,1.4,1.5,1.6,1.7,1.8
- has_security_doc
-
Add SECURITY(.pod|md). See Software::Security::Policy.
- security_doc_contains_contact
-
Add SECURITY(.pod|md) and add a contact address. See Software::Security::Policy.
- has_contributing_doc
-
Add CONTRIBUTING(.pod|md). See https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/setting-guidelines-for-repository-contributors.
Modules
Name | Abstract | Version | View |
---|---|---|---|
Algorithm::Evolutionary | Perl extension for performing paradigm-free evolutionary algorithms. | 0.53 | metacpan |
Algorithm::Evolutionary::Experiment | Class for setting up an experiment with algorithms and population | 1 | metacpan |
Algorithm::Evolutionary::Individual::Base | Base class for chromosomes that knows how to build them, and has some helper methods. | 1.14 | metacpan |
Algorithm::Evolutionary::Individual::BitString | Classic bitstring individual for evolutionary computation; usually called I<chromosome> | 1.6 | metacpan |
Algorithm::Evolutionary::Individual::String | A character string to be evolved. Useful mainly in word games | 1.6 | metacpan |
Algorithm::Evolutionary::Individual::Tree | 1.5 | metacpan | |
Algorithm::Evolutionary::Individual::Vector | Array as an individual for evolutionary computation | 1.8 | metacpan |
Algorithm::Evolutionary::Op::ArithCrossover | Arithmetic crossover operator; performs the average of the n parents crossed | 1.2 | metacpan |
Algorithm::Evolutionary::Op::Base | Base class for OPEAL operators; operators are any object with the "apply" method, which does things to individuals or populations. | 1 | metacpan |
Algorithm::Evolutionary::Op::Bitflip | BitFlip mutation | 1.5 | metacpan |
Algorithm::Evolutionary::Op::CX | 1.3 | metacpan | |
Algorithm::Evolutionary::Op::CanonicalGA | Canonical Genetic Algorithm, with any representation | 1 | metacpan |
Algorithm::Evolutionary::Op::ChangeLengthMutation | Increases/decreases by one the length of the string | 1.3 | metacpan |
Algorithm::Evolutionary::Op::Creator | Operator that generates groups of individuals, of the intended class | 1 | metacpan |
Algorithm::Evolutionary::Op::Crossover | n-point crossover operator; puts a part of the second operand into the first operand; can be 1 or 2 points | 1.7 | metacpan |
Algorithm::Evolutionary::Op::DeltaTerm | Termination condition for an algorithm; checks that the difference of the best to a target is less than a delta | 1 | metacpan |
Algorithm::Evolutionary::Op::Easy | evolutionary algorithm, single generation, with variable operators. | 1 | metacpan |
Algorithm::Evolutionary::Op::FullAlgorithm | evolutionary algorithm, single generation, with variable operators. | 1 | metacpan |
Algorithm::Evolutionary::Op::GaussianMutation | Changes numeric chromosome components following the gaussian distribution | 1.2 | metacpan |
Algorithm::Evolutionary::Op::GeneralGeneration | Customizable single generation for an evolutionary algorithm. | 1 | metacpan |
Algorithm::Evolutionary::Op::GenerationalTerm | Checks for termination of an algorithm. | 1 | metacpan |
Algorithm::Evolutionary::Op::IncMutation | Increments/decrements by one the value of one of the components of the string, takes into account the char class | 1.4 | metacpan |
Algorithm::Evolutionary::Op::Inverover | Michalewicz\'s inver-over Operator. | 1.3 | metacpan |
Algorithm::Evolutionary::Op::LinearFreezer | used by Simulated Annealing algorithms | 1.2 | metacpan |
Algorithm::Evolutionary::Op::Mutation | BitFlip mutation, changes several bits in a bitstring, depending on the probability | 1.3 | metacpan |
Algorithm::Evolutionary::Op::NoChangeTerm | Checks for termination of an algorithm; terminates when several generations transcur without change | 1 | metacpan |
Algorithm::Evolutionary::Op::Permutation | BitFlip mutation, changes several bits in a bitstring, depending on the probability | 1.3 | metacpan |
Algorithm::Evolutionary::Op::QuadXOver | n-point crossover operator; puts a part of the second operand into the first operand; can be 1 or 2 points. | 1.1 | metacpan |
Algorithm::Evolutionary::Op::RouletteWheel | Fitness-proportional selection, using a roulette wheel | 1 | metacpan |
Algorithm::Evolutionary::Op::SimulatedAnnealing | 1 | metacpan | |
Algorithm::Evolutionary::Op::TournamentSelect | Tournament selector, takes individuals from one population and puts them into another | 1 | metacpan |
Algorithm::Evolutionary::Op::TreeMutation | GP-like mutation operator for trees | 1.3 | metacpan |
Algorithm::Evolutionary::Op::VectorCrossover | Crossover for lgorithm::Evolutionary::Individual::Vector. | 1.7 | metacpan |
Algorithm::Evolutionary::Wheel | Random selector of things depending on probabilities | 1 | metacpan |