You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ravi/ravicomp/src/dominator.h

16 lines
395 B

#ifndef ravicomp_DOMINATOR_H
#define ravicomp_DOMINATOR_H
#include "graph.h"
#include <stdio.h>
struct dominator_tree;
struct dominator_tree *raviX_new_dominator_tree(Graph *g);
void raviX_calculate_dominator_tree(struct dominator_tree *state);
void raviX_destroy_dominator_tree(struct dominator_tree *state);
void raviX_dominator_tree_output(struct dominator_tree *tree, FILE *fp);
#endif