Skip to content
Snippets Groups Projects
Commit e03eb88c authored by Kilian Verhetsel's avatar Kilian Verhetsel
Browse files

Fixed code to find cliques in graph

Nodes should be rejected based on the existence of an edge, not based on
whether that edge has already been visited or not.
parent ef75ece7
No related branches found
No related tags found
No related merge requests found
...@@ -1051,29 +1051,27 @@ public: ...@@ -1051,29 +1051,27 @@ public:
}; };
/** /**
* Function object that checks if the edge between a fixed vertex (passed as a * Function object that checks if there exisits an edge between a fixed vertex
* parameter to the constructor) and its argument has already been visited by * (passed as a parameter to the constructor) and its argument.
* the algorithm.
* *
* This is used in find_cliques. * This is used in find_cliques.
*/ */
template<typename Graph> template<typename Graph>
class edge_visited_test { class has_no_edge_test {
typedef typename boost::graph_traits<Graph>::vertex_descriptor vertex; typedef typename boost::graph_traits<Graph>::vertex_descriptor vertex;
const std::set<std::pair<vertex, vertex>> &_visited_edges; const Graph &_graph;
vertex _v; vertex _v;
public: public:
typedef vertex argument_type; typedef vertex argument_type;
typedef bool result_type; typedef bool result_type;
edge_visited_test(const std::set<std::pair<vertex, vertex>> &visited_edges, has_no_edge_test(const Graph &graph, vertex v):
vertex v): _visited_edges(visited_edges), _v(v) _graph(graph), _v(v)
{} {}
bool operator()(vertex w) const { bool operator()(vertex w) const {
return _visited_edges.find(std::make_pair(_v, w)) == return !edge(_v, w, _graph).second;
_visited_edges.end();
} }
}; };
...@@ -1111,12 +1109,11 @@ void find_cliques(const Graph &graph, OutputIterator out) { ...@@ -1111,12 +1109,11 @@ void find_cliques(const Graph &graph, OutputIterator out) {
while (!candidates.empty()) { while (!candidates.empty()) {
vertex v = candidates.back(); vertex v = candidates.back();
candidates.pop_back(); candidates.pop_back();
contents.push_back(v); contents.push_back(v);
candidates.erase( candidates.erase(
std::remove_if(candidates.begin(), candidates.end(), std::remove_if(candidates.begin(), candidates.end(),
edge_visited_test<Graph>(visited_edges, v)), has_no_edge_test<Graph>(graph, v)),
candidates.end()); candidates.end());
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment