00001
00002
00003
00004
00005
00006
00007 #ifndef _eval_ehrhart_H_
00008 #define _eval_ehrhart_H_
00009 #ifdef __STDC__
00010
00011 extern double compute_evalue ( evalue *e, Value *list_args );
00012 extern Value *compute_poly (Enumeration *en, Value *list_args);
00013 extern int in_domain(Polyhedron *P, Value *list_args);
00014
00015 #else
00016
00017 extern double compute_evalue ();
00018 extern Value *compute_poly ();
00019 extern int in_domain();
00020
00021 #endif
00022 #endif
00023
00024
00025