barvinok_maximize: fix detection of end of domain specification
[barvinok.git] / evalue_convert.h
blobca891f71755906dff36afe84c1937276708bf1db
1 #ifndef EVALUE_CONVERT
2 #define EVALUE_CONVERT
4 #include <barvinok/evalue.h>
5 #include "argp.h"
7 #if defined(__cplusplus)
8 extern "C" {
9 #endif
11 struct convert_options {
12 int range;
13 int convert;
14 int combine;
15 int floor;
18 void evalue_convert(evalue *EP, struct convert_options *options, unsigned nparam,
19 char **params);
21 extern struct argp convert_argp;
23 #if defined(__cplusplus)
25 #endif
27 #endif