remove (recursive) dependency on isa project
[barvinok.git] / count_solutions.h
blobe4b025474aeaf83f615d563351f04ca53c307d90
1 /* Erin Parker (parker@cs.unc.edu), March 2004 */
3 #include <stdlib.h>
5 #ifdef __cplusplus
6 extern "C" {
7 #endif
9 #include "dfa.h"
11 /* Functions defined in construction.c */
12 DFA* build_DFA_eq(int, int*, int, int*);
13 DFA* build_DFA_ineq(int, int*, int, int*);
15 /* Function defined in count.c */
16 double count_accepting_paths(DFA*, int, int);
18 #ifdef __cplusplus
20 #endif
22 double count_solutions(Relation& r);