volume.c: drop redundant arguments to volume_simplex
[barvinok.git] / evalue_convert.h
blobea82d77da8616cfd5aa615f66bc5a1b4c78e9b6e
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;
16 int list;
19 int evalue_convert(evalue *EP, struct convert_options *options,
20 int verbose, unsigned nparam, char **params);
22 extern struct argp convert_argp;
24 #if defined(__cplusplus)
26 #endif
28 #endif