This file is indexed.

/usr/include/ap_tcons1.h is in libapron-dev 0.9.10-5.2ubuntu3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
/* ************************************************************************* */
/* ap_tcons1.h: tree constraints and arrays */
/* ************************************************************************* */

/* This file is part of the APRON Library, released under LGPL license.  Please
   read the COPYING file packaged in the distribution */

/* normally included from ap_expr1.h */

#ifndef _AP_TCONS1_H_
#define _AP_TCONS1_H_

#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include "ap_coeff.h"
#include "ap_lincons1.h"
#include "ap_tcons0.h"
#include "ap_environment.h"
#include "ap_texpr1.h"

#ifdef __cplusplus
extern "C" {
#endif

/* ====================================================================== */
/* Datatypes */
/* ====================================================================== */

/* Constraints */
typedef struct ap_tcons1_t {
  ap_tcons0_t tcons0;
  ap_environment_t* env;
} ap_tcons1_t;

/* Array of constraints */
typedef struct ap_tcons1_array_t {
  ap_tcons0_array_t tcons0_array;
  ap_environment_t* env;
} ap_tcons1_array_t;

/* ********************************************************************** */
/* I. ap_tcons1_t */
/* ********************************************************************** */

/* ====================================================================== */
/* I.1 Memory management and printing */
/* ====================================================================== */

static inline
ap_tcons1_t ap_tcons1_make(ap_constyp_t constyp,
			   ap_texpr1_t* expr,
			   ap_scalar_t* scalar);
  /* Create a constraint of given type with the given expression.
     The expression and the optional coefficient are not duplicated,
     just pointed to. */

static inline
ap_tcons1_t ap_tcons1_from_lincons1(ap_lincons1_t* cons);
  /* Create a tree constraint from a linear constraint */

static inline
ap_tcons1_t ap_tcons1_copy(ap_tcons1_t* cons);
  /* Duplication */

void ap_tcons1_clear(ap_tcons1_t* cons);
  /* Clear the constraint and set pointers to NULL */

void ap_tcons1_fprint(FILE* stream, ap_tcons1_t* cons);
static inline
void ap_tcons1_print(ap_tcons1_t* cons);
  /* Printing */

/* ====================================================================== */
/* I.2 Tests */
/* ====================================================================== */

/* ====================================================================== */
/* I.3 Access */
/* ====================================================================== */

static inline
ap_environment_t* ap_tcons1_envref(ap_tcons1_t* cons);
  /* Get a reference to the environment. Do not free it. */

static inline
ap_constyp_t* ap_tcons1_constypref(ap_tcons1_t* cons);
  /* Get a reference to the type of constraint */

static inline
ap_scalar_t* ap_tcons1_scalarref(ap_tcons1_t* cons);
  /* Get a reference to the auxiliary coefficient of the constraint */

static inline
ap_texpr1_t ap_tcons1_texpr1ref(ap_tcons1_t* cons);
  /* Get a reference to the underlying expression of the constraint.
     Do not free it: nothing is duplicated.
     Modifying the argument or the result is equivalent, except for
     change of dimensions/environment. */

static inline
ap_tcons0_t* ap_tcons1_tcons0ref(ap_tcons1_t* cons);
  /* Return underlying constraint of level 0.
     Do not free it: nothing is duplicated.
     Modifying the argument or the result is equivalent, except for
     change of dimensions/environment. */

/* ====================================================================== */
/* I.3 Change of dimensions and permutations */
/* ====================================================================== */

bool ap_tcons1_extend_environment(ap_tcons1_t* ncons,
				  ap_tcons1_t* cons,
				  ap_environment_t* nenv);
bool ap_tcons1_extend_environment_with(ap_tcons1_t* cons,
				       ap_environment_t* nenv);

/* ********************************************************************** */
/* II. Array of linear constraints */
/* ********************************************************************** */

/* ====================================================================== */
/* I.1 Memory management and printing */
/* ====================================================================== */

ap_tcons1_array_t ap_tcons1_array_make(ap_environment_t* env, size_t size);
  /* Allocate an array of size constraints.
     The constraints are initialized with NULL pointers,
     so that ap_tcons1_array_free may be safely called */
void ap_tcons1_array_clear(ap_tcons1_array_t* array);
  /* Clear the constraints of the array, and then the array itself */
void ap_tcons1_array_fprint(FILE* stream,
			    ap_tcons1_array_t* array);
static inline
void ap_tcons1_array_print(ap_tcons1_array_t* array);
  /* Printing */

/* ====================================================================== */
/* II.3 Access */
/* ====================================================================== */

static inline
size_t ap_tcons1_array_size(ap_tcons1_array_t* array);
  /* Return the size of the array */
static inline
ap_environment_t* ap_tcons1_array_envref(ap_tcons1_array_t* array);
  /* Return a reference to the environment of the array. Do not free it. */

static inline
void ap_tcons1_array_clear_index(ap_tcons1_array_t* array, size_t index);
  /* Clear the constraint at index index. */

ap_tcons1_t ap_tcons1_array_get(ap_tcons1_array_t* array,
			      size_t index);
  /* Return the linear constraint of the given index
     Nothing is duplicated, and the result should never be cleared.
     Modifying the argument or the result is equivalent, except for
     change of environments */

bool ap_tcons1_array_set(ap_tcons1_array_t* array,
			      size_t index, ap_tcons1_t* cons);
  /* Fill the index of the array with the constraint.
     Assumes ap_environment_is_eq(array->env,cons->env).
     Nothing is duplicated.
     The argument should never be cleared. (its environment is dereferenced).
     If a constraint was already stored, it is first cleared.
     Return true iff problem (index or array->env!=cons->env)
  */

/* ====================================================================== */
/* II.4 Change of dimensions and permutations */
/* ====================================================================== */

bool
ap_tcons1_array_extend_environment_with(ap_tcons1_array_t* array,
					  ap_environment_t* env);
bool
ap_tcons1_array_extend_environment(ap_tcons1_array_t* narray,
				     ap_tcons1_array_t* array,
				     ap_environment_t* env);

/* ********************************************************************** */
/* III. Inline functions definitions */
/* ********************************************************************** */

static inline
ap_tcons1_t ap_tcons1_of_tcons0(ap_environment_t* env, ap_tcons0_t tcons0)
{
  ap_tcons1_t res ;
  res.env = ap_environment_copy(env);
  res.tcons0 = tcons0;
  return res;
}

static inline
ap_tcons1_t ap_tcons1_make(ap_constyp_t constyp,
			   ap_texpr1_t* expr,
			   ap_scalar_t* scalar)
{
  ap_tcons1_t cons;
  cons.tcons0 = ap_tcons0_make(constyp,expr->texpr0,scalar);
  cons.env = expr->env;
  return cons;
}
static inline
ap_tcons1_t ap_tcons1_from_lincons1(ap_lincons1_t* cons){
  return ap_tcons1_of_tcons0(cons->env,
			     ap_tcons0_from_lincons0(&cons->lincons0));
}
static inline
ap_tcons1_t ap_tcons1_copy(ap_tcons1_t* cons){
  return ap_tcons1_of_tcons0(cons->env,
			     ap_tcons0_copy(&cons->tcons0));
}

static inline
void ap_tcons1_print(ap_tcons1_t* cons)
{ ap_tcons1_fprint(stdout,cons); }

static inline
ap_environment_t* ap_tcons1_envref(ap_tcons1_t* cons){
  return cons->env;
}

static inline
ap_constyp_t* ap_tcons1_constypref(ap_tcons1_t* cons){
  return &cons->tcons0.constyp;
}
static inline
ap_scalar_t* ap_tcons1_scalarref(ap_tcons1_t* cons){
  return cons->tcons0.scalar;
}
static inline
ap_texpr1_t ap_tcons1_texpr1ref(ap_tcons1_t* cons){
  ap_texpr1_t expr;
  expr.texpr0 = cons->tcons0.texpr0;
  expr.env = cons->env;
  return expr;
}
static inline
ap_tcons0_t* ap_tcons1_tcons0ref(ap_tcons1_t* cons){
  return &cons->tcons0;
}
static inline
void ap_tcons1_array_print(ap_tcons1_array_t* array)
{ ap_tcons1_array_fprint(stdout,array); }

static inline
size_t ap_tcons1_array_size(ap_tcons1_array_t* array){
  return array->tcons0_array.size;
}

static inline
ap_environment_t* ap_tcons1_array_envref(ap_tcons1_array_t* array){
  return array->env;
}

static inline
void ap_tcons1_array_clear_index(ap_tcons1_array_t* array, size_t index){
  ap_tcons0_clear(&array->tcons0_array.p[index]);
}

#ifdef __cplusplus
}
#endif

#endif