clang 20.0.0 (based on r547379) from build 12806354. Bug: http://b/379133546 Test: N/A Change-Id: I2eb8938af55d809de674be63cb30cf27e801862b Upstream-Commit: ad834e67b1105d15ef907f6255d4c96e8e733f57
22 lines
440 B
C
22 lines
440 B
C
#ifndef ISL_VAL_GMP_H
|
|
#define ISL_VAL_GMP_H
|
|
|
|
#include <gmp.h>
|
|
#include <isl/val_type.h>
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
__isl_give isl_val *isl_val_int_from_gmp(isl_ctx *ctx, mpz_t z);
|
|
__isl_give isl_val *isl_val_from_gmp(isl_ctx *ctx,
|
|
const mpz_t n, const mpz_t d);
|
|
int isl_val_get_num_gmp(__isl_keep isl_val *v, mpz_t z);
|
|
int isl_val_get_den_gmp(__isl_keep isl_val *v, mpz_t z);
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif
|