This commit is contained in:
BobLd
2020-03-04 10:55:15 +00:00
committed by Eliot Jones
parent c4309ef31e
commit dbdef7f195

View File

@@ -29,8 +29,6 @@
throw new ArgumentException("KdTree(): candidates cannot be null or empty.", nameof(candidates));
}
Console.WriteLine("New");
Root = BuildTree(Enumerable.Range(0, candidates.Count).Zip(candidates, (e, p) => (e, candidatesPointFunc(p), p)).ToArray(), 0);
}