https://github.com/DunbrackLab/PP2A_PeptideDock
Tip revision: 24a52f88800089b4a365df7837e240d5ea351bed authored by Qifang on 17 September 2021, 15:19:35 UTC
Add files via upload
Add files via upload
Tip revision: 24a52f8
DbscanPoint.cs
namespace DbscanImplementation
{
public class DbscanPoint<T>
{
public bool IsVisited;
public T ClusterPoint;
public int ClusterId;
public DbscanPoint(T x)
{
ClusterPoint = x;
IsVisited = false;
ClusterId = (int)ClusterIds.Unclassified;
}
}
}