The maximum clique problem (MC-problem) is a classical NP problem, and we could use branch-bound to solve this problem effectively. Recently, I try to develop an algorithm to find out the clique that has the maximum edge-weighted clique in a graph, as we know, maximum edge-weighted clique problem (MEC-problem).
I have found some properties about this problem. First, the clique must be a maximal clique which does not belong to any larger clique. Then the sum of edges of the clique must be the largest of all maximal clique.
However, traditional algorithm of MC-problem will not be effective on MEC-problem. Therefore, I want to find an effective algorithm on MEC-problem, especially branch-bound algorithm.