## Proposed change ```php $algo = new Kmeans\Algorithm($init); $algo->setDistanceFunction( fn (Point $a, Point $b) => geocode_dist($a->getCoordinates(), $b->getCoordinates) ); $result = $algo->clusterize($points, $K); ```