~ubuntu-branches/ubuntu/wily/cloog/wily-proposed

« back to all changes in this revision

Viewing changes to isl/include/isl/val_gmp.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2015-04-24 15:07:57 UTC
  • mfrom: (3.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20150424150757-wumy8mdonvtgf29j
Tags: 0.18.3-1
* New upstream version.
* Update symbols file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
#include <gmp.h>
5
5
#include <isl/val.h>
6
6
 
 
7
#if defined(__cplusplus)
 
8
extern "C" {
 
9
#endif
 
10
 
7
11
__isl_give isl_val *isl_val_int_from_gmp(isl_ctx *ctx, mpz_t z);
8
12
__isl_give isl_val *isl_val_from_gmp(isl_ctx *ctx,
9
13
        const mpz_t n, const mpz_t d);
10
14
int isl_val_get_num_gmp(__isl_keep isl_val *v, mpz_t z);
11
15
int isl_val_get_den_gmp(__isl_keep isl_val *v, mpz_t z);
12
16
 
 
17
#if defined(__cplusplus)
 
18
}
 
19
#endif
 
20
 
13
21
#endif