SimpleDBSCAN
SimpleDBSCAN copied to clipboard
Warning
int Run(TVector* V, const uint dim, const Float eps, const uint min, const DistanceFunc& disfunc = [](const T& t1 , const T& t2 )->Float { return 0; });
the following ling produces a warning of unused variable, removing the t1 and t2 variables would solve the warning:
Run(TVector* V, const uint dim, const Float eps, const uint min, const DistanceFunc& disfunc = [](const T& , const T& )->Float { return 0; });