GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/theory/inference_id.cpp Lines: 1 343 0.3 %
Date: 2021-05-22 Branches: 2 271 0.7 %

Line Exec Source
1
/******************************************************************************
2
 * Top contributors (to current version):
3
 *   Andrew Reynolds, Gereon Kremer
4
 *
5
 * This file is part of the cvc5 project.
6
 *
7
 * Copyright (c) 2009-2021 by the authors listed in the file AUTHORS
8
 * in the top-level source directory and their institutional affiliations.
9
 * All rights reserved.  See the file COPYING in the top-level source
10
 * directory for licensing information.
11
 * ****************************************************************************
12
 *
13
 * Implementation of inference enumeration.
14
 */
15
16
#include "theory/inference_id.h"
17
18
#include <iostream>
19
20
namespace cvc5 {
21
namespace theory {
22
23
const char* toString(InferenceId i)
24
{
25
  switch (i)
26
  {
27
    case InferenceId::EQ_CONSTANT_MERGE: return "EQ_CONSTANT_MERGE";
28
    case InferenceId::ARITH_BLACK_BOX: return "ARITH_BLACK_BOX";
29
    case InferenceId::ARITH_CONF_EQ: return "ARITH_CONF_EQ";
30
    case InferenceId::ARITH_CONF_LOWER: return "ARITH_CONF_LOWER";
31
    case InferenceId::ARITH_CONF_TRICHOTOMY: return "ARITH_CONF_TRICHOTOMY";
32
    case InferenceId::ARITH_CONF_UPPER: return "ARITH_CONF_UPPER";
33
    case InferenceId::ARITH_CONF_SIMPLEX: return "ARITH_CONF_SIMPLEX";
34
    case InferenceId::ARITH_CONF_SOI_SIMPLEX: return "ARITH_CONF_SOI_SIMPLEX";
35
    case InferenceId::ARITH_SPLIT_DEQ: return "ARITH_SPLIT_DEQ";
36
    case InferenceId::ARITH_TIGHTEN_CEIL: return "ARITH_TIGHTEN_CEIL";
37
    case InferenceId::ARITH_TIGHTEN_FLOOR: return "ARITH_TIGHTEN_FLOOR";
38
    case InferenceId::ARITH_APPROX_CUT: return "ARITH_APPROX_CUT";
39
    case InferenceId::ARITH_BB_LEMMA: return "ARITH_BB_LEMMA";
40
    case InferenceId::ARITH_DIO_CUT: return "ARITH_DIO_CUT";
41
    case InferenceId::ARITH_DIO_DECOMPOSITION: return "ARITH_DIO_DECOMPOSITION";
42
    case InferenceId::ARITH_UNATE: return "ARITH_UNATE";
43
    case InferenceId::ARITH_ROW_IMPL: return "ARITH_ROW_IMPL";
44
    case InferenceId::ARITH_SPLIT_FOR_NL_MODEL:
45
      return "ARITH_SPLIT_FOR_NL_MODEL";
46
    case InferenceId::ARITH_PP_ELIM_OPERATORS: return "ARITH_PP_ELIM_OPERATORS";
47
    case InferenceId::ARITH_PP_ELIM_OPERATORS_LEMMA:
48
      return "ARITH_PP_ELIM_OPERATORS_LEMMA";
49
    case InferenceId::ARITH_NL_CONGRUENCE: return "ARITH_NL_CONGRUENCE";
50
    case InferenceId::ARITH_NL_SHARED_TERM_VALUE_SPLIT:
51
      return "ARITH_NL_SHARED_TERM_VALUE_SPLIT";
52
    case InferenceId::ARITH_NL_CM_QUADRATIC_EQ:
53
      return "ARITH_NL_CM_QUADRATIC_EQ";
54
    case InferenceId::ARITH_NL_SPLIT_ZERO: return "ARITH_NL_SPLIT_ZERO";
55
    case InferenceId::ARITH_NL_SIGN: return "ARITH_NL_SIGN";
56
    case InferenceId::ARITH_NL_COMPARISON: return "ARITH_NL_COMPARISON";
57
    case InferenceId::ARITH_NL_INFER_BOUNDS: return "ARITH_NL_INFER_BOUNDS";
58
    case InferenceId::ARITH_NL_INFER_BOUNDS_NT:
59
      return "ARITH_NL_INFER_BOUNDS_NT";
60
    case InferenceId::ARITH_NL_FACTOR: return "ARITH_NL_FACTOR";
61
    case InferenceId::ARITH_NL_RES_INFER_BOUNDS:
62
      return "ARITH_NL_RES_INFER_BOUNDS";
63
    case InferenceId::ARITH_NL_TANGENT_PLANE: return "ARITH_NL_TANGENT_PLANE";
64
    case InferenceId::ARITH_NL_T_PURIFY_ARG: return "ARITH_NL_T_PURIFY_ARG";
65
    case InferenceId::ARITH_NL_T_INIT_REFINE: return "ARITH_NL_T_INIT_REFINE";
66
    case InferenceId::ARITH_NL_T_PI_BOUND: return "ARITH_NL_T_PI_BOUND";
67
    case InferenceId::ARITH_NL_T_MONOTONICITY: return "ARITH_NL_T_MONOTONICITY";
68
    case InferenceId::ARITH_NL_T_SECANT: return "ARITH_NL_T_SECANT";
69
    case InferenceId::ARITH_NL_T_TANGENT: return "ARITH_NL_T_TANGENT";
70
    case InferenceId::ARITH_NL_IAND_INIT_REFINE:
71
      return "ARITH_NL_IAND_INIT_REFINE";
72
    case InferenceId::ARITH_NL_IAND_VALUE_REFINE:
73
      return "ARITH_NL_IAND_VALUE_REFINE";
74
    case InferenceId::ARITH_NL_IAND_SUM_REFINE:
75
      return "ARITH_NL_IAND_SUM_REFINE";
76
    case InferenceId::ARITH_NL_IAND_BITWISE_REFINE:
77
      return "ARITH_NL_IAND_BITWISE_REFINE";
78
    case InferenceId::ARITH_NL_CAD_CONFLICT: return "ARITH_NL_CAD_CONFLICT";
79
    case InferenceId::ARITH_NL_CAD_EXCLUDED_INTERVAL:
80
      return "ARITH_NL_CAD_EXCLUDED_INTERVAL";
81
    case InferenceId::ARITH_NL_ICP_CONFLICT: return "ARITH_NL_ICP_CONFLICT";
82
    case InferenceId::ARITH_NL_ICP_PROPAGATION:
83
      return "ARITH_NL_ICP_PROPAGATION";
84
85
    case InferenceId::ARRAYS_EXT: return "ARRAYS_EXT";
86
    case InferenceId::ARRAYS_READ_OVER_WRITE: return "ARRAYS_READ_OVER_WRITE";
87
    case InferenceId::ARRAYS_READ_OVER_WRITE_1: return "ARRAYS_READ_OVER_WRITE_1";
88
    case InferenceId::ARRAYS_READ_OVER_WRITE_CONTRA: return "ARRAYS_READ_OVER_WRITE_CONTRA";
89
90
    case InferenceId::BAG_NON_NEGATIVE_COUNT: return "BAG_NON_NEGATIVE_COUNT";
91
    case InferenceId::BAG_MK_BAG_SAME_ELEMENT: return "BAG_MK_BAG_SAME_ELEMENT";
92
    case InferenceId::BAG_MK_BAG: return "BAG_MK_BAG";
93
    case InferenceId::BAG_EQUALITY: return "BAG_EQUALITY";
94
    case InferenceId::BAG_DISEQUALITY: return "BAG_DISEQUALITY";
95
    case InferenceId::BAG_EMPTY: return "BAG_EMPTY";
96
    case InferenceId::BAG_UNION_DISJOINT: return "BAG_UNION_DISJOINT";
97
    case InferenceId::BAG_UNION_MAX: return "BAG_UNION_MAX";
98
    case InferenceId::BAG_INTERSECTION_MIN: return "BAG_INTERSECTION_MIN";
99
    case InferenceId::BAG_DIFFERENCE_SUBTRACT: return "BAG_DIFFERENCE_SUBTRACT";
100
    case InferenceId::BAG_DIFFERENCE_REMOVE: return "BAG_DIFFERENCE_REMOVE";
101
    case InferenceId::BAG_DUPLICATE_REMOVAL: return "BAG_DUPLICATE_REMOVAL";
102
103
    case InferenceId::BV_BITBLAST_CONFLICT: return "BV_BITBLAST_CONFLICT";
104
    case InferenceId::BV_LAZY_CONFLICT: return "BV_LAZY_CONFLICT";
105
    case InferenceId::BV_LAZY_LEMMA: return "BV_LAZY_LEMMA";
106
    case InferenceId::BV_SIMPLE_LEMMA: return "BV_SIMPLE_LEMMA";
107
    case InferenceId::BV_SIMPLE_BITBLAST_LEMMA: return "BV_SIMPLE_BITBLAST_LEMMA";
108
    case InferenceId::BV_EXTF_LEMMA: return "BV_EXTF_LEMMA";
109
    case InferenceId::BV_EXTF_COLLAPSE: return "BV_EXTF_COLLAPSE";
110
111
    case InferenceId::DATATYPES_PURIFY: return "DATATYPES_PURIFY";
112
    case InferenceId::DATATYPES_UNIF: return "DATATYPES_UNIF";
113
    case InferenceId::DATATYPES_INST: return "DATATYPES_INST";
114
    case InferenceId::DATATYPES_SPLIT: return "DATATYPES_SPLIT";
115
    case InferenceId::DATATYPES_BINARY_SPLIT: return "DATATYPES_BINARY_SPLIT";
116
    case InferenceId::DATATYPES_LABEL_EXH: return "DATATYPES_LABEL_EXH";
117
    case InferenceId::DATATYPES_COLLAPSE_SEL: return "DATATYPES_COLLAPSE_SEL";
118
    case InferenceId::DATATYPES_CLASH_CONFLICT:
119
      return "DATATYPES_CLASH_CONFLICT";
120
    case InferenceId::DATATYPES_TESTER_CONFLICT:
121
      return "DATATYPES_TESTER_CONFLICT";
122
    case InferenceId::DATATYPES_TESTER_MERGE_CONFLICT:
123
      return "DATATYPES_TESTER_MERGE_CONFLICT";
124
    case InferenceId::DATATYPES_BISIMILAR: return "DATATYPES_BISIMILAR";
125
    case InferenceId::DATATYPES_REC_SINGLETON_EQ:
126
      return "DATATYPES_REC_SINGLETON_EQ";
127
    case InferenceId::DATATYPES_REC_SINGLETON_FORCE_DEQ:
128
      return "DATATYPES_REC_SINGLETON_FORCE_DEQ";
129
    case InferenceId::DATATYPES_CYCLE: return "DATATYPES_CYCLE";
130
    case InferenceId::DATATYPES_SIZE_POS: return "DATATYPES_SIZE_POS";
131
    case InferenceId::DATATYPES_HEIGHT_ZERO: return "DATATYPES_HEIGHT_ZERO";
132
    case InferenceId::DATATYPES_SYGUS_SYM_BREAK:
133
      return "DATATYPES_SYGUS_SYM_BREAK";
134
    case InferenceId::DATATYPES_SYGUS_CDEP_SYM_BREAK:
135
      return "DATATYPES_SYGUS_CDEP_SYM_BREAK";
136
    case InferenceId::DATATYPES_SYGUS_ENUM_SYM_BREAK:
137
      return "DATATYPES_SYGUS_ENUM_SYM_BREAK";
138
    case InferenceId::DATATYPES_SYGUS_SIMPLE_SYM_BREAK:
139
      return "DATATYPES_SYGUS_SIMPLE_SYM_BREAK";
140
    case InferenceId::DATATYPES_SYGUS_FAIR_SIZE:
141
      return "DATATYPES_SYGUS_FAIR_SIZE";
142
    case InferenceId::DATATYPES_SYGUS_FAIR_SIZE_CONFLICT:
143
      return "DATATYPES_SYGUS_FAIR_SIZE_CONFLICT";
144
    case InferenceId::DATATYPES_SYGUS_VAR_AGNOSTIC:
145
      return "DATATYPES_SYGUS_VAR_AGNOSTIC";
146
    case InferenceId::DATATYPES_SYGUS_SIZE_CORRECTION:
147
      return "DATATYPES_SYGUS_SIZE_CORRECTION";
148
    case InferenceId::DATATYPES_SYGUS_VALUE_CORRECTION:
149
      return "DATATYPES_SYGUS_VALUE_CORRECTION";
150
    case InferenceId::DATATYPES_SYGUS_MT_BOUND:
151
      return "DATATYPES_SYGUS_MT_BOUND";
152
    case InferenceId::DATATYPES_SYGUS_MT_POS: return "DATATYPES_SYGUS_MT_POS";
153
154
    case InferenceId::FP_PREPROCESS: return "FP_PREPROCESS";
155
    case InferenceId::FP_EQUATE_TERM: return "FP_EQUATE_TERM";
156
    case InferenceId::FP_REGISTER_TERM: return "FP_REGISTER_TERM";
157
158
    case InferenceId::QUANTIFIERS_INST_E_MATCHING:
159
      return "QUANTIFIERS_INST_E_MATCHING";
160
    case InferenceId::QUANTIFIERS_INST_E_MATCHING_SIMPLE:
161
      return "QUANTIFIERS_INST_E_MATCHING_SIMPLE";
162
    case InferenceId::QUANTIFIERS_INST_E_MATCHING_MT:
163
      return "QUANTIFIERS_INST_E_MATCHING_MT";
164
    case InferenceId::QUANTIFIERS_INST_E_MATCHING_MTL:
165
      return "QUANTIFIERS_INST_E_MATCHING_MTL";
166
    case InferenceId::QUANTIFIERS_INST_E_MATCHING_HO:
167
      return "QUANTIFIERS_INST_E_MATCHING_HO";
168
    case InferenceId::QUANTIFIERS_INST_E_MATCHING_VAR_GEN:
169
      return "QUANTIFIERS_INST_E_MATCHING_VAR_GEN";
170
    case InferenceId::QUANTIFIERS_INST_CBQI_CONFLICT:
171
      return "QUANTIFIERS_INST_CBQI_CONFLICT";
172
    case InferenceId::QUANTIFIERS_INST_CBQI_PROP:
173
      return "QUANTIFIERS_INST_CBQI_PROP";
174
    case InferenceId::QUANTIFIERS_INST_FMF_EXH:
175
      return "QUANTIFIERS_INST_FMF_EXH";
176
    case InferenceId::QUANTIFIERS_INST_FMF_FMC:
177
      return "QUANTIFIERS_INST_FMF_FMC";
178
    case InferenceId::QUANTIFIERS_INST_FMF_FMC_EXH:
179
      return "QUANTIFIERS_INST_FMF_FMC_EXH";
180
    case InferenceId::QUANTIFIERS_INST_CEGQI: return "QUANTIFIERS_INST_CEGQI";
181
    case InferenceId::QUANTIFIERS_INST_SYQI: return "QUANTIFIERS_INST_SYQI";
182
    case InferenceId::QUANTIFIERS_INST_ENUM: return "QUANTIFIERS_INST_ENUM";
183
    case InferenceId::QUANTIFIERS_INST_POOL: return "QUANTIFIERS_INST_POOL";
184
    case InferenceId::QUANTIFIERS_BINT_PROXY: return "QUANTIFIERS_BINT_PROXY";
185
    case InferenceId::QUANTIFIERS_BINT_MIN_NG: return "QUANTIFIERS_BINT_MIN_NG";
186
    case InferenceId::QUANTIFIERS_CEGQI_CEX: return "QUANTIFIERS_CEGQI_CEX";
187
    case InferenceId::QUANTIFIERS_CEGQI_CEX_AUX:
188
      return "QUANTIFIERS_CEGQI_CEX_AUX";
189
    case InferenceId::QUANTIFIERS_CEGQI_NESTED_QE:
190
      return "QUANTIFIERS_CEGQI_NESTED_QE";
191
    case InferenceId::QUANTIFIERS_CEGQI_CEX_DEP:
192
      return "QUANTIFIERS_CEGQI_CEX_DEP";
193
    case InferenceId::QUANTIFIERS_CEGQI_VTS_LB_DELTA:
194
      return "QUANTIFIERS_CEGQI_VTS_LB_DELTA";
195
    case InferenceId::QUANTIFIERS_CEGQI_VTS_UB_DELTA:
196
      return "QUANTIFIERS_CEGQI_VTS_UB_DELTA";
197
    case InferenceId::QUANTIFIERS_CEGQI_VTS_LB_INF:
198
      return "QUANTIFIERS_CEGQI_VTS_LB_INF";
199
    case InferenceId::QUANTIFIERS_SYQI_CEX: return "QUANTIFIERS_SYQI_CEX";
200
    case InferenceId::QUANTIFIERS_SYQI_EVAL_UNFOLD:
201
      return "QUANTIFIERS_SYQI_EVAL_UNFOLD";
202
    case InferenceId::QUANTIFIERS_SYGUS_QE_PREPROC:
203
      return "QUANTIFIERS_SYGUS_QE_PREPROC";
204
    case InferenceId::QUANTIFIERS_SYGUS_ENUM_ACTIVE_GUARD_SPLIT:
205
      return "QUANTIFIERS_SYGUS_ENUM_ACTIVE_GUARD_SPLIT";
206
    case InferenceId::QUANTIFIERS_SYGUS_EXCLUDE_CURRENT:
207
      return "QUANTIFIERS_SYGUS_EXCLUDE_CURRENT";
208
    case InferenceId::QUANTIFIERS_SYGUS_STREAM_EXCLUDE_CURRENT:
209
      return "QUANTIFIERS_SYGUS_STREAM_EXCLUDE_CURRENT";
210
    case InferenceId::QUANTIFIERS_SYGUS_EXAMPLE_INFER_CONTRA:
211
      return "QUANTIFIERS_SYGUS_EXAMPLE_INFER_CONTRA";
212
    case InferenceId::QUANTIFIERS_DSPLIT: return "QUANTIFIERS_DSPLIT";
213
    case InferenceId::QUANTIFIERS_SKOLEMIZE: return "QUANTIFIERS_SKOLEMIZE";
214
    case InferenceId::QUANTIFIERS_REDUCE_ALPHA_EQ:
215
      return "QUANTIFIERS_REDUCE_ALPHA_EQ";
216
    case InferenceId::QUANTIFIERS_HO_MATCH_PRED:
217
      return "QUANTIFIERS_HO_MATCH_PRED";
218
    case InferenceId::QUANTIFIERS_PARTIAL_TRIGGER_REDUCE:
219
      return "QUANTIFIERS_PARTIAL_TRIGGER_REDUCE";
220
221
    case InferenceId::SEP_PTO_NEG_PROP: return "SEP_PTO_NEG_PROP";
222
    case InferenceId::SEP_PTO_PROP: return "SEP_PTO_PROP";
223
    case InferenceId::SEP_LABEL_INTRO: return "SEP_LABEL_INTRO";
224
    case InferenceId::SEP_LABEL_DEF: return "SEP_LABEL_DEF";
225
    case InferenceId::SEP_EMP: return "SEP_EMP";
226
    case InferenceId::SEP_POS_REDUCTION: return "SEP_POS_REDUCTION";
227
    case InferenceId::SEP_NEG_REDUCTION: return "SEP_NEG_REDUCTION";
228
    case InferenceId::SEP_REFINEMENT: return "SEP_REFINEMENT";
229
    case InferenceId::SEP_NIL_NOT_IN_HEAP: return "SEP_NIL_NOT_IN_HEAP";
230
    case InferenceId::SEP_SYM_BREAK: return "SEP_SYM_BREAK";
231
    case InferenceId::SEP_WITNESS_FINITE_DATA: return "SEP_WITNESS_FINITE_DATA";
232
    case InferenceId::SEP_DISTINCT_REF: return "SEP_DISTINCT_REF";
233
    case InferenceId::SEP_REF_BOUND: return "SEP_REF_BOUND";
234
235
    case InferenceId::SETS_COMPREHENSION: return "SETS_COMPREHENSION";
236
    case InferenceId::SETS_DEQ: return "SETS_DEQ";
237
    case InferenceId::SETS_DOWN_CLOSURE: return "SETS_DOWN_CLOSURE";
238
    case InferenceId::SETS_EQ_MEM: return "SETS_EQ_MEM";
239
    case InferenceId::SETS_EQ_MEM_CONFLICT: return "SETS_EQ_MEM_CONFLICT";
240
    case InferenceId::SETS_MEM_EQ: return "SETS_MEM_EQ";
241
    case InferenceId::SETS_MEM_EQ_CONFLICT: return "SETS_MEM_EQ_CONFLICT";
242
    case InferenceId::SETS_PROXY: return "SETS_PROXY";
243
    case InferenceId::SETS_PROXY_SINGLETON: return "SETS_PROXY_SINGLETON";
244
    case InferenceId::SETS_SINGLETON_EQ: return "SETS_SINGLETON_EQ";
245
    case InferenceId::SETS_UP_CLOSURE: return "SETS_UP_CLOSURE";
246
    case InferenceId::SETS_UP_CLOSURE_2: return "SETS_UP_CLOSURE_2";
247
    case InferenceId::SETS_UP_UNIV: return "SETS_UP_UNIV";
248
    case InferenceId::SETS_UNIV_TYPE: return "SETS_UNIV_TYPE";
249
    case InferenceId::SETS_CARD_SPLIT_EMPTY: return "SETS_CARD_SPLIT_EMPTY";
250
    case InferenceId::SETS_CARD_CYCLE: return "SETS_CARD_CYCLE";
251
    case InferenceId::SETS_CARD_EQUAL: return "SETS_CARD_EQUAL";
252
    case InferenceId::SETS_CARD_GRAPH_EMP: return "SETS_CARD_GRAPH_EMP";
253
    case InferenceId::SETS_CARD_GRAPH_EMP_PARENT:
254
      return "SETS_CARD_GRAPH_EMP_PARENT";
255
    case InferenceId::SETS_CARD_GRAPH_EQ_PARENT:
256
      return "SETS_CARD_GRAPH_EQ_PARENT";
257
    case InferenceId::SETS_CARD_GRAPH_EQ_PARENT_2:
258
      return "SETS_CARD_GRAPH_EQ_PARENT_2";
259
    case InferenceId::SETS_CARD_GRAPH_PARENT_SINGLETON:
260
      return "SETS_CARD_GRAPH_PARENT_SINGLETON";
261
    case InferenceId::SETS_CARD_MINIMAL: return "SETS_CARD_MINIMAL";
262
    case InferenceId::SETS_CARD_NEGATIVE_MEMBER:
263
      return "SETS_CARD_NEGATIVE_MEMBER";
264
    case InferenceId::SETS_CARD_POSITIVE: return "SETS_CARD_POSITIVE";
265
    case InferenceId::SETS_CARD_UNIV_SUPERSET: return "SETS_CARD_UNIV_SUPERSET";
266
    case InferenceId::SETS_CARD_UNIV_TYPE: return "SETS_CARD_UNIV_TYPE";
267
    case InferenceId::SETS_RELS_IDENTITY_DOWN: return "SETS_RELS_IDENTITY_DOWN";
268
    case InferenceId::SETS_RELS_IDENTITY_UP: return "SETS_RELS_IDENTITY_UP";
269
    case InferenceId::SETS_RELS_JOIN_COMPOSE: return "SETS_RELS_JOIN_COMPOSE";
270
    case InferenceId::SETS_RELS_JOIN_IMAGE_DOWN:
271
      return "SETS_RELS_JOIN_IMAGE_DOWN";
272
    case InferenceId::SETS_RELS_JOIN_SPLIT_1: return "SETS_RELS_JOIN_SPLIT_1";
273
    case InferenceId::SETS_RELS_JOIN_SPLIT_2: return "SETS_RELS_JOIN_SPLIT_2";
274
    case InferenceId::SETS_RELS_PRODUCE_COMPOSE:
275
      return "SETS_RELS_PRODUCE_COMPOSE";
276
    case InferenceId::SETS_RELS_PRODUCT_SPLIT: return "SETS_RELS_PRODUCT_SPLIT";
277
    case InferenceId::SETS_RELS_TCLOSURE_FWD: return "SETS_RELS_TCLOSURE_FWD";
278
    case InferenceId::SETS_RELS_TCLOSURE_UP: return "SETS_RELS_TCLOSURE_UP";
279
    case InferenceId::SETS_RELS_TRANSPOSE_EQ: return "SETS_RELS_TRANSPOSE_EQ";
280
    case InferenceId::SETS_RELS_TRANSPOSE_REV: return "SETS_RELS_TRANSPOSE_REV";
281
    case InferenceId::SETS_RELS_TUPLE_REDUCTION:
282
      return "SETS_RELS_TUPLE_REDUCTION";
283
284
    case InferenceId::STRINGS_I_NORM_S: return "STRINGS_I_NORM_S";
285
    case InferenceId::STRINGS_I_CONST_MERGE: return "STRINGS_I_CONST_MERGE";
286
    case InferenceId::STRINGS_I_CONST_CONFLICT:
287
      return "STRINGS_I_CONST_CONFLICT";
288
    case InferenceId::STRINGS_I_NORM: return "STRINGS_I_NORM";
289
    case InferenceId::STRINGS_UNIT_INJ: return "STRINGS_UNIT_INJ";
290
    case InferenceId::STRINGS_UNIT_CONST_CONFLICT:
291
      return "STRINGS_UNIT_CONST_CONFLICT";
292
    case InferenceId::STRINGS_UNIT_INJ_DEQ: return "STRINGS_UNIT_INJ_DEQ";
293
    case InferenceId::STRINGS_CARD_SP: return "STRINGS_CARD_SP";
294
    case InferenceId::STRINGS_CARDINALITY: return "STRINGS_CARDINALITY";
295
    case InferenceId::STRINGS_I_CYCLE_E: return "STRINGS_I_CYCLE_E";
296
    case InferenceId::STRINGS_I_CYCLE: return "STRINGS_I_CYCLE";
297
    case InferenceId::STRINGS_F_CONST: return "STRINGS_F_CONST";
298
    case InferenceId::STRINGS_F_UNIFY: return "STRINGS_F_UNIFY";
299
    case InferenceId::STRINGS_F_ENDPOINT_EMP: return "STRINGS_F_ENDPOINT_EMP";
300
    case InferenceId::STRINGS_F_ENDPOINT_EQ: return "STRINGS_F_ENDPOINT_EQ";
301
    case InferenceId::STRINGS_F_NCTN: return "STRINGS_F_NCTN";
302
    case InferenceId::STRINGS_N_EQ_CONF: return "STRINGS_N_EQ_CONF";
303
    case InferenceId::STRINGS_N_ENDPOINT_EMP: return "STRINGS_N_ENDPOINT_EMP";
304
    case InferenceId::STRINGS_N_UNIFY: return "STRINGS_N_UNIFY";
305
    case InferenceId::STRINGS_N_ENDPOINT_EQ: return "STRINGS_N_ENDPOINT_EQ";
306
    case InferenceId::STRINGS_N_CONST: return "STRINGS_N_CONST";
307
    case InferenceId::STRINGS_INFER_EMP: return "STRINGS_INFER_EMP";
308
    case InferenceId::STRINGS_SSPLIT_CST_PROP: return "STRINGS_SSPLIT_CST_PROP";
309
    case InferenceId::STRINGS_SSPLIT_VAR_PROP: return "STRINGS_SSPLIT_VAR_PROP";
310
    case InferenceId::STRINGS_LEN_SPLIT: return "STRINGS_LEN_SPLIT";
311
    case InferenceId::STRINGS_LEN_SPLIT_EMP: return "STRINGS_LEN_SPLIT_EMP";
312
    case InferenceId::STRINGS_SSPLIT_CST: return "STRINGS_SSPLIT_CST";
313
    case InferenceId::STRINGS_SSPLIT_VAR: return "STRINGS_SSPLIT_VAR";
314
    case InferenceId::STRINGS_FLOOP: return "STRINGS_FLOOP";
315
    case InferenceId::STRINGS_FLOOP_CONFLICT: return "STRINGS_FLOOP_CONFLICT";
316
    case InferenceId::STRINGS_NORMAL_FORM: return "STRINGS_NORMAL_FORM";
317
    case InferenceId::STRINGS_N_NCTN: return "STRINGS_N_NCTN";
318
    case InferenceId::STRINGS_LEN_NORM: return "STRINGS_LEN_NORM";
319
    case InferenceId::STRINGS_DEQ_DISL_EMP_SPLIT:
320
      return "STRINGS_DEQ_DISL_EMP_SPLIT";
321
    case InferenceId::STRINGS_DEQ_DISL_FIRST_CHAR_EQ_SPLIT:
322
      return "STRINGS_DEQ_DISL_FIRST_CHAR_EQ_SPLIT";
323
    case InferenceId::STRINGS_DEQ_DISL_FIRST_CHAR_STRING_SPLIT:
324
      return "STRINGS_DEQ_DISL_FIRST_CHAR_STRING_SPLIT";
325
    case InferenceId::STRINGS_DEQ_STRINGS_EQ: return "STRINGS_DEQ_STRINGS_EQ";
326
    case InferenceId::STRINGS_DEQ_DISL_STRINGS_SPLIT:
327
      return "STRINGS_DEQ_DISL_STRINGS_SPLIT";
328
    case InferenceId::STRINGS_DEQ_LENS_EQ: return "STRINGS_DEQ_LENS_EQ";
329
    case InferenceId::STRINGS_DEQ_NORM_EMP: return "STRINGS_DEQ_NORM_EMP";
330
    case InferenceId::STRINGS_DEQ_LENGTH_SP: return "STRINGS_DEQ_LENGTH_SP";
331
    case InferenceId::STRINGS_CODE_PROXY: return "STRINGS_CODE_PROXY";
332
    case InferenceId::STRINGS_CODE_INJ: return "STRINGS_CODE_INJ";
333
    case InferenceId::STRINGS_RE_NF_CONFLICT: return "STRINGS_RE_NF_CONFLICT";
334
    case InferenceId::STRINGS_RE_UNFOLD_POS: return "STRINGS_RE_UNFOLD_POS";
335
    case InferenceId::STRINGS_RE_UNFOLD_NEG: return "STRINGS_RE_UNFOLD_NEG";
336
    case InferenceId::STRINGS_RE_INTER_INCLUDE:
337
      return "STRINGS_RE_INTER_INCLUDE";
338
    case InferenceId::STRINGS_RE_INTER_CONF: return "STRINGS_RE_INTER_CONF";
339
    case InferenceId::STRINGS_RE_INTER_INFER: return "STRINGS_RE_INTER_INFER";
340
    case InferenceId::STRINGS_RE_DELTA: return "STRINGS_RE_DELTA";
341
    case InferenceId::STRINGS_RE_DELTA_CONF: return "STRINGS_RE_DELTA_CONF";
342
    case InferenceId::STRINGS_RE_DERIVE: return "STRINGS_RE_DERIVE";
343
    case InferenceId::STRINGS_EXTF: return "STRINGS_EXTF";
344
    case InferenceId::STRINGS_EXTF_N: return "STRINGS_EXTF_N";
345
    case InferenceId::STRINGS_EXTF_D: return "STRINGS_EXTF_D";
346
    case InferenceId::STRINGS_EXTF_D_N: return "STRINGS_EXTF_D_N";
347
    case InferenceId::STRINGS_EXTF_EQ_REW: return "STRINGS_EXTF_EQ_REW";
348
    case InferenceId::STRINGS_CTN_TRANS: return "STRINGS_CTN_TRANS";
349
    case InferenceId::STRINGS_CTN_DECOMPOSE: return "STRINGS_CTN_DECOMPOSE";
350
    case InferenceId::STRINGS_CTN_NEG_EQUAL: return "STRINGS_CTN_NEG_EQUAL";
351
    case InferenceId::STRINGS_CTN_POS: return "STRINGS_CTN_POS";
352
    case InferenceId::STRINGS_REDUCTION: return "STRINGS_REDUCTION";
353
    case InferenceId::STRINGS_PREFIX_CONFLICT: return "STRINGS_PREFIX_CONFLICT";
354
    case InferenceId::STRINGS_REGISTER_TERM_ATOMIC:
355
      return "STRINGS_REGISTER_TERM_ATOMIC";
356
    case InferenceId::STRINGS_REGISTER_TERM: return "STRINGS_REGISTER_TERM";
357
    case InferenceId::STRINGS_CMI_SPLIT: return "STRINGS_CMI_SPLIT";
358
359
    case InferenceId::UF_BREAK_SYMMETRY: return "UF_BREAK_SYMMETRY";
360
    case InferenceId::UF_CARD_CLIQUE: return "UF_CARD_CLIQUE";
361
    case InferenceId::UF_CARD_COMBINED: return "UF_CARD_COMBINED";
362
    case InferenceId::UF_CARD_ENFORCE_NEGATIVE: return "UF_CARD_ENFORCE_NEGATIVE";
363
    case InferenceId::UF_CARD_EQUIV: return "UF_CARD_EQUIV";
364
    case InferenceId::UF_CARD_MONOTONE_COMBINED: return "UF_CARD_MONOTONE_COMBINED";
365
    case InferenceId::UF_CARD_SIMPLE_CONFLICT: return "UF_CARD_SIMPLE_CONFLICT";
366
    case InferenceId::UF_CARD_SPLIT: return "UF_CARD_SPLIT";
367
368
    case InferenceId::UF_HO_APP_ENCODE: return "UF_HO_APP_ENCODE";
369
    case InferenceId::UF_HO_APP_CONV_SKOLEM: return "UF_HO_APP_CONV_SKOLEM";
370
    case InferenceId::UF_HO_EXTENSIONALITY: return "UF_HO_EXTENSIONALITY";
371
    case InferenceId::UF_HO_MODEL_APP_ENCODE: return "UF_HO_MODEL_APP_ENCODE";
372
    case InferenceId::UF_HO_MODEL_EXTENSIONALITY:
373
      return "UF_HO_MODEL_EXTENSIONALITY";
374
375
    default: return "?";
376
  }
377
}
378
379
std::ostream& operator<<(std::ostream& out, InferenceId i)
380
{
381
  out << toString(i);
382
  return out;
383
}
384
385
}  // namespace theory
386
28194
}  // namespace cvc5