This file is indexed.

/usr/lib/ocaml/z3/z3enums.mli is in libz3-ocaml-dev 4.4.0-5.

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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
(* Automatically generated file *)

(** The enumeration types of Z3. *)

(** lbool *)
type lbool =
  | L_TRUE 
  | L_UNDEF 
  | L_FALSE 

(** Convert lbool to int*)
val int_of_lbool : lbool -> int
(** Convert int to lbool*)
val lbool_of_int : int -> lbool

(** symbol_kind *)
type symbol_kind =
  | INT_SYMBOL 
  | STRING_SYMBOL 

(** Convert symbol_kind to int*)
val int_of_symbol_kind : symbol_kind -> int
(** Convert int to symbol_kind*)
val symbol_kind_of_int : int -> symbol_kind

(** parameter_kind *)
type parameter_kind =
  | PARAMETER_FUNC_DECL 
  | PARAMETER_DOUBLE 
  | PARAMETER_SYMBOL 
  | PARAMETER_INT 
  | PARAMETER_AST 
  | PARAMETER_SORT 
  | PARAMETER_RATIONAL 

(** Convert parameter_kind to int*)
val int_of_parameter_kind : parameter_kind -> int
(** Convert int to parameter_kind*)
val parameter_kind_of_int : int -> parameter_kind

(** sort_kind *)
type sort_kind =
  | BV_SORT 
  | FINITE_DOMAIN_SORT 
  | ARRAY_SORT 
  | UNKNOWN_SORT 
  | RELATION_SORT 
  | REAL_SORT 
  | INT_SORT 
  | FLOATING_POINT_SORT 
  | ROUNDING_MODE_SORT 
  | UNINTERPRETED_SORT 
  | BOOL_SORT 
  | DATATYPE_SORT 

(** Convert sort_kind to int*)
val int_of_sort_kind : sort_kind -> int
(** Convert int to sort_kind*)
val sort_kind_of_int : int -> sort_kind

(** ast_kind *)
type ast_kind =
  | VAR_AST 
  | SORT_AST 
  | QUANTIFIER_AST 
  | UNKNOWN_AST 
  | FUNC_DECL_AST 
  | NUMERAL_AST 
  | APP_AST 

(** Convert ast_kind to int*)
val int_of_ast_kind : ast_kind -> int
(** Convert int to ast_kind*)
val ast_kind_of_int : int -> ast_kind

(** decl_kind *)
type decl_kind =
  | OP_LABEL 
  | OP_PR_REWRITE 
  | OP_UNINTERPRETED 
  | OP_SUB 
  | OP_ZERO_EXT 
  | OP_ADD 
  | OP_FPA_ABS 
  | OP_IS_INT 
  | OP_BREDOR 
  | OP_FPA_IS_INF 
  | OP_BNOT 
  | OP_BNOR 
  | OP_PR_CNF_STAR 
  | OP_FPA_TO_UBV 
  | OP_RA_JOIN 
  | OP_FPA_RM_NEAREST_TIES_TO_AWAY 
  | OP_LE 
  | OP_SET_UNION 
  | OP_PR_UNDEF 
  | OP_BREDAND 
  | OP_LT 
  | OP_RA_UNION 
  | OP_FPA_IS_SUBNORMAL 
  | OP_BADD 
  | OP_BUREM0 
  | OP_OEQ 
  | OP_PR_MODUS_PONENS 
  | OP_RA_CLONE 
  | OP_REPEAT 
  | OP_RA_NEGATION_FILTER 
  | OP_FPA_NAN 
  | OP_BSMOD0 
  | OP_FPA_GT 
  | OP_BLSHR 
  | OP_BASHR 
  | OP_PR_UNIT_RESOLUTION 
  | OP_ROTATE_RIGHT 
  | OP_ARRAY_DEFAULT 
  | OP_PR_PULL_QUANT 
  | OP_PR_APPLY_DEF 
  | OP_PR_REWRITE_STAR 
  | OP_IDIV 
  | OP_PR_GOAL 
  | OP_FPA_RM_TOWARD_POSITIVE 
  | OP_PR_IFF_TRUE 
  | OP_FPA_LT 
  | OP_FPA_IS_NORMAL 
  | OP_LABEL_LIT 
  | OP_FPA_TO_IEEE_BV 
  | OP_FPA_LE 
  | OP_BOR 
  | OP_PR_SYMMETRY 
  | OP_TRUE 
  | OP_SET_COMPLEMENT 
  | OP_CONCAT 
  | OP_PR_NOT_OR_ELIM 
  | OP_IFF 
  | OP_BSHL 
  | OP_PR_TRANSITIVITY 
  | OP_FPA_ROUND_TO_INTEGRAL 
  | OP_SGT 
  | OP_RA_WIDEN 
  | OP_PR_DEF_INTRO 
  | OP_NOT 
  | OP_PR_QUANT_INTRO 
  | OP_FPA_PLUS_ZERO 
  | OP_UGT 
  | OP_FPA_NEG 
  | OP_DT_RECOGNISER 
  | OP_SET_INTERSECT 
  | OP_BSREM 
  | OP_RA_STORE 
  | OP_SLT 
  | OP_ROTATE_LEFT 
  | OP_PR_NNF_NEG 
  | OP_FPA_EQ 
  | OP_PR_REFLEXIVITY 
  | OP_ULEQ 
  | OP_BIT1 
  | OP_BIT0 
  | OP_FPA_MIN 
  | OP_PB_AT_MOST 
  | OP_EQ 
  | OP_FPA_SUB 
  | OP_BMUL 
  | OP_ARRAY_MAP 
  | OP_STORE 
  | OP_PR_HYPOTHESIS 
  | OP_RA_RENAME 
  | OP_AND 
  | OP_TO_REAL 
  | OP_DT_UPDATE_FIELD 
  | OP_PR_NNF_POS 
  | OP_PR_AND_ELIM 
  | OP_FPA_TO_SBV 
  | OP_MOD 
  | OP_BUDIV0 
  | OP_FPA_MAX 
  | OP_PR_TRUE 
  | OP_BNAND 
  | OP_PR_ELIM_UNUSED_VARS 
  | OP_RA_FILTER 
  | OP_FPA_ADD 
  | OP_FD_LT 
  | OP_RA_EMPTY 
  | OP_DIV 
  | OP_ANUM 
  | OP_MUL 
  | OP_UGEQ 
  | OP_BSREM0 
  | OP_PR_TH_LEMMA 
  | OP_FPA_MINUS_INF 
  | OP_BXOR 
  | OP_DISTINCT 
  | OP_PR_IFF_FALSE 
  | OP_BV2INT 
  | OP_EXT_ROTATE_LEFT 
  | OP_PR_PULL_QUANT_STAR 
  | OP_BSUB 
  | OP_PR_ASSERTED 
  | OP_BXNOR 
  | OP_FPA_IS_ZERO 
  | OP_EXTRACT 
  | OP_PR_DER 
  | OP_DT_CONSTRUCTOR 
  | OP_GT 
  | OP_BUREM 
  | OP_IMPLIES 
  | OP_SLEQ 
  | OP_GE 
  | OP_PB_GE 
  | OP_BAND 
  | OP_ITE 
  | OP_AS_ARRAY 
  | OP_FPA_IS_POSITIVE 
  | OP_RA_SELECT 
  | OP_CONST_ARRAY 
  | OP_FPA_TO_REAL 
  | OP_BSDIV 
  | OP_FPA_IS_NEGATIVE 
  | OP_OR 
  | OP_FPA_FP 
  | OP_PR_HYPER_RESOLVE 
  | OP_AGNUM 
  | OP_FPA_IS_NAN 
  | OP_PR_PUSH_QUANT 
  | OP_FPA_FMA 
  | OP_BSMOD 
  | OP_PR_IFF_OEQ 
  | OP_INTERP 
  | OP_PR_LEMMA 
  | OP_FPA_TO_FP_UNSIGNED 
  | OP_SET_SUBSET 
  | OP_FPA_SQRT 
  | OP_PB_LE 
  | OP_FPA_GE 
  | OP_FPA_DIV 
  | OP_FPA_RM_TOWARD_ZERO 
  | OP_SELECT 
  | OP_RA_PROJECT 
  | OP_BNEG 
  | OP_UMINUS 
  | OP_REM 
  | OP_FPA_RM_NEAREST_TIES_TO_EVEN 
  | OP_TO_INT 
  | OP_PR_QUANT_INST 
  | OP_SGEQ 
  | OP_POWER 
  | OP_XOR3 
  | OP_RA_IS_EMPTY 
  | OP_CARRY 
  | OP_DT_ACCESSOR 
  | OP_PR_TRANSITIVITY_STAR 
  | OP_PR_NNF_STAR 
  | OP_PR_COMMUTATIVITY 
  | OP_ULT 
  | OP_FPA_MUL 
  | OP_BSDIV0 
  | OP_SET_DIFFERENCE 
  | OP_INT2BV 
  | OP_FPA_NUM 
  | OP_FPA_MINUS_ZERO 
  | OP_FPA_REM 
  | OP_XOR 
  | OP_FPA_TO_FP 
  | OP_PR_MODUS_PONENS_OEQ 
  | OP_FPA_RM_TOWARD_NEGATIVE 
  | OP_BNUM 
  | OP_BUDIV 
  | OP_PR_MONOTONICITY 
  | OP_PR_DEF_AXIOM 
  | OP_FALSE 
  | OP_EXT_ROTATE_RIGHT 
  | OP_PR_DISTRIBUTIVITY 
  | OP_SIGN_EXT 
  | OP_FPA_PLUS_INF 
  | OP_PR_SKOLEMIZE 
  | OP_BCOMP 
  | OP_RA_COMPLEMENT 

(** Convert decl_kind to int*)
val int_of_decl_kind : decl_kind -> int
(** Convert int to decl_kind*)
val decl_kind_of_int : int -> decl_kind

(** param_kind *)
type param_kind =
  | PK_BOOL 
  | PK_SYMBOL 
  | PK_OTHER 
  | PK_INVALID 
  | PK_UINT 
  | PK_STRING 
  | PK_DOUBLE 

(** Convert param_kind to int*)
val int_of_param_kind : param_kind -> int
(** Convert int to param_kind*)
val param_kind_of_int : int -> param_kind

(** ast_print_mode *)
type ast_print_mode =
  | PRINT_SMTLIB2_COMPLIANT 
  | PRINT_SMTLIB_COMPLIANT 
  | PRINT_SMTLIB_FULL 
  | PRINT_LOW_LEVEL 

(** Convert ast_print_mode to int*)
val int_of_ast_print_mode : ast_print_mode -> int
(** Convert int to ast_print_mode*)
val ast_print_mode_of_int : int -> ast_print_mode

(** error_code *)
type error_code =
  | INVALID_PATTERN 
  | MEMOUT_FAIL 
  | NO_PARSER 
  | OK 
  | INVALID_ARG 
  | EXCEPTION 
  | IOB 
  | INTERNAL_FATAL 
  | INVALID_USAGE 
  | FILE_ACCESS_ERROR 
  | SORT_ERROR 
  | PARSER_ERROR 
  | DEC_REF_ERROR 

(** Convert error_code to int*)
val int_of_error_code : error_code -> int
(** Convert int to error_code*)
val error_code_of_int : int -> error_code

(** goal_prec *)
type goal_prec =
  | GOAL_UNDER 
  | GOAL_PRECISE 
  | GOAL_UNDER_OVER 
  | GOAL_OVER 

(** Convert goal_prec to int*)
val int_of_goal_prec : goal_prec -> int
(** Convert int to goal_prec*)
val goal_prec_of_int : int -> goal_prec