Download the PHP package ryanhs/simple-genetic-algorithm without Composer
On this page you can find all versions of the php package ryanhs/simple-genetic-algorithm. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download ryanhs/simple-genetic-algorithm
More information about ryanhs/simple-genetic-algorithm
Files in ryanhs/simple-genetic-algorithm
Download ryanhs/simple-genetic-algorithm
More information about ryanhs/simple-genetic-algorithm
Files in ryanhs/simple-genetic-algorithm
Vendor ryanhs
Package simple-genetic-algorithm
Short Description simple genetic algorithm in PHP
License MIT License
Package simple-genetic-algorithm
Short Description simple genetic algorithm in PHP
License MIT License
Please rate this library. Is it a good library?
Informations about the package simple-genetic-algorithm
SimpleGeneticAlgorithm
simple genetic algorithm in php, this package i create just for example how we can implement Genetic Algorithm in PHP if you inteserted just email me at [email protected] :-)
see interface/GeneticAlgorithm.php
Installation
you can download this with composer (packagist)
composer require ryanhs/simple-genetic-algorithm
Example
in example dir you can see:
- example1.php
- example2.php
- example3.php
example 1
require '/vendor/autoload.php'; // composer autoload
$ga = new \SimpleGeneticAlgorithm\SimpleGeneticAlgorithm(array(
'mutation' => 25, // 25%
'goal' => 'Astari Ghaniarti',
'delay' => 50, // ms, if debug is false, then delay forced to 0
'debug' => true,
));
$ga->run(); // just run because debug is true
License
MIT License
All versions of simple-genetic-algorithm with dependencies
PHP Build Version
Package Version
No informations.
The package ryanhs/simple-genetic-algorithm contains the following files
Loading the files please wait ....