mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
Draft genetic algorithm interface
This commit is contained in:
parent
028d1ae887
commit
0dbbc40a62
34
Math/Optimization/GeneticAlgorithmInterface.php
Normal file
34
Math/Optimization/GeneticAlgorithmInterface.php
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
/**
|
||||
* Orange Management
|
||||
*
|
||||
* PHP Version 7.0
|
||||
*
|
||||
* @category TBD
|
||||
* @package TBD
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright 2013 Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
* @link http://orange-management.com
|
||||
*/
|
||||
namespace phpOMS\Math\Optimization;
|
||||
|
||||
/**
|
||||
* Web module interface.
|
||||
*
|
||||
* @category Framework
|
||||
* @package phpOMS\Module
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @license OMS License 1.0
|
||||
* @link http://orange-management.com
|
||||
* @since 1.0.0
|
||||
*/
|
||||
interface GeneticAlgorithmInterface
|
||||
{
|
||||
public function mutate($a);
|
||||
|
||||
public function unfitness($a, $b);
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user