blob: c86c70aac1a5b57107cf68099d29ffeecbc97903 (
plain) (
tree)
|
|
#ifndef DEF_ALGOS_H
#define DEF_ALGOS_H
#include "graph.h"
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);
#endif
|