summaryrefslogtreecommitdiff
path: root/algos.h
blob: 4f20639c2020a11d42bcb0246f150401a6d54484 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef DEF_ALGOS_H
#define DEF_ALGOS_H

#include "graph.h"

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);

#endif