using System.Collections.Generic; namespace Dbscan { /// /// The result of running the DBSCAN algorithm on a set of data. /// /// The type of elements in the cluster. public class ClusterSet { /// /// A list of the clusters that have been identified. /// public IReadOnlyList> Clusters { get; set; } /// /// A list of the items that were not identified as being part of a cluster. /// public IReadOnlyList UnclusteredObjects { get; set; } } }