mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-10 17:28:40 +00:00
76 lines
2.1 KiB
PHP
Executable File
76 lines
2.1 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package tests
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\tests\Algorithm\Clustering;
|
|
|
|
use phpOMS\Algorithm\Clustering\Kmeans;
|
|
use phpOMS\Algorithm\Clustering\Point;
|
|
|
|
include_once __DIR__ . '/../../Autoloader.php';
|
|
|
|
/**
|
|
* @testdox phpOMS\tests\Algorithm\Clustering\KmeansTest: Clustering points/elements with the K-means algorithm
|
|
*
|
|
* @internal
|
|
*/
|
|
final class KmeansTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
/**
|
|
* @testdox The clustering of points and dynamic check of new points works as expected
|
|
* @covers \phpOMS\Algorithm\Clustering\Kmeans
|
|
* @group framework
|
|
*/
|
|
public function testKmeans() : void
|
|
{
|
|
$seed = \mt_rand(\PHP_INT_MIN, \PHP_INT_MAX);
|
|
\mt_srand($seed);
|
|
|
|
// The following seed + putting the loop to 1 would fail the test
|
|
//\mt_srand(1788576141);
|
|
|
|
$result = false;
|
|
|
|
// due to the random nature this can be false sometimes?!
|
|
for ($i = 0; $i < 10; ++$i) {
|
|
$points = [
|
|
new Point([1.0, 1.0], '1'),
|
|
new Point([1.5, 2.0], '2'),
|
|
new Point([3.0, 4.0], '3'),
|
|
new Point([5.0, 7.0], '4'),
|
|
new Point([3.5, 5.0], '5'),
|
|
new Point([4.5, 5.0], '6'),
|
|
new Point([3.5, 4.5], '7'),
|
|
];
|
|
|
|
$kmeans = new Kmeans();
|
|
$kmeans->generateClusters($points, 2);
|
|
|
|
if ($kmeans->cluster($points[0])->group === 0
|
|
&& $kmeans->cluster($points[1])->group === 0
|
|
&& $kmeans->cluster($points[2])->group === 1
|
|
&& $kmeans->cluster($points[3])->group === 1
|
|
&& $kmeans->cluster($points[4])->group === 1
|
|
&& $kmeans->cluster($points[5])->group === 1
|
|
&& $kmeans->cluster($points[6])->group === 1
|
|
) {
|
|
$result = true;
|
|
|
|
break;
|
|
}
|
|
}
|
|
|
|
self::assertTrue($result);
|
|
}
|
|
}
|