hide isl_options structure
[isl.git] / include / isl / options.h
blob41616ad41ac7ef6860951ef0d46fcc8c0455426f
1 /*
2 * Copyright 2008-2009 Katholieke Universiteit Leuven
4 * Use of this software is governed by the GNU LGPLv2.1 license
6 * Written by Sven Verdoolaege, K.U.Leuven, Departement
7 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
8 */
10 #ifndef ISL_OPTIONS_H
11 #define ISL_OPTIONS_H
13 #include <isl/arg.h>
14 #include <isl/ctx.h>
16 #if defined(__cplusplus)
17 extern "C" {
18 #endif
20 struct isl_options;
22 ISL_ARG_DECL(isl_options, struct isl_options, isl_options_args)
24 #define ISL_BOUND_BERNSTEIN 0
25 #define ISL_BOUND_RANGE 1
26 int isl_options_set_bound(isl_ctx *ctx, int val);
27 int isl_options_get_bound(isl_ctx *ctx);
29 int isl_options_set_gbr_only_first(isl_ctx *ctx, int val);
30 int isl_options_get_gbr_only_first(isl_ctx *ctx);
32 #if defined(__cplusplus)
34 #endif
36 #endif