-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathFunctionDeclarationKind.java
297 lines (213 loc) · 5.54 KB
/
FunctionDeclarationKind.java
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
// This file is part of JavaSMT,
// an API wrapper for a collection of SMT solvers:
// https://github.com/sosy-lab/java-smt
//
// SPDX-FileCopyrightText: 2020 Dirk Beyer <https://www.sosy-lab.org>
//
// SPDX-License-Identifier: Apache-2.0
package org.sosy_lab.java_smt.api;
/**
* Types of function declarations.
*
* @see FunctionDeclaration
*/
public enum FunctionDeclarationKind {
AND,
NOT,
OR,
/** If and only if. */
IFF,
/** If-then-else operator. */
ITE,
/** Exclusive OR over two formulas. */
XOR,
/** Implication between two boolean formulas. */
IMPLIES,
/** Distinct operator for a set of numeric formulas. */
DISTINCT,
/** Store and select on arrays. */
STORE,
SELECT,
// Simple arithmetic,
// they work across integers and rationals.
/** Unary minus. */
UMINUS,
/** Subtraction over integers and rationals. */
SUB,
/** Addition over integers and rationals. */
ADD,
/** Division over rationals and integer division over integers. */
DIV,
/** Multiplication over integers and rationals. */
MUL,
/** Modulo operator over integers. */
MODULO,
/** Uninterpreted function. */
UF,
/** User-defined variable. */
VAR,
/** Less-than over integers and rationals. */
LT,
/** Less-than-or-equal over integers and rationals. */
LTE,
/** Greater-than over integers and rationals. */
GT,
/** Greater-than-or-equal over integers and rationals. */
GTE,
/** Equality over integers and rationals. Binary equality is modelled with {@code IFF}. */
EQ,
/** Unary comparison to zero. */
EQ_ZERO,
/** Unary comparison with zero. */
GTE_ZERO,
/** Floor operation, converts from rationals to integers, also known as {@code to_int}. */
FLOOR,
/** Identity operation, converts from integers to rationals, also known as {@code to_real}. */
TO_REAL,
// Simple bitvector operations
/** Extraction over bitvectors. */
BV_EXTRACT,
/** Concatenation over bitvectors. */
BV_CONCAT,
/** Extend bitvectors according to their sign. */
BV_SIGN_EXTENSION,
/** Extend bitvectors with zeros. */
BV_ZERO_EXTENSION,
/** Bitwise negation of a bitvector. */
BV_NOT,
/** Negation of a bitvector. */
BV_NEG,
/** Bitwise OR over bitvectors. */
BV_OR,
/** Bitwise AND over bitvectors. */
BV_AND,
/** Bitwise XOR over bitvectors. */
BV_XOR,
/** Subtraction over bitvectors. */
BV_SUB,
/** Addition over bitvectors. */
BV_ADD,
/** Signed division over bitvectors. */
BV_SDIV,
/** Unsigned division over bitvectors. */
BV_UDIV,
/** Signed remainder over bitvectors. */
BV_SREM,
/** Unsigned remainder over bitvectors. */
BV_UREM,
/** Multiplication over bitvectors. */
BV_MUL,
/** Signed less-than over bitvectors. */
BV_ULT,
/** Unsigned less-than over bitvectors. */
BV_SLT,
/** Unsigned less-than-or-equal over bitvectors. */
BV_ULE,
/** Signed greater-than-or-equal over bitvectors. */
BV_SLE,
/** Signed greater-than over bitvectors. */
BV_UGT,
/** Unsigned greater-than over bitvectors. */
BV_SGT,
/** Unsigned greater-than-or-equal over bitvectors. */
BV_UGE,
/** Signed greater-than-or-equal over bitvectors. */
BV_SGE,
/** Equality over bitvectors. Binary equality is modeled with {@code IFF}. */
BV_EQ,
/** Logical left-shift over bitvectors (fill from right with zeroes). */
BV_SHL,
/** Logical right-shift over bitvectors (fill from left with zeroes). */
BV_LSHR,
/** Arithmetic right-shift over bitvectors (fill from left with value of first bit). */
BV_ASHR,
/** Cast an unsigned bitvector to a floating-point number. */
BV_UCASTTO_FP,
/** Cast a signed bitvector to a floating-point number. */
BV_SCASTTO_FP,
// Simple floating point operations
/** Negation of a floating point. */
FP_NEG,
/** Absolute value of a floating point. */
FP_ABS,
/** Maximum of two floating points. */
FP_MAX,
/** Minimum of two floating points. */
FP_MIN,
/** Square root of a floating point. */
FP_SQRT,
/** Subtraction over floating points. */
FP_SUB,
/** Addition over floating points. */
FP_ADD,
/** Division over floating points. */
FP_DIV,
/** Multiplication over floating points. */
FP_MUL,
/** Less-than over floating points. */
FP_LT,
/** Less-than-or-equal over floating points. */
FP_LE,
/** Greater-than-or-equal over floating points. */
FP_GE,
/** Greater-than over floating points. */
FP_GT,
/** Equal over floating points. */
FP_EQ,
/** Rounding over floating points. */
FP_ROUND_EVEN,
/** Rounding over floating points. */
FP_ROUND_AWAY,
/** Rounding over floating points. */
FP_ROUND_POSITIVE,
/** Rounding over floating points. */
FP_ROUND_NEGATIVE,
/** Rounding over floating points. */
FP_ROUND_ZERO,
/** Rounding over floating points. */
FP_ROUND_TO_INTEGRAL,
/** Further FP queries. */
FP_IS_NAN,
FP_IS_INF,
FP_IS_ZERO,
FP_IS_NEGATIVE,
FP_IS_SUBNORMAL,
FP_IS_NORMAL,
FP_CASTTO_FP,
FP_CASTTO_SBV,
FP_CASTTO_UBV,
FP_AS_IEEEBV,
FP_FROM_IEEEBV,
// String and Regex theory
STR_CONCAT,
STR_PREFIX,
STR_SUFFIX,
STR_CONTAINS,
STR_SUBSTRING,
STR_REPLACE,
STR_REPLACE_ALL,
STR_CHAR_AT,
STR_LENGTH,
STR_INDEX_OF,
STR_TO_RE,
STR_IN_RE,
STR_TO_INT,
INT_TO_STR,
STR_LT,
STR_LE,
RE_PLUS,
RE_STAR,
RE_OPTIONAL,
RE_CONCAT,
RE_UNION,
RE_RANGE,
RE_INTERSECT,
RE_COMPLEMENT,
RE_DIFFERENCE,
// default case
/**
* Solvers support a lot of different built-in theories. We enforce standardization only across a
* small subset.
*/
OTHER
}