summaryrefslogtreecommitdiff
path: root/algos.h
diff options
context:
space:
mode:
authorAlex AUVOLAT <alex.auvolat@ens.fr>2013-12-10 10:26:12 +0100
committerAlex AUVOLAT <alex.auvolat@ens.fr>2013-12-10 10:26:12 +0100
commit3a1b146a5761db20d243ae5224a962eeca19b506 (patch)
tree630d0ee85f4116e6b78c4814f2e92df85b5927b7 /algos.h
parent919e3698123e07afdeedef82df645cd7bb02d32e (diff)
downloadAlgoProg-Projet-3a1b146a5761db20d243ae5224a962eeca19b506.tar.gz
AlgoProg-Projet-3a1b146a5761db20d243ae5224a962eeca19b506.zip
Code reorganization
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