[][src]Module vrp_core::algorithms::dbscan

This module contains an implementation of Density-Based Spatial Clustering of Applications with Noise (DBSCAN)

Functions

create_clusters

Creates clusters of items using DBSCAN (Density-Based Spatial Clustering of Applications with Noise) algorithm. NOTE: neighborhood_fn shall return point itself.

Type Definitions

Cluster

Represents a cluster of items.

NeighborhoodFn

A function which returns neighbors of given item with given epsilon.