maxfuse.utils.dict_to_list
- maxfuse.utils.dict_to_list(dict_)[source]
Convert dict_ into a list.
- Parameters:
dict (dict) – A dict representing a matching. The structure is {row: [(col1, val1), (col2, val2), …]}
- Returns:
res – A list of length three, say (rows, cols, vals). Each element is further a list and each matched pair is (rows[i], cols[i]), and their similarity score is vals[i].