summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorMendes Oulamara <oulamara@clipper.ens.fr>2013-12-06 18:08:37 +0100
committerMendes Oulamara <oulamara@clipper.ens.fr>2013-12-06 18:08:37 +0100
commit3c8b380b98b8fd5dcbaa3a254ab71ac20a485099 (patch)
treed294b3ec1ea86de96e57dcf50125a0cb7552b0e7 /main.c
parent50b5699f9b6d887c31e546168d9e588b36e3f876 (diff)
downloadAlgoProg-Projet-3c8b380b98b8fd5dcbaa3a254ab71ac20a485099.tar.gz
AlgoProg-Projet-3c8b380b98b8fd5dcbaa3a254ab71ac20a485099.zip
Addition of sets_equal to bitsets
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