repo.or.cz
/
barvinok.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
barvinok_maximize: fix detection of end of domain specification
[barvinok.git]
/
evalue_convert.h
blob
ca891f71755906dff36afe84c1937276708bf1db
1
#ifndef EVALUE_CONVERT
2
#define EVALUE_CONVERT
3
4
#include <barvinok/evalue.h>
5
#include
"argp.h"
6
7
#if defined(__cplusplus)
8
extern
"C"
{
9
#endif
10
11
struct
convert_options
{
12
int
range
;
13
int
convert
;
14
int
combine
;
15
int
floor
;
16
};
17
18
void
evalue_convert
(
evalue
*
EP
,
struct
convert_options
*
options
,
unsigned
nparam
,
19
char
**
params
);
20
21
extern
struct
argp convert_argp
;
22
23
#if defined(__cplusplus)
24
}
25
#endif
26
27
#endif