volume.c: volume_triangulate: use vertex instead of barycenter by default
[barvinok.git] / barvinok / options.h
blobfdd82f48ddd88c0c96333485fca9de4e36272936
1 #ifndef BARVINOK_OPTIONS_H
2 #define BARVINOK_OPTIONS_H
4 #include <stdio.h>
6 #if defined(__cplusplus)
7 extern "C" {
8 #endif
10 struct barvinok_stats {
11 long base_cones;
14 void barvinok_stats_clear(struct barvinok_stats *stats);
15 void barvinok_stats_print(struct barvinok_stats *stats, FILE *out);
17 struct barvinok_options {
18 /* PolyLib options */
19 unsigned MaxRays;
21 /* NTL options */
22 /* LLL reduction parameter delta=LLL_a/LLL_b */
23 long LLL_a;
24 long LLL_b;
26 /* barvinok options */
28 * 0: no
29 * 1: depth first
30 * 2: breadth first
32 #define BV_SPECIALIZATION_BF 2
33 #define BV_SPECIALIZATION_DF 1
34 #define BV_SPECIALIZATION_RANDOM 0
35 int incremental_specialization;
37 unsigned long max_index;
38 int primal;
39 int lookup_table;
40 int count_sample_infinite;
42 int try_Delaunay_triangulation;
44 #define BV_APPROX_SIGN_NONE 0
45 #define BV_APPROX_SIGN_APPROX 1
46 #define BV_APPROX_SIGN_LOWER 2
47 #define BV_APPROX_SIGN_UPPER 3
48 int polynomial_approximation;
49 #define BV_APPROX_NONE 0
50 #define BV_APPROX_DROP 1
51 #define BV_APPROX_SCALE 2
52 #define BV_APPROX_VOLUME 3
53 int approximation_method;
54 #define BV_APPROX_SCALE_FAST (1 << 0)
55 #define BV_APPROX_SCALE_NARROW (1 << 1)
56 #define BV_APPROX_SCALE_NARROW2 (1 << 2)
57 #define BV_APPROX_SCALE_CHAMBER (1 << 3)
58 int scale_flags;
59 #define BV_VOL_LIFT 0
60 #define BV_VOL_VERTEX 1
61 #define BV_VOL_BARYCENTER 2
62 int volume_triangulate;
64 /* basis reduction options */
65 #define BV_GBR_NONE 0
66 #define BV_GBR_GLPK 1
67 #define BV_GBR_CDD 2
68 int gbr_lp_solver;
70 /* bernstein options */
71 #define BV_BERNSTEIN_NONE 0
72 #define BV_BERNSTEIN_MAX 1
73 #define BV_BERNSTEIN_MIN -1
74 int bernstein_optimize;
76 #define BV_BERNSTEIN_FACTORS 1
77 #define BV_BERNSTEIN_INTERVALS 2
78 int bernstein_recurse;
80 struct barvinok_stats *stats;
83 struct barvinok_options *barvinok_options_new_with_defaults();
84 void barvinok_options_free(struct barvinok_options *options);
86 #define BV_OPT_SPECIALIZATION 256
87 #define BV_OPT_PRIMAL 257
88 #define BV_OPT_TABLE 258
89 #define BV_OPT_GBR 259
90 #define BV_OPT_MAXINDEX 260
91 #define BV_OPT_POLAPPROX 261
92 #define BV_OPT_APPROX 262
93 #define BV_OPT_SCALE 263
94 #define BV_OPT_VOL 264
95 #define BV_OPT_LAST 264
97 #define BV_GRP_APPROX 1
98 #define BV_GRP_LAST 1
100 struct argp;
101 extern struct argp barvinok_argp;
103 #if defined(__cplusplus)
105 #endif
107 #endif