Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
AffinityPropagation
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2/**
3 * Jingga
4 *
5 * PHP Version 8.1
6 *
7 * @package   phpOMS\Algorithm\Clustering
8 * @copyright Dennis Eichhorn
9 * @license   OMS License 2.0
10 * @version   1.0.0
11 * @link      https://jingga.app
12 */
13declare(strict_types=1);
14
15namespace phpOMS\Algorithm\Clustering;
16
17/**
18 * Clustering points
19 *
20 * @package phpOMS\Algorithm\Clustering
21 * @license OMS License 2.0
22 * @link    https://jingga.app
23 * @see     ./clustering_overview.png
24 * @since   1.0.0
25 *
26 * @todo Implement
27 */
28final class AffinityPropagation
29{
30}