constraints.h   constraints.h 
skipping to change at line 75 skipping to change at line 75
void cloog_constraint_set_normalize(CloogConstraintSet *, int); void cloog_constraint_set_normalize(CloogConstraintSet *, int);
void cloog_constraint_set_free(CloogConstraintSet *); void cloog_constraint_set_free(CloogConstraintSet *);
int cloog_constraint_set_contains_level(CloogConstraintSet *const raints, int cloog_constraint_set_contains_level(CloogConstraintSet *const raints,
int level, int nb_parameters); int level, int nb_parameters);
int cloog_constraint_set_total_dimension(CloogConstraintSet *cons traints); int cloog_constraint_set_total_dimension(CloogConstraintSet *cons traints);
int cloog_constraint_set_n_iterators(CloogConstraintSet *constrai nts, int cloog_constraint_set_n_iterators(CloogConstraintSet *constrai nts,
int nb_parameters); int nb_parameters);
CloogConstraintSet *cloog_constraint_set_copy(CloogConstraintSet *); CloogConstraintSet *cloog_constraint_set_copy(CloogConstraintSet *);
CloogConstraintSet *cloog_constraint_set_simplify(CloogConstraintSet *, Clo ogEqualities *, int, int); CloogConstraintSet *cloog_constraint_set_simplify(CloogConstraintSet *, Clo ogEqualities *, int, int);
int cloog_constraint_needs_reduction(CloogConstraint *upper, int level);
CloogConstraintSet *cloog_constraint_set_for_reduction(CloogConstraint *upp er, CloogConstraintSet *cloog_constraint_set_for_reduction(CloogConstraint *upp er,
CloogConstraint *lower); CloogConstraint *lower);
CloogConstraintSet *cloog_constraint_set_reduce(CloogConstraintSet *constra ints, CloogConstraintSet *cloog_constraint_set_reduce(CloogConstraintSet *constra ints,
int level, CloogEqualities *equal, int nb_par, cloog_int_t *bound); int level, CloogEqualities *equal, int nb_par, cloog_int_t *bound);
int cloog_constraint_set_foreach_constraint(CloogConstraintSet *constraints , int cloog_constraint_set_foreach_constraint(CloogConstraintSet *constraints ,
int (*fn)(CloogConstraint *constraint, void *user), void *user); int (*fn)(CloogConstraint *constraint, void *user), void *user);
int cloog_constraint_is_valid(CloogConstraint *constraint); int cloog_constraint_is_valid(CloogConstraint *constraint);
CloogConstraint *cloog_constraint_copy(CloogConstraint *constraint); CloogConstraint *cloog_constraint_copy(CloogConstraint *constraint);
void cloog_constraint_release(CloogConstraint *constraint); void cloog_constraint_release(CloogConstraint *constraint);
CloogConstraint *cloog_constraint_invalid(void); CloogConstraint *cloog_constraint_invalid(void);
 End of changes. 1 change blocks. 
0 lines changed or deleted 1 lines changed or added


 point.h   point.h 
#ifndef ISL_POINT_H #ifndef ISL_POINT_H
#define ISL_POINT_H #define ISL_POINT_H
#include <stdio.h> #include <stdio.h>
#include <isl/dim.h>
#if defined(__cplusplus) #if defined(__cplusplus)
extern "C" { extern "C" {
#endif #endif
struct isl_point; struct isl_point;
typedef struct isl_point isl_point; typedef struct isl_point isl_point;
__isl_give isl_point *isl_point_zero(__isl_take isl_dim *dim); __isl_give isl_point *isl_point_zero(__isl_take isl_dim *dim);
__isl_give isl_point *isl_point_copy(__isl_keep isl_point *pnt); __isl_give isl_point *isl_point_copy(__isl_keep isl_point *pnt);
 End of changes. 1 change blocks. 
0 lines changed or deleted 1 lines changed or added


 seq.h   seq.h 
skipping to change at line 17 skipping to change at line 17
* Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
*/ */
#ifndef ISL_SEQ_H #ifndef ISL_SEQ_H
#define ISL_SEQ_H #define ISL_SEQ_H
#include <sys/types.h> #include <sys/types.h>
#include <isl/int.h> #include <isl/int.h>
#include <isl/ctx.h> #include <isl/ctx.h>
#if defined(__cplusplus)
extern "C" {
#endif
/* Some common operations on sequences of isl_int's */ /* Some common operations on sequences of isl_int's */
void isl_seq_clr(isl_int *p, unsigned len); void isl_seq_clr(isl_int *p, unsigned len);
void isl_seq_set(isl_int *p, isl_int v, unsigned len); void isl_seq_set(isl_int *p, isl_int v, unsigned len);
void isl_seq_neg(isl_int *dat, isl_int *src, unsigned len); void isl_seq_neg(isl_int *dat, isl_int *src, unsigned len);
void isl_seq_cpy(isl_int *dst, isl_int *src, unsigned len); void isl_seq_cpy(isl_int *dst, isl_int *src, unsigned len);
void isl_seq_submul(isl_int *dst, isl_int f, isl_int *src, unsigned len); void isl_seq_submul(isl_int *dst, isl_int f, isl_int *src, unsigned len);
void isl_seq_swp_or_cpy(isl_int *dst, isl_int *src, unsigned len); void isl_seq_swp_or_cpy(isl_int *dst, isl_int *src, unsigned len);
void isl_seq_scale(isl_int *dst, isl_int *src, isl_int f, unsigned len); void isl_seq_scale(isl_int *dst, isl_int *src, isl_int f, unsigned len);
void isl_seq_scale_down(isl_int *dst, isl_int *src, isl_int f, unsigned len ); void isl_seq_scale_down(isl_int *dst, isl_int *src, isl_int f, unsigned len );
skipping to change at line 49 skipping to change at line 53
int isl_seq_first_non_zero(isl_int *p, unsigned len); int isl_seq_first_non_zero(isl_int *p, unsigned len);
int isl_seq_last_non_zero(isl_int *p, unsigned len); int isl_seq_last_non_zero(isl_int *p, unsigned len);
int isl_seq_abs_min_non_zero(isl_int *p, unsigned len); int isl_seq_abs_min_non_zero(isl_int *p, unsigned len);
int isl_seq_eq(isl_int *p1, isl_int *p2, unsigned len); int isl_seq_eq(isl_int *p1, isl_int *p2, unsigned len);
int isl_seq_cmp(isl_int *p1, isl_int *p2, unsigned len); int isl_seq_cmp(isl_int *p1, isl_int *p2, unsigned len);
int isl_seq_is_neg(isl_int *p1, isl_int *p2, unsigned len); int isl_seq_is_neg(isl_int *p1, isl_int *p2, unsigned len);
uint32_t isl_seq_get_hash(isl_int *p, unsigned len); uint32_t isl_seq_get_hash(isl_int *p, unsigned len);
uint32_t isl_seq_get_hash_bits(isl_int *p, unsigned len, unsigned bits); uint32_t isl_seq_get_hash_bits(isl_int *p, unsigned len, unsigned bits);
#if defined(__cplusplus)
}
#endif
#endif #endif
 End of changes. 2 change blocks. 
0 lines changed or deleted 8 lines changed or added


 stdint.h   stdint.h 
#ifndef _ISL_INCLUDE_ISL_STDINT_H #ifndef _ISL_INCLUDE_ISL_STDINT_H
#define _ISL_INCLUDE_ISL_STDINT_H 1 #define _ISL_INCLUDE_ISL_STDINT_H 1
#ifndef _GENERATED_STDINT_H #ifndef _GENERATED_STDINT_H
#define _GENERATED_STDINT_H "isl 0.05" #define _GENERATED_STDINT_H "isl 0.05.1"
/* generated using gnu compiler gcc (SUSE Linux) 4.5.1 20101208 [gcc-4_5-br anch revision 167585] */ /* generated using gnu compiler gcc (SUSE Linux) 4.5.1 20101208 [gcc-4_5-br anch revision 167585] */
#define _STDINT_HAVE_STDINT_H 1 #define _STDINT_HAVE_STDINT_H 1
#include <stdint.h> #include <stdint.h>
#endif #endif
#endif #endif
 End of changes. 1 change blocks. 
1 lines changed or deleted 1 lines changed or added


 version.h   version.h 
skipping to change at line 36 skipping to change at line 36
#ifndef CLOOG_VERSION_H #ifndef CLOOG_VERSION_H
#define CLOOG_VERSION_H #define CLOOG_VERSION_H
#if defined(__cplusplus) #if defined(__cplusplus)
extern "C" extern "C"
{ {
#endif #endif
#define CLOOG_VERSION_MAJOR 0 #define CLOOG_VERSION_MAJOR 0
#define CLOOG_VERSION_MINOR 16 #define CLOOG_VERSION_MINOR 16
#define CLOOG_VERSION_REVISION 0 #define CLOOG_VERSION_REVISION 1
const char *cloog_version(void); const char *cloog_version(void);
int cloog_version_major(void); int cloog_version_major(void);
int cloog_version_minor(void); int cloog_version_minor(void);
int cloog_version_revision(void); int cloog_version_revision(void);
#if defined(__cplusplus) #if defined(__cplusplus)
 End of changes. 1 change blocks. 
1 lines changed or deleted 1 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/