summaryrefslogtreecommitdiff
path: root/algos.h
diff options
context:
space:
mode:
Diffstat (limited to 'algos.h')
-rw-r--r--algos.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/algos.h b/algos.h
index c86c70a..1edefcb 100644
--- a/algos.h
+++ b/algos.h
@@ -7,7 +7,8 @@ int color_subgraph(const graph g, set s, int dump_colors);
void max_clique_a(const graph g, set k, set c, set *mc);
void max_clique_b(const graph g, set k, set c, set a, set *mc);
-void max_clique_c(const graph g, set k, set c, set a, set *mc, int prev_size);
+void max_clique_c(const graph g, set k, set c, set a, set *mc);
+void max_clique_c_color(const graph g, set k, set c, set a, set *mc, int prev_size);
#endif