clang 20.0.0 (based on r547379) from build 12806354. Bug: http://b/379133546 Test: N/A Change-Id: I2eb8938af55d809de674be63cb30cf27e801862b Upstream-Commit: ad834e67b1105d15ef907f6255d4c96e8e733f57
38 lines
750 B
C
38 lines
750 B
C
/*
|
|
* Copyright 2008-2009 Katholieke Universiteit Leuven
|
|
*
|
|
* Use of this software is governed by the MIT license
|
|
*
|
|
* Written by Sven Verdoolaege, K.U.Leuven, Departement
|
|
* Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
|
|
*/
|
|
|
|
#ifndef ISL_LP_H
|
|
#define ISL_LP_H
|
|
|
|
#include <isl/aff.h>
|
|
#include <isl/val_type.h>
|
|
#include <isl/set_type.h>
|
|
|
|
enum isl_lp_result {
|
|
isl_lp_error = -1,
|
|
isl_lp_ok = 0,
|
|
isl_lp_unbounded,
|
|
isl_lp_empty
|
|
};
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
__isl_give isl_val *isl_basic_set_min_lp_val(__isl_keep isl_basic_set *bset,
|
|
__isl_keep isl_aff *obj);
|
|
__isl_give isl_val *isl_basic_set_max_lp_val(__isl_keep isl_basic_set *bset,
|
|
__isl_keep isl_aff *obj);
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif
|