Problems
Clique covering
The results of find clique may overlap with each other
solution: using package "networkx" to find the max clique , remove the node and so on.
After find all clique, each clique represents a core set, some clique only has only element ( 1 trajectory), should we identify it as a core set?
ex.[[3, 2, 10, 11, 0, 9, 6, 12, 13], [1, 4], [5, 7], [8], [16], [14], [15]]
This result may affects the calculation of benefit.
denotes the mumber of vertices that have no edge from core set Ci to Cj and is the threshold used in the clure-graph.
assum that:
is C = {4}
is C = {3,2,10,11,0,9,6,12,13}
the result of may equals to zero, and C4 seems merge to other cluster easily.