kgraph
kgraph copied to clipboard
how to update the radius in local join?
I am reading the source code. But I have a question about the local join in KGraphConstruction class.
I don't understand the update progress of the radius of Nhood. In init(), the radius is set to numeric_limits
in the later part of init(), each node of pool (0~nhood.L) is initialized by
nn.dist = oracle(nn.id, n);
so, radius wouldn't be 0. I'm learning too.