gcucurull/visual-compatibility

New question about the function get_degree_supports()

Opened this issue · 1 comments

hi, gcucurull, Thanks for your works. But i have a question in the function get_degree_supports() in utils.py.
in this line: new_adj = ((pow) == 1).astype(np.float64)

my question is why (pow) == 1? actually, (pow) == 2,3,4... is also have specific meaning, for example, (pow) == 2 means that there are 2 paths between two items. so, why only set (pow) == 1?

I have the same question.. why is it not pow >= 1?