summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/main.c b/main.c
index e5b3efc..8a3d113 100644
--- a/main.c
+++ b/main.c
@@ -13,16 +13,6 @@
#include "graph.h"
#include "algos.h"
-/*
- max_clique calculates the maximum clique in a graph. Arguments :
- - g : the graph where the clique is looked for
- - k : the clique we are currently examining
- - c : the graph nodes we can potentially add to the clique
- - a : the nodes we can actually add to the clique
- - mc : a pointer to the set containing the maximum clique found until now
- Returns nothing (result is in *mc).
-*/
-
// Driver