Improve nonlinear solver (#7787)
[cvc5.git] / src / CMakeLists.txt
1 ###############################################################################
2 # Top contributors (to current version):
3 # Mathias Preiner, 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 # The build system configuration.
14 ##
15
16 # Collect libcvc5 source files
17 libcvc5_add_sources(
18 api/cpp/cvc5.cpp
19 api/cpp/cvc5.h
20 api/cpp/cvc5_checks.h
21 api/cpp/cvc5_kind.h
22 decision/assertion_list.cpp
23 decision/assertion_list.h
24 decision/decision_attributes.h
25 decision/decision_engine.cpp
26 decision/decision_engine.h
27 decision/decision_engine_old.cpp
28 decision/decision_engine_old.h
29 decision/decision_strategy.h
30 decision/justification_heuristic.cpp
31 decision/justification_heuristic.h
32 decision/justification_strategy.cpp
33 decision/justification_strategy.h
34 decision/justify_info.cpp
35 decision/justify_info.h
36 decision/justify_stack.cpp
37 decision/justify_stack.h
38 decision/justify_stats.cpp
39 decision/justify_stats.h
40 lib/clock_gettime.c
41 lib/clock_gettime.h
42 lib/ffs.c
43 lib/ffs.h
44 lib/replacements.h
45 lib/strtok_r.c
46 lib/strtok_r.h
47 omt/bitvector_optimizer.cpp
48 omt/bitvector_optimizer.h
49 omt/integer_optimizer.cpp
50 omt/integer_optimizer.h
51 omt/omt_optimizer.cpp
52 omt/omt_optimizer.h
53 options/decision_weight.h
54 options/io_utils.cpp
55 options/io_utils.h
56 options/language.cpp
57 options/language.h
58 options/managed_streams.cpp
59 options/managed_streams.h
60 options/option_exception.cpp
61 options/option_exception.h
62 options/options_handler.cpp
63 options/options_handler.h
64 options/options_listener.h
65 options/options_public.h
66 preprocessing/assertion_pipeline.cpp
67 preprocessing/assertion_pipeline.h
68 preprocessing/learned_literal_manager.cpp
69 preprocessing/learned_literal_manager.h
70 preprocessing/passes/ackermann.cpp
71 preprocessing/passes/ackermann.h
72 preprocessing/passes/apply_substs.cpp
73 preprocessing/passes/apply_substs.h
74 preprocessing/passes/bool_to_bv.cpp
75 preprocessing/passes/bool_to_bv.h
76 preprocessing/passes/bv_eager_atoms.cpp
77 preprocessing/passes/bv_eager_atoms.h
78 preprocessing/passes/bv_gauss.cpp
79 preprocessing/passes/bv_gauss.h
80 preprocessing/passes/bv_intro_pow2.cpp
81 preprocessing/passes/bv_intro_pow2.h
82 preprocessing/passes/bv_to_bool.cpp
83 preprocessing/passes/bv_to_bool.h
84 preprocessing/passes/bv_to_int.cpp
85 preprocessing/passes/bv_to_int.h
86 preprocessing/passes/extended_rewriter_pass.cpp
87 preprocessing/passes/extended_rewriter_pass.h
88 preprocessing/passes/foreign_theory_rewrite.cpp
89 preprocessing/passes/foreign_theory_rewrite.h
90 preprocessing/passes/fun_def_fmf.cpp
91 preprocessing/passes/fun_def_fmf.h
92 preprocessing/passes/global_negate.cpp
93 preprocessing/passes/global_negate.h
94 preprocessing/passes/ho_elim.cpp
95 preprocessing/passes/ho_elim.h
96 preprocessing/passes/int_to_bv.cpp
97 preprocessing/passes/int_to_bv.h
98 preprocessing/passes/ite_removal.cpp
99 preprocessing/passes/ite_removal.h
100 preprocessing/passes/ite_simp.cpp
101 preprocessing/passes/ite_simp.h
102 preprocessing/passes/learned_rewrite.cpp
103 preprocessing/passes/learned_rewrite.h
104 preprocessing/passes/miplib_trick.cpp
105 preprocessing/passes/miplib_trick.h
106 preprocessing/passes/nl_ext_purify.cpp
107 preprocessing/passes/nl_ext_purify.h
108 preprocessing/passes/non_clausal_simp.cpp
109 preprocessing/passes/non_clausal_simp.h
110 preprocessing/passes/pseudo_boolean_processor.cpp
111 preprocessing/passes/pseudo_boolean_processor.h
112 preprocessing/passes/quantifiers_preprocess.cpp
113 preprocessing/passes/quantifiers_preprocess.h
114 preprocessing/passes/real_to_int.cpp
115 preprocessing/passes/real_to_int.h
116 preprocessing/passes/rewrite.cpp
117 preprocessing/passes/rewrite.h
118 preprocessing/passes/sep_skolem_emp.cpp
119 preprocessing/passes/sep_skolem_emp.h
120 preprocessing/passes/sort_infer.cpp
121 preprocessing/passes/sort_infer.h
122 preprocessing/passes/static_learning.cpp
123 preprocessing/passes/static_learning.h
124 preprocessing/passes/strings_eager_pp.cpp
125 preprocessing/passes/strings_eager_pp.h
126 preprocessing/passes/sygus_inference.cpp
127 preprocessing/passes/sygus_inference.h
128 preprocessing/passes/synth_rew_rules.cpp
129 preprocessing/passes/synth_rew_rules.h
130 preprocessing/passes/theory_preprocess.cpp
131 preprocessing/passes/theory_preprocess.h
132 preprocessing/passes/theory_rewrite_eq.cpp
133 preprocessing/passes/theory_rewrite_eq.h
134 preprocessing/passes/unconstrained_simplifier.cpp
135 preprocessing/passes/unconstrained_simplifier.h
136 preprocessing/preprocessing_pass.cpp
137 preprocessing/preprocessing_pass.h
138 preprocessing/preprocessing_pass_context.cpp
139 preprocessing/preprocessing_pass_context.h
140 preprocessing/preprocessing_pass_registry.cpp
141 preprocessing/preprocessing_pass_registry.h
142 preprocessing/util/ite_utilities.cpp
143 preprocessing/util/ite_utilities.h
144 printer/ast/ast_printer.cpp
145 printer/ast/ast_printer.h
146 printer/let_binding.cpp
147 printer/let_binding.h
148 printer/printer.cpp
149 printer/printer.h
150 printer/smt2/smt2_printer.cpp
151 printer/smt2/smt2_printer.h
152 printer/tptp/tptp_printer.cpp
153 printer/tptp/tptp_printer.h
154 proof/annotation_proof_generator.cpp
155 proof/annotation_proof_generator.h
156 proof/assumption_proof_generator.cpp
157 proof/assumption_proof_generator.h
158 proof/buffered_proof_generator.cpp
159 proof/buffered_proof_generator.h
160 proof/conv_proof_generator.cpp
161 proof/conv_proof_generator.h
162 proof/conv_seq_proof_generator.cpp
163 proof/conv_seq_proof_generator.h
164 proof/clause_id.h
165 proof/dot/dot_printer.cpp
166 proof/dot/dot_printer.h
167 proof/eager_proof_generator.cpp
168 proof/eager_proof_generator.h
169 proof/lazy_proof.cpp
170 proof/lazy_proof.h
171 proof/lazy_proof_chain.cpp
172 proof/lazy_proof_chain.h
173 proof/lazy_tree_proof_generator.cpp
174 proof/lazy_tree_proof_generator.h
175 proof/lfsc/lfsc_list_sc_node_converter.cpp
176 proof/lfsc/lfsc_list_sc_node_converter.h
177 proof/lfsc/lfsc_node_converter.cpp
178 proof/lfsc/lfsc_node_converter.h
179 proof/lfsc/lfsc_post_processor.cpp
180 proof/lfsc/lfsc_post_processor.h
181 proof/lfsc/lfsc_printer.cpp
182 proof/lfsc/lfsc_printer.h
183 proof/lfsc/lfsc_print_channel.cpp
184 proof/lfsc/lfsc_print_channel.h
185 proof/lfsc/lfsc_util.cpp
186 proof/lfsc/lfsc_util.h
187 proof/method_id.cpp
188 proof/method_id.h
189 proof/print_expr.cpp
190 proof/print_expr.h
191 proof/proof.cpp
192 proof/proof.h
193 proof/proof_checker.cpp
194 proof/proof_checker.h
195 proof/proof_ensure_closed.cpp
196 proof/proof_ensure_closed.h
197 proof/proof_generator.cpp
198 proof/proof_generator.h
199 proof/proof_letify.cpp
200 proof/proof_letify.h
201 proof/proof_node.cpp
202 proof/proof_node.h
203 proof/proof_node_algorithm.cpp
204 proof/proof_node_algorithm.h
205 proof/proof_node_to_sexpr.cpp
206 proof/proof_node_to_sexpr.h
207 proof/proof_node_manager.cpp
208 proof/proof_node_manager.h
209 proof/proof_node_updater.cpp
210 proof/proof_node_updater.h
211 proof/proof_rule.cpp
212 proof/proof_rule.h
213 proof/proof_set.h
214 proof/proof_step_buffer.cpp
215 proof/proof_step_buffer.h
216 proof/trust_node.cpp
217 proof/trust_node.h
218 proof/theory_proof_step_buffer.cpp
219 proof/theory_proof_step_buffer.h
220 proof/unsat_core.cpp
221 proof/unsat_core.h
222 proof/alethe/alethe_nosubtype_node_converter.cpp
223 proof/alethe/alethe_nosubtype_node_converter.h
224 proof/alethe/alethe_node_converter.cpp
225 proof/alethe/alethe_node_converter.h
226 proof/alethe/alethe_post_processor.cpp
227 proof/alethe/alethe_post_processor.h
228 proof/alethe/alethe_printer.h
229 proof/alethe/alethe_printer.cpp
230 proof/alethe/alethe_proof_rule.cpp
231 proof/alethe/alethe_proof_rule.h
232 prop/cadical.cpp
233 prop/cadical.h
234 prop/cnf_stream.cpp
235 prop/cnf_stream.h
236 prop/cryptominisat.cpp
237 prop/cryptominisat.h
238 prop/kissat.cpp
239 prop/kissat.h
240 prop/proof_cnf_stream.cpp
241 prop/proof_cnf_stream.h
242 prop/minisat/core/Dimacs.h
243 prop/minisat/core/Solver.cc
244 prop/minisat/core/Solver.h
245 prop/minisat/core/SolverTypes.h
246 prop/minisat/minisat.cpp
247 prop/minisat/minisat.h
248 prop/minisat/mtl/Alg.h
249 prop/minisat/mtl/Alloc.h
250 prop/minisat/mtl/Heap.h
251 prop/minisat/mtl/IntTypes.h
252 prop/minisat/mtl/Map.h
253 prop/minisat/mtl/Queue.h
254 prop/minisat/mtl/Sort.h
255 prop/minisat/mtl/Vec.h
256 prop/minisat/mtl/XAlloc.h
257 prop/minisat/simp/SimpSolver.cc
258 prop/minisat/simp/SimpSolver.h
259 prop/minisat/utils/Options.h
260 prop/proof_post_processor.cpp
261 prop/proof_post_processor.h
262 prop/prop_engine.cpp
263 prop/prop_engine.h
264 prop/prop_proof_manager.cpp
265 prop/prop_proof_manager.h
266 prop/registrar.h
267 prop/sat_solver.h
268 prop/sat_proof_manager.cpp
269 prop/sat_proof_manager.h
270 prop/sat_solver_factory.cpp
271 prop/sat_solver_factory.h
272 prop/sat_solver_types.cpp
273 prop/sat_solver_types.h
274 prop/skolem_def_manager.cpp
275 prop/skolem_def_manager.h
276 prop/theory_proxy.cpp
277 prop/theory_proxy.h
278 smt/abduction_solver.cpp
279 smt/abduction_solver.h
280 smt/abstract_values.cpp
281 smt/abstract_values.h
282 smt/assertions.cpp
283 smt/assertions.h
284 smt/check_models.cpp
285 smt/check_models.h
286 smt/command.cpp
287 smt/command.h
288 smt/difficulty_post_processor.cpp
289 smt/difficulty_post_processor.h
290 smt/env.cpp
291 smt/env.h
292 smt/env_obj.cpp
293 smt/env_obj.h
294 smt/expand_definitions.cpp
295 smt/expand_definitions.h
296 smt/listeners.cpp
297 smt/listeners.h
298 smt/logic_exception.h
299 smt/interpolation_solver.cpp
300 smt/interpolation_solver.h
301 smt/model.cpp
302 smt/model.h
303 smt/model_core_builder.cpp
304 smt/model_core_builder.h
305 smt/model_blocker.cpp
306 smt/model_blocker.h
307 smt/optimization_solver.cpp
308 smt/optimization_solver.h
309 smt/quant_elim_solver.cpp
310 smt/quant_elim_solver.h
311 smt/preprocessor.cpp
312 smt/preprocessor.h
313 smt/preprocess_proof_generator.cpp
314 smt/preprocess_proof_generator.h
315 smt/print_benchmark.cpp
316 smt/print_benchmark.h
317 smt/process_assertions.cpp
318 smt/process_assertions.h
319 smt/proof_manager.cpp
320 smt/proof_manager.h
321 smt/proof_final_callback.cpp
322 smt/proof_final_callback.h
323 smt/proof_post_processor.cpp
324 smt/proof_post_processor.h
325 smt/set_defaults.cpp
326 smt/set_defaults.h
327 smt/solver_engine.cpp
328 smt/solver_engine.h
329 smt/solver_engine_scope.cpp
330 smt/solver_engine_scope.h
331 smt/solver_engine_state.cpp
332 smt/solver_engine_state.h
333 smt/solver_engine_stats.cpp
334 smt/solver_engine_stats.h
335 smt/smt_mode.cpp
336 smt/smt_mode.h
337 smt/smt_solver.cpp
338 smt/smt_solver.h
339 smt/smt_statistics_registry.cpp
340 smt/smt_statistics_registry.h
341 smt/sygus_solver.cpp
342 smt/sygus_solver.h
343 smt/term_formula_removal.cpp
344 smt/term_formula_removal.h
345 smt/unsat_core_manager.cpp
346 smt/unsat_core_manager.h
347 smt/witness_form.cpp
348 smt/witness_form.h
349 smt_util/boolean_simplification.cpp
350 smt_util/boolean_simplification.h
351 theory/arith/approx_simplex.cpp
352 theory/arith/approx_simplex.h
353 theory/arith/arith_ite_utils.cpp
354 theory/arith/arith_ite_utils.h
355 theory/arith/arith_msum.cpp
356 theory/arith/arith_msum.h
357 theory/arith/arith_poly_norm.cpp
358 theory/arith/arith_poly_norm.h
359 theory/arith/arith_preprocess.cpp
360 theory/arith/arith_preprocess.h
361 theory/arith/arith_rewriter.cpp
362 theory/arith/arith_rewriter.h
363 theory/arith/arith_state.cpp
364 theory/arith/arith_state.h
365 theory/arith/arith_static_learner.cpp
366 theory/arith/arith_static_learner.h
367 theory/arith/arith_utilities.cpp
368 theory/arith/arith_utilities.h
369 theory/arith/arithvar.cpp
370 theory/arith/arithvar.h
371 theory/arith/attempt_solution_simplex.cpp
372 theory/arith/attempt_solution_simplex.h
373 theory/arith/bound_counts.h
374 theory/arith/bound_inference.cpp
375 theory/arith/bound_inference.h
376 theory/arith/branch_and_bound.cpp
377 theory/arith/branch_and_bound.h
378 theory/arith/callbacks.cpp
379 theory/arith/callbacks.h
380 theory/arith/congruence_manager.cpp
381 theory/arith/congruence_manager.h
382 theory/arith/constraint.cpp
383 theory/arith/constraint.h
384 theory/arith/constraint_forward.h
385 theory/arith/cut_log.cpp
386 theory/arith/cut_log.h
387 theory/arith/delta_rational.cpp
388 theory/arith/delta_rational.h
389 theory/arith/dio_solver.cpp
390 theory/arith/dio_solver.h
391 theory/arith/dual_simplex.cpp
392 theory/arith/dual_simplex.h
393 theory/arith/equality_solver.cpp
394 theory/arith/equality_solver.h
395 theory/arith/error_set.cpp
396 theory/arith/error_set.h
397 theory/arith/fc_simplex.cpp
398 theory/arith/fc_simplex.h
399 theory/arith/infer_bounds.cpp
400 theory/arith/infer_bounds.h
401 theory/arith/inference_manager.cpp
402 theory/arith/inference_manager.h
403 theory/arith/linear_equality.cpp
404 theory/arith/linear_equality.h
405 theory/arith/matrix.cpp
406 theory/arith/matrix.h
407 theory/arith/nl/cad_solver.cpp
408 theory/arith/nl/cad_solver.h
409 theory/arith/nl/cad/cdcac.cpp
410 theory/arith/nl/cad/cdcac.h
411 theory/arith/nl/cad/cdcac_utils.cpp
412 theory/arith/nl/cad/cdcac_utils.h
413 theory/arith/nl/cad/constraints.cpp
414 theory/arith/nl/cad/constraints.h
415 theory/arith/nl/cad/lazard_evaluation.cpp
416 theory/arith/nl/cad/lazard_evaluation.h
417 theory/arith/nl/cad/projections.cpp
418 theory/arith/nl/cad/projections.h
419 theory/arith/nl/cad/proof_checker.cpp
420 theory/arith/nl/cad/proof_checker.h
421 theory/arith/nl/cad/proof_generator.cpp
422 theory/arith/nl/cad/proof_generator.h
423 theory/arith/nl/cad/variable_ordering.cpp
424 theory/arith/nl/cad/variable_ordering.h
425 theory/arith/nl/equality_substitution.cpp
426 theory/arith/nl/equality_substitution.h
427 theory/arith/nl/ext/constraint.cpp
428 theory/arith/nl/ext/constraint.h
429 theory/arith/nl/ext/factoring_check.cpp
430 theory/arith/nl/ext/factoring_check.h
431 theory/arith/nl/ext/monomial.cpp
432 theory/arith/nl/ext/monomial.h
433 theory/arith/nl/ext/monomial_bounds_check.cpp
434 theory/arith/nl/ext/monomial_bounds_check.h
435 theory/arith/nl/ext/monomial_check.cpp
436 theory/arith/nl/ext/monomial_check.h
437 theory/arith/nl/ext/ext_state.cpp
438 theory/arith/nl/ext/ext_state.h
439 theory/arith/nl/ext/proof_checker.cpp
440 theory/arith/nl/ext/proof_checker.h
441 theory/arith/nl/ext/split_zero_check.cpp
442 theory/arith/nl/ext/split_zero_check.h
443 theory/arith/nl/ext/tangent_plane_check.cpp
444 theory/arith/nl/ext/tangent_plane_check.h
445 theory/arith/nl/ext_theory_callback.cpp
446 theory/arith/nl/ext_theory_callback.h
447 theory/arith/nl/iand_solver.cpp
448 theory/arith/nl/iand_solver.h
449 theory/arith/nl/icp/candidate.cpp
450 theory/arith/nl/icp/candidate.h
451 theory/arith/nl/icp/contraction_origins.cpp
452 theory/arith/nl/icp/contraction_origins.h
453 theory/arith/nl/icp/icp_solver.cpp
454 theory/arith/nl/icp/icp_solver.h
455 theory/arith/nl/icp/intersection.cpp
456 theory/arith/nl/icp/intersection.h
457 theory/arith/nl/iand_utils.cpp
458 theory/arith/nl/iand_utils.h
459 theory/arith/nl/nl_lemma_utils.cpp
460 theory/arith/nl/nl_lemma_utils.h
461 theory/arith/nl/nl_model.cpp
462 theory/arith/nl/nl_model.h
463 theory/arith/nl/nonlinear_extension.cpp
464 theory/arith/nl/nonlinear_extension.h
465 theory/arith/nl/poly_conversion.cpp
466 theory/arith/nl/poly_conversion.h
467 theory/arith/nl/pow2_solver.cpp
468 theory/arith/nl/pow2_solver.h
469 theory/arith/nl/stats.cpp
470 theory/arith/nl/stats.h
471 theory/arith/nl/strategy.cpp
472 theory/arith/nl/strategy.h
473 theory/arith/nl/transcendental/exponential_solver.cpp
474 theory/arith/nl/transcendental/exponential_solver.h
475 theory/arith/nl/transcendental/proof_checker.cpp
476 theory/arith/nl/transcendental/proof_checker.h
477 theory/arith/nl/transcendental/sine_solver.cpp
478 theory/arith/nl/transcendental/sine_solver.h
479 theory/arith/nl/transcendental/taylor_generator.cpp
480 theory/arith/nl/transcendental/taylor_generator.h
481 theory/arith/nl/transcendental/transcendental_solver.cpp
482 theory/arith/nl/transcendental/transcendental_solver.h
483 theory/arith/nl/transcendental/transcendental_state.cpp
484 theory/arith/nl/transcendental/transcendental_state.h
485 theory/arith/normal_form.cpp
486 theory/arith/normal_form.h
487 theory/arith/operator_elim.cpp
488 theory/arith/operator_elim.h
489 theory/arith/partial_model.cpp
490 theory/arith/partial_model.h
491 theory/arith/pp_rewrite_eq.cpp
492 theory/arith/pp_rewrite_eq.h
493 theory/arith/proof_checker.cpp
494 theory/arith/proof_checker.h
495 theory/arith/rewrites.cpp
496 theory/arith/rewrites.h
497 theory/arith/simplex.cpp
498 theory/arith/simplex.h
499 theory/arith/simplex_update.cpp
500 theory/arith/simplex_update.h
501 theory/arith/soi_simplex.cpp
502 theory/arith/soi_simplex.h
503 theory/arith/tableau.cpp
504 theory/arith/tableau.h
505 theory/arith/tableau_sizes.cpp
506 theory/arith/tableau_sizes.h
507 theory/arith/theory_arith.cpp
508 theory/arith/theory_arith.h
509 theory/arith/theory_arith_private.cpp
510 theory/arith/theory_arith_private.h
511 theory/arith/theory_arith_type_rules.cpp
512 theory/arith/theory_arith_type_rules.h
513 theory/arith/type_enumerator.h
514 theory/arrays/array_info.cpp
515 theory/arrays/array_info.h
516 theory/arrays/inference_manager.cpp
517 theory/arrays/inference_manager.h
518 theory/arrays/proof_checker.cpp
519 theory/arrays/proof_checker.h
520 theory/arrays/skolem_cache.cpp
521 theory/arrays/skolem_cache.h
522 theory/arrays/theory_arrays.cpp
523 theory/arrays/theory_arrays.h
524 theory/arrays/theory_arrays_rewriter.cpp
525 theory/arrays/theory_arrays_rewriter.h
526 theory/arrays/theory_arrays_type_rules.cpp
527 theory/arrays/theory_arrays_type_rules.h
528 theory/arrays/type_enumerator.h
529 theory/arrays/type_enumerator.cpp
530 theory/arrays/union_find.cpp
531 theory/arrays/union_find.h
532 theory/assertion.cpp
533 theory/assertion.h
534 theory/atom_requests.cpp
535 theory/atom_requests.h
536 theory/bags/bag_make_op.cpp
537 theory/bags/bag_make_op.h
538 theory/bags/bags_rewriter.cpp
539 theory/bags/bags_rewriter.h
540 theory/bags/bag_solver.cpp
541 theory/bags/bag_solver.h
542 theory/bags/bag_reduction.cpp
543 theory/bags/bag_reduction.h
544 theory/bags/bags_statistics.cpp
545 theory/bags/bags_statistics.h
546 theory/bags/infer_info.cpp
547 theory/bags/infer_info.h
548 theory/bags/inference_generator.cpp
549 theory/bags/inference_generator.h
550 theory/bags/inference_manager.cpp
551 theory/bags/inference_manager.h
552 theory/bags/normal_form.cpp
553 theory/bags/normal_form.h
554 theory/bags/rewrites.cpp
555 theory/bags/rewrites.h
556 theory/bags/solver_state.cpp
557 theory/bags/solver_state.h
558 theory/bags/term_registry.cpp
559 theory/bags/term_registry.h
560 theory/bags/theory_bags.cpp
561 theory/bags/theory_bags.h
562 theory/bags/theory_bags_type_enumerator.cpp
563 theory/bags/theory_bags_type_enumerator.h
564 theory/bags/theory_bags_type_rules.h
565 theory/bags/theory_bags_type_rules.cpp
566 theory/booleans/circuit_propagator.cpp
567 theory/booleans/circuit_propagator.h
568 theory/booleans/proof_circuit_propagator.cpp
569 theory/booleans/proof_circuit_propagator.h
570 theory/booleans/proof_checker.cpp
571 theory/booleans/proof_checker.h
572 theory/booleans/theory_bool.cpp
573 theory/booleans/theory_bool.h
574 theory/booleans/theory_bool_rewriter.cpp
575 theory/booleans/theory_bool_rewriter.h
576 theory/booleans/theory_bool_type_rules.cpp
577 theory/booleans/theory_bool_type_rules.h
578 theory/booleans/type_enumerator.h
579 theory/builtin/proof_checker.cpp
580 theory/builtin/proof_checker.h
581 theory/builtin/theory_builtin.cpp
582 theory/builtin/theory_builtin.h
583 theory/builtin/theory_builtin_rewriter.cpp
584 theory/builtin/theory_builtin_rewriter.h
585 theory/builtin/theory_builtin_type_rules.cpp
586 theory/builtin/theory_builtin_type_rules.h
587 theory/builtin/type_enumerator.cpp
588 theory/builtin/type_enumerator.h
589 theory/bv/bitblast/bitblast_proof_generator.cpp
590 theory/bv/bitblast/bitblast_proof_generator.h
591 theory/bv/bitblast/bitblast_strategies_template.h
592 theory/bv/bitblast/bitblast_utils.h
593 theory/bv/bitblast/bitblaster.h
594 theory/bv/bitblast/node_bitblaster.cpp
595 theory/bv/bitblast/node_bitblaster.h
596 theory/bv/bitblast/proof_bitblaster.cpp
597 theory/bv/bitblast/proof_bitblaster.h
598 theory/bv/bv_solver.h
599 theory/bv/bv_solver_bitblast.cpp
600 theory/bv/bv_solver_bitblast.h
601 theory/bv/bv_solver_bitblast_internal.cpp
602 theory/bv/bv_solver_bitblast_internal.h
603 theory/bv/int_blaster.cpp
604 theory/bv/int_blaster.h
605 theory/bv/proof_checker.cpp
606 theory/bv/proof_checker.h
607 theory/bv/theory_bv.cpp
608 theory/bv/theory_bv.h
609 theory/bv/theory_bv_rewrite_rules.h
610 theory/bv/theory_bv_rewrite_rules_constant_evaluation.h
611 theory/bv/theory_bv_rewrite_rules_core.h
612 theory/bv/theory_bv_rewrite_rules_normalization.h
613 theory/bv/theory_bv_rewrite_rules_operator_elimination.h
614 theory/bv/theory_bv_rewrite_rules_simplification.h
615 theory/bv/theory_bv_rewriter.cpp
616 theory/bv/theory_bv_rewriter.h
617 theory/bv/theory_bv_type_rules.cpp
618 theory/bv/theory_bv_type_rules.h
619 theory/bv/theory_bv_utils.cpp
620 theory/bv/theory_bv_utils.h
621 theory/bv/type_enumerator.h
622 theory/care_graph.h
623 theory/combination_care_graph.cpp
624 theory/combination_care_graph.h
625 theory/combination_engine.cpp
626 theory/combination_engine.h
627 theory/datatypes/datatypes_rewriter.cpp
628 theory/datatypes/datatypes_rewriter.h
629 theory/datatypes/inference.cpp
630 theory/datatypes/inference.h
631 theory/datatypes/inference_manager.cpp
632 theory/datatypes/inference_manager.h
633 theory/datatypes/infer_proof_cons.cpp
634 theory/datatypes/infer_proof_cons.h
635 theory/datatypes/proof_checker.cpp
636 theory/datatypes/proof_checker.h
637 theory/datatypes/sygus_datatype_utils.cpp
638 theory/datatypes/sygus_datatype_utils.h
639 theory/datatypes/sygus_extension.cpp
640 theory/datatypes/sygus_extension.h
641 theory/datatypes/sygus_simple_sym.cpp
642 theory/datatypes/sygus_simple_sym.h
643 theory/datatypes/theory_datatypes.cpp
644 theory/datatypes/theory_datatypes.h
645 theory/datatypes/theory_datatypes_type_rules.cpp
646 theory/datatypes/theory_datatypes_type_rules.h
647 theory/datatypes/theory_datatypes_utils.cpp
648 theory/datatypes/theory_datatypes_utils.h
649 theory/datatypes/tuple_project_op.cpp
650 theory/datatypes/tuple_project_op.h
651 theory/datatypes/type_enumerator.cpp
652 theory/datatypes/type_enumerator.h
653 theory/decision_manager.cpp
654 theory/decision_manager.h
655 theory/decision_strategy.cpp
656 theory/decision_strategy.h
657 theory/difficulty_manager.cpp
658 theory/difficulty_manager.h
659 theory/ee_manager.cpp
660 theory/ee_manager.h
661 theory/ee_manager_central.cpp
662 theory/ee_manager_central.h
663 theory/ee_manager_distributed.cpp
664 theory/ee_manager_distributed.h
665 theory/ee_setup_info.h
666 theory/engine_output_channel.cpp
667 theory/engine_output_channel.h
668 theory/evaluator.cpp
669 theory/evaluator.h
670 theory/ext_theory.cpp
671 theory/ext_theory.h
672 theory/fp/fp_word_blaster.cpp
673 theory/fp/fp_word_blaster.h
674 theory/fp/fp_expand_defs.cpp
675 theory/fp/fp_expand_defs.h
676 theory/fp/theory_fp.cpp
677 theory/fp/theory_fp.h
678 theory/fp/theory_fp_rewriter.cpp
679 theory/fp/theory_fp_rewriter.h
680 theory/fp/theory_fp_type_rules.h
681 theory/fp/theory_fp_type_rules.cpp
682 theory/fp/type_enumerator.h
683 theory/interrupted.h
684 theory/incomplete_id.cpp
685 theory/incomplete_id.h
686 theory/inference_id.cpp
687 theory/inference_id.h
688 theory/inference_id_proof_annotator.cpp
689 theory/inference_id_proof_annotator.h
690 theory/inference_manager_buffered.cpp
691 theory/inference_manager_buffered.h
692 theory/logic_info.cpp
693 theory/logic_info.h
694 theory/model_manager.cpp
695 theory/model_manager.h
696 theory/model_manager_distributed.cpp
697 theory/model_manager_distributed.h
698 theory/output_channel.cpp
699 theory/output_channel.h
700 theory/quantifiers/alpha_equivalence.cpp
701 theory/quantifiers/alpha_equivalence.h
702 theory/quantifiers/bv_inverter.cpp
703 theory/quantifiers/bv_inverter.h
704 theory/quantifiers/bv_inverter_utils.cpp
705 theory/quantifiers/bv_inverter_utils.h
706 theory/quantifiers/candidate_rewrite_database.cpp
707 theory/quantifiers/candidate_rewrite_database.h
708 theory/quantifiers/candidate_rewrite_filter.cpp
709 theory/quantifiers/candidate_rewrite_filter.h
710 theory/quantifiers/cegqi/ceg_arith_instantiator.cpp
711 theory/quantifiers/cegqi/ceg_arith_instantiator.h
712 theory/quantifiers/cegqi/ceg_bv_instantiator.cpp
713 theory/quantifiers/cegqi/ceg_bv_instantiator.h
714 theory/quantifiers/cegqi/ceg_bv_instantiator_utils.cpp
715 theory/quantifiers/cegqi/ceg_bv_instantiator_utils.h
716 theory/quantifiers/cegqi/ceg_dt_instantiator.cpp
717 theory/quantifiers/cegqi/ceg_dt_instantiator.h
718 theory/quantifiers/cegqi/ceg_instantiator.cpp
719 theory/quantifiers/cegqi/ceg_instantiator.h
720 theory/quantifiers/cegqi/inst_strategy_cegqi.cpp
721 theory/quantifiers/cegqi/inst_strategy_cegqi.h
722 theory/quantifiers/cegqi/nested_qe.cpp
723 theory/quantifiers/cegqi/nested_qe.h
724 theory/quantifiers/cegqi/vts_term_cache.cpp
725 theory/quantifiers/cegqi/vts_term_cache.h
726 theory/quantifiers/conjecture_generator.cpp
727 theory/quantifiers/conjecture_generator.h
728 theory/quantifiers/dynamic_rewrite.cpp
729 theory/quantifiers/dynamic_rewrite.h
730 theory/quantifiers/ematching/candidate_generator.cpp
731 theory/quantifiers/ematching/candidate_generator.h
732 theory/quantifiers/ematching/ho_trigger.cpp
733 theory/quantifiers/ematching/ho_trigger.h
734 theory/quantifiers/ematching/im_generator.cpp
735 theory/quantifiers/ematching/im_generator.h
736 theory/quantifiers/ematching/inst_match_generator.cpp
737 theory/quantifiers/ematching/inst_match_generator.h
738 theory/quantifiers/ematching/inst_match_generator_multi.cpp
739 theory/quantifiers/ematching/inst_match_generator_multi.h
740 theory/quantifiers/ematching/inst_match_generator_multi_linear.cpp
741 theory/quantifiers/ematching/inst_match_generator_multi_linear.h
742 theory/quantifiers/ematching/inst_match_generator_simple.cpp
743 theory/quantifiers/ematching/inst_match_generator_simple.h
744 theory/quantifiers/ematching/inst_strategy.cpp
745 theory/quantifiers/ematching/inst_strategy.h
746 theory/quantifiers/ematching/inst_strategy_e_matching.cpp
747 theory/quantifiers/ematching/inst_strategy_e_matching.h
748 theory/quantifiers/ematching/inst_strategy_e_matching_user.cpp
749 theory/quantifiers/ematching/inst_strategy_e_matching_user.h
750 theory/quantifiers/ematching/instantiation_engine.cpp
751 theory/quantifiers/ematching/instantiation_engine.h
752 theory/quantifiers/ematching/pattern_term_selector.cpp
753 theory/quantifiers/ematching/pattern_term_selector.h
754 theory/quantifiers/ematching/relational_match_generator.cpp
755 theory/quantifiers/ematching/relational_match_generator.h
756 theory/quantifiers/ematching/trigger.cpp
757 theory/quantifiers/ematching/trigger.h
758 theory/quantifiers/ematching/trigger_database.cpp
759 theory/quantifiers/ematching/trigger_database.h
760 theory/quantifiers/ematching/trigger_term_info.cpp
761 theory/quantifiers/ematching/trigger_term_info.h
762 theory/quantifiers/ematching/trigger_trie.cpp
763 theory/quantifiers/ematching/trigger_trie.h
764 theory/quantifiers/ematching/var_match_generator.cpp
765 theory/quantifiers/ematching/var_match_generator.h
766 theory/quantifiers/entailment_check.cpp
767 theory/quantifiers/entailment_check.h
768 theory/quantifiers/equality_query.cpp
769 theory/quantifiers/equality_query.h
770 theory/quantifiers/expr_miner.cpp
771 theory/quantifiers/expr_miner.h
772 theory/quantifiers/expr_miner_manager.cpp
773 theory/quantifiers/expr_miner_manager.h
774 theory/quantifiers/extended_rewrite.cpp
775 theory/quantifiers/extended_rewrite.h
776 theory/quantifiers/first_order_model.cpp
777 theory/quantifiers/first_order_model.h
778 theory/quantifiers/fmf/bounded_integers.cpp
779 theory/quantifiers/fmf/bounded_integers.h
780 theory/quantifiers/fmf/first_order_model_fmc.cpp
781 theory/quantifiers/fmf/first_order_model_fmc.h
782 theory/quantifiers/fmf/full_model_check.cpp
783 theory/quantifiers/fmf/full_model_check.h
784 theory/quantifiers/fmf/model_builder.cpp
785 theory/quantifiers/fmf/model_builder.h
786 theory/quantifiers/fmf/model_engine.cpp
787 theory/quantifiers/fmf/model_engine.h
788 theory/quantifiers/fun_def_evaluator.cpp
789 theory/quantifiers/fun_def_evaluator.h
790 theory/quantifiers/ho_term_database.cpp
791 theory/quantifiers/ho_term_database.h
792 theory/quantifiers/index_trie.cpp
793 theory/quantifiers/index_trie.h
794 theory/quantifiers/inst_match.cpp
795 theory/quantifiers/inst_match.h
796 theory/quantifiers/inst_match_trie.cpp
797 theory/quantifiers/inst_match_trie.h
798 theory/quantifiers/inst_strategy_enumerative.cpp
799 theory/quantifiers/inst_strategy_enumerative.h
800 theory/quantifiers/inst_strategy_pool.cpp
801 theory/quantifiers/inst_strategy_pool.h
802 theory/quantifiers/instantiate.cpp
803 theory/quantifiers/instantiate.h
804 theory/quantifiers/instantiation_list.cpp
805 theory/quantifiers/instantiation_list.h
806 theory/quantifiers/lazy_trie.cpp
807 theory/quantifiers/lazy_trie.h
808 theory/quantifiers/master_eq_notify.cpp
809 theory/quantifiers/master_eq_notify.h
810 theory/quantifiers/proof_checker.cpp
811 theory/quantifiers/proof_checker.h
812 theory/quantifiers/quant_bound_inference.cpp
813 theory/quantifiers/quant_bound_inference.h
814 theory/quantifiers/quant_conflict_find.cpp
815 theory/quantifiers/quant_conflict_find.h
816 theory/quantifiers/quant_relevance.cpp
817 theory/quantifiers/quant_relevance.h
818 theory/quantifiers/quant_rep_bound_ext.cpp
819 theory/quantifiers/quant_rep_bound_ext.h
820 theory/quantifiers/quant_split.cpp
821 theory/quantifiers/quant_split.h
822 theory/quantifiers/quant_util.cpp
823 theory/quantifiers/quant_util.h
824 theory/quantifiers/quant_module.cpp
825 theory/quantifiers/quant_module.h
826 theory/quantifiers/quantifiers_attributes.cpp
827 theory/quantifiers/quantifiers_attributes.h
828 theory/quantifiers/quantifiers_inference_manager.cpp
829 theory/quantifiers/quantifiers_inference_manager.h
830 theory/quantifiers/quantifiers_macros.cpp
831 theory/quantifiers/quantifiers_macros.h
832 theory/quantifiers/quantifiers_modules.cpp
833 theory/quantifiers/quantifiers_modules.h
834 theory/quantifiers/quantifiers_preprocess.cpp
835 theory/quantifiers/quantifiers_preprocess.h
836 theory/quantifiers/quantifiers_registry.cpp
837 theory/quantifiers/quantifiers_registry.h
838 theory/quantifiers/quantifiers_rewriter.cpp
839 theory/quantifiers/quantifiers_rewriter.h
840 theory/quantifiers/quantifiers_state.cpp
841 theory/quantifiers/quantifiers_state.h
842 theory/quantifiers/quantifiers_statistics.cpp
843 theory/quantifiers/quantifiers_statistics.h
844 theory/quantifiers/query_generator.cpp
845 theory/quantifiers/query_generator.h
846 theory/quantifiers/query_generator_unsat.cpp
847 theory/quantifiers/query_generator_unsat.h
848 theory/quantifiers/relevant_domain.cpp
849 theory/quantifiers/relevant_domain.h
850 theory/quantifiers/single_inv_partition.cpp
851 theory/quantifiers/single_inv_partition.h
852 theory/quantifiers/skolemize.cpp
853 theory/quantifiers/skolemize.h
854 theory/quantifiers/solution_filter.cpp
855 theory/quantifiers/solution_filter.h
856 theory/quantifiers/term_pools.cpp
857 theory/quantifiers/term_pools.h
858 theory/quantifiers/term_tuple_enumerator.cpp
859 theory/quantifiers/term_tuple_enumerator.h
860 theory/quantifiers/sygus/ce_guided_single_inv.cpp
861 theory/quantifiers/sygus/ce_guided_single_inv.h
862 theory/quantifiers/sygus/cegis.cpp
863 theory/quantifiers/sygus/cegis.h
864 theory/quantifiers/sygus/cegis_core_connective.cpp
865 theory/quantifiers/sygus/cegis_core_connective.h
866 theory/quantifiers/sygus/cegis_unif.cpp
867 theory/quantifiers/sygus/cegis_unif.h
868 theory/quantifiers/sygus/enum_val_generator.h
869 theory/quantifiers/sygus/example_eval_cache.cpp
870 theory/quantifiers/sygus/example_eval_cache.h
871 theory/quantifiers/sygus/example_infer.cpp
872 theory/quantifiers/sygus/example_infer.h
873 theory/quantifiers/sygus/example_min_eval.cpp
874 theory/quantifiers/sygus/example_min_eval.h
875 theory/quantifiers/sygus/enum_stream_substitution.cpp
876 theory/quantifiers/sygus/enum_stream_substitution.h
877 theory/quantifiers/sygus/enum_value_manager.cpp
878 theory/quantifiers/sygus/enum_value_manager.h
879 theory/quantifiers/sygus/example_infer.cpp
880 theory/quantifiers/sygus/example_infer.h
881 theory/quantifiers/sygus/example_min_eval.cpp
882 theory/quantifiers/sygus/example_min_eval.h
883 theory/quantifiers/sygus/rcons_obligation.cpp
884 theory/quantifiers/sygus/rcons_obligation.h
885 theory/quantifiers/sygus/rcons_type_info.cpp
886 theory/quantifiers/sygus/rcons_type_info.h
887 theory/quantifiers/sygus/sygus_abduct.cpp
888 theory/quantifiers/sygus/sygus_abduct.h
889 theory/quantifiers/sygus/sygus_enumerator.cpp
890 theory/quantifiers/sygus/sygus_enumerator.h
891 theory/quantifiers/sygus/sygus_enumerator_basic.cpp
892 theory/quantifiers/sygus/sygus_enumerator_basic.h
893 theory/quantifiers/sygus/sygus_enumerator_callback.cpp
894 theory/quantifiers/sygus/sygus_enumerator_callback.h
895 theory/quantifiers/sygus/sygus_eval_unfold.cpp
896 theory/quantifiers/sygus/sygus_eval_unfold.h
897 theory/quantifiers/sygus/sygus_explain.cpp
898 theory/quantifiers/sygus/sygus_explain.h
899 theory/quantifiers/sygus/sygus_grammar_cons.cpp
900 theory/quantifiers/sygus/sygus_grammar_cons.h
901 theory/quantifiers/sygus/sygus_grammar_norm.cpp
902 theory/quantifiers/sygus/sygus_grammar_norm.h
903 theory/quantifiers/sygus/sygus_grammar_red.cpp
904 theory/quantifiers/sygus/sygus_grammar_red.h
905 theory/quantifiers/sygus/sygus_interpol.cpp
906 theory/quantifiers/sygus/sygus_interpol.h
907 theory/quantifiers/sygus/sygus_invariance.cpp
908 theory/quantifiers/sygus/sygus_invariance.h
909 theory/quantifiers/sygus/sygus_module.cpp
910 theory/quantifiers/sygus/sygus_module.h
911 theory/quantifiers/sygus/sygus_pbe.cpp
912 theory/quantifiers/sygus/sygus_pbe.h
913 theory/quantifiers/sygus/sygus_process_conj.cpp
914 theory/quantifiers/sygus/sygus_process_conj.h
915 theory/quantifiers/sygus/sygus_reconstruct.cpp
916 theory/quantifiers/sygus/sygus_reconstruct.h
917 theory/quantifiers/sygus/sygus_qe_preproc.cpp
918 theory/quantifiers/sygus/sygus_qe_preproc.h
919 theory/quantifiers/sygus/sygus_repair_const.cpp
920 theory/quantifiers/sygus/sygus_repair_const.h
921 theory/quantifiers/sygus/sygus_stats.cpp
922 theory/quantifiers/sygus/sygus_stats.h
923 theory/quantifiers/sygus/sygus_unif.cpp
924 theory/quantifiers/sygus/sygus_unif.h
925 theory/quantifiers/sygus/sygus_unif_io.cpp
926 theory/quantifiers/sygus/sygus_unif_io.h
927 theory/quantifiers/sygus/sygus_unif_rl.cpp
928 theory/quantifiers/sygus/sygus_unif_rl.h
929 theory/quantifiers/sygus/sygus_unif_strat.cpp
930 theory/quantifiers/sygus/sygus_unif_strat.h
931 theory/quantifiers/sygus/sygus_utils.cpp
932 theory/quantifiers/sygus/sygus_utils.h
933 theory/quantifiers/sygus/synth_conjecture.cpp
934 theory/quantifiers/sygus/synth_conjecture.h
935 theory/quantifiers/sygus/synth_engine.cpp
936 theory/quantifiers/sygus/synth_engine.h
937 theory/quantifiers/sygus/synth_verify.cpp
938 theory/quantifiers/sygus/synth_verify.h
939 theory/quantifiers/sygus/template_infer.cpp
940 theory/quantifiers/sygus/template_infer.h
941 theory/quantifiers/sygus/term_database_sygus.cpp
942 theory/quantifiers/sygus/term_database_sygus.h
943 theory/quantifiers/sygus/type_info.cpp
944 theory/quantifiers/sygus/type_info.h
945 theory/quantifiers/sygus/type_node_id_trie.cpp
946 theory/quantifiers/sygus/type_node_id_trie.h
947 theory/quantifiers/sygus/transition_inference.cpp
948 theory/quantifiers/sygus/transition_inference.h
949 theory/quantifiers/sygus_inst.cpp
950 theory/quantifiers/sygus_inst.h
951 theory/quantifiers/sygus_sampler.cpp
952 theory/quantifiers/sygus_sampler.h
953 theory/quantifiers/term_database.cpp
954 theory/quantifiers/term_database.h
955 theory/quantifiers/term_enumeration.cpp
956 theory/quantifiers/term_enumeration.h
957 theory/quantifiers/term_pools.cpp
958 theory/quantifiers/term_pools.h
959 theory/quantifiers/term_registry.cpp
960 theory/quantifiers/term_registry.h
961 theory/quantifiers/term_util.cpp
962 theory/quantifiers/term_util.h
963 theory/quantifiers/theory_quantifiers.cpp
964 theory/quantifiers/theory_quantifiers.h
965 theory/quantifiers/theory_quantifiers_type_rules.cpp
966 theory/quantifiers/theory_quantifiers_type_rules.h
967 theory/quantifiers_engine.cpp
968 theory/quantifiers_engine.h
969 theory/relevance_manager.cpp
970 theory/relevance_manager.h
971 theory/rep_set.cpp
972 theory/rep_set.h
973 theory/rewriter.cpp
974 theory/rewriter.h
975 theory/rewriter_attributes.h
976 theory/sep/theory_sep.cpp
977 theory/sep/theory_sep.h
978 theory/sep/theory_sep_rewriter.cpp
979 theory/sep/theory_sep_rewriter.h
980 theory/sep/theory_sep_type_rules.cpp
981 theory/sep/theory_sep_type_rules.h
982 theory/sets/cardinality_extension.cpp
983 theory/sets/cardinality_extension.h
984 theory/sets/inference_manager.cpp
985 theory/sets/inference_manager.h
986 theory/sets/normal_form.h
987 theory/sets/rels_utils.h
988 theory/sets/singleton_op.cpp
989 theory/sets/singleton_op.h
990 theory/sets/skolem_cache.cpp
991 theory/sets/skolem_cache.h
992 theory/sets/solver_state.cpp
993 theory/sets/solver_state.h
994 theory/sets/term_registry.cpp
995 theory/sets/term_registry.h
996 theory/sets/theory_sets.cpp
997 theory/sets/theory_sets.h
998 theory/sets/theory_sets_private.cpp
999 theory/sets/theory_sets_private.h
1000 theory/sets/theory_sets_rels.cpp
1001 theory/sets/theory_sets_rels.h
1002 theory/sets/theory_sets_rewriter.cpp
1003 theory/sets/theory_sets_rewriter.h
1004 theory/sets/theory_sets_type_enumerator.cpp
1005 theory/sets/theory_sets_type_enumerator.h
1006 theory/sets/theory_sets_type_rules.cpp
1007 theory/sets/theory_sets_type_rules.h
1008 theory/shared_solver.cpp
1009 theory/shared_solver.h
1010 theory/shared_solver_distributed.cpp
1011 theory/shared_solver_distributed.h
1012 theory/shared_terms_database.cpp
1013 theory/shared_terms_database.h
1014 theory/skolem_lemma.cpp
1015 theory/skolem_lemma.h
1016 theory/smt_engine_subsolver.cpp
1017 theory/smt_engine_subsolver.h
1018 theory/sort_inference.cpp
1019 theory/sort_inference.h
1020 theory/strings/array_solver.cpp
1021 theory/strings/array_solver.h
1022 theory/strings/array_core_solver.cpp
1023 theory/strings/array_core_solver.h
1024 theory/strings/arith_entail.cpp
1025 theory/strings/arith_entail.h
1026 theory/strings/base_solver.cpp
1027 theory/strings/base_solver.h
1028 theory/strings/core_solver.cpp
1029 theory/strings/core_solver.h
1030 theory/strings/eager_solver.cpp
1031 theory/strings/eager_solver.h
1032 theory/strings/extf_solver.cpp
1033 theory/strings/extf_solver.h
1034 theory/strings/eqc_info.cpp
1035 theory/strings/eqc_info.h
1036 theory/strings/infer_info.cpp
1037 theory/strings/infer_info.h
1038 theory/strings/infer_proof_cons.cpp
1039 theory/strings/infer_proof_cons.h
1040 theory/strings/inference_manager.cpp
1041 theory/strings/inference_manager.h
1042 theory/strings/normal_form.cpp
1043 theory/strings/normal_form.h
1044 theory/strings/proof_checker.cpp
1045 theory/strings/proof_checker.h
1046 theory/strings/regexp_enumerator.cpp
1047 theory/strings/regexp_enumerator.h
1048 theory/strings/regexp_elim.cpp
1049 theory/strings/regexp_elim.h
1050 theory/strings/regexp_entail.cpp
1051 theory/strings/regexp_entail.h
1052 theory/strings/regexp_operation.cpp
1053 theory/strings/regexp_operation.h
1054 theory/strings/regexp_solver.cpp
1055 theory/strings/regexp_solver.h
1056 theory/strings/rewrites.cpp
1057 theory/strings/rewrites.h
1058 theory/strings/sequences_rewriter.cpp
1059 theory/strings/sequences_rewriter.h
1060 theory/strings/sequences_stats.cpp
1061 theory/strings/sequences_stats.h
1062 theory/strings/skolem_cache.cpp
1063 theory/strings/skolem_cache.h
1064 theory/strings/solver_state.cpp
1065 theory/strings/solver_state.h
1066 theory/strings/strategy.cpp
1067 theory/strings/strategy.h
1068 theory/strings/strings_entail.cpp
1069 theory/strings/strings_entail.h
1070 theory/strings/strings_fmf.cpp
1071 theory/strings/strings_fmf.h
1072 theory/strings/strings_rewriter.cpp
1073 theory/strings/strings_rewriter.h
1074 theory/strings/theory_strings.cpp
1075 theory/strings/theory_strings.h
1076 theory/strings/theory_strings_preprocess.cpp
1077 theory/strings/theory_strings_preprocess.h
1078 theory/strings/theory_strings_type_rules.cpp
1079 theory/strings/theory_strings_type_rules.h
1080 theory/strings/theory_strings_utils.cpp
1081 theory/strings/theory_strings_utils.h
1082 theory/strings/term_registry.cpp
1083 theory/strings/term_registry.h
1084 theory/strings/type_enumerator.cpp
1085 theory/strings/type_enumerator.h
1086 theory/strings/word.cpp
1087 theory/strings/word.h
1088 theory/subs_minimize.cpp
1089 theory/subs_minimize.h
1090 theory/substitutions.cpp
1091 theory/substitutions.h
1092 theory/term_registration_visitor.cpp
1093 theory/term_registration_visitor.h
1094 theory/theory.cpp
1095 theory/theory.h
1096 theory/theory_engine.cpp
1097 theory/theory_engine.h
1098 theory/theory_engine_proof_generator.cpp
1099 theory/theory_engine_proof_generator.h
1100 theory/theory_id.cpp
1101 theory/theory_id.h
1102 theory/theory_eq_notify.h
1103 theory/theory_inference.cpp
1104 theory/theory_inference.h
1105 theory/theory_inference_manager.cpp
1106 theory/theory_inference_manager.h
1107 theory/theory_model.cpp
1108 theory/theory_model.h
1109 theory/theory_model_builder.cpp
1110 theory/theory_model_builder.h
1111 theory/theory_preprocessor.cpp
1112 theory/theory_preprocessor.h
1113 theory/theory_rewriter.cpp
1114 theory/theory_rewriter.h
1115 theory/theory_state.cpp
1116 theory/theory_state.h
1117 theory/trust_substitutions.cpp
1118 theory/trust_substitutions.h
1119 theory/type_enumerator.h
1120 theory/type_set.cpp
1121 theory/type_set.h
1122 theory/uf/cardinality_extension.cpp
1123 theory/uf/cardinality_extension.h
1124 theory/uf/equality_engine.cpp
1125 theory/uf/equality_engine.h
1126 theory/uf/equality_engine_iterator.cpp
1127 theory/uf/equality_engine_iterator.h
1128 theory/uf/equality_engine_notify.h
1129 theory/uf/equality_engine_types.h
1130 theory/uf/eq_proof.cpp
1131 theory/uf/eq_proof.h
1132 theory/uf/function_const.cpp
1133 theory/uf/function_const.h
1134 theory/uf/lambda_lift.cpp
1135 theory/uf/lambda_lift.h
1136 theory/uf/proof_checker.cpp
1137 theory/uf/proof_checker.h
1138 theory/uf/proof_equality_engine.cpp
1139 theory/uf/proof_equality_engine.h
1140 theory/uf/ho_extension.cpp
1141 theory/uf/ho_extension.h
1142 theory/uf/lambda_lift.cpp
1143 theory/uf/lambda_lift.h
1144 theory/uf/symmetry_breaker.cpp
1145 theory/uf/symmetry_breaker.h
1146 theory/uf/theory_uf.cpp
1147 theory/uf/theory_uf.h
1148 theory/uf/theory_uf_model.cpp
1149 theory/uf/theory_uf_model.h
1150 theory/uf/theory_uf_rewriter.cpp
1151 theory/uf/theory_uf_rewriter.h
1152 theory/uf/theory_uf_type_rules.cpp
1153 theory/uf/theory_uf_type_rules.h
1154 theory/uf/type_enumerator.cpp
1155 theory/uf/type_enumerator.h
1156 theory/valuation.cpp
1157 theory/valuation.h
1158 )
1159
1160 #-----------------------------------------------------------------------------#
1161 # Add required include paths for this and all subdirectories.
1162
1163 include_directories(include)
1164 include_directories(. ${CMAKE_CURRENT_BINARY_DIR})
1165
1166 #-----------------------------------------------------------------------------#
1167 # Take care of options
1168
1169 check_python_module("toml")
1170
1171 set(options_toml_files
1172 options/arith_options.toml
1173 options/arrays_options.toml
1174 options/base_options.toml
1175 options/booleans_options.toml
1176 options/builtin_options.toml
1177 options/bv_options.toml
1178 options/datatypes_options.toml
1179 options/decision_options.toml
1180 options/expr_options.toml
1181 options/fp_options.toml
1182 options/main_options.toml
1183 options/parser_options.toml
1184 options/printer_options.toml
1185 options/proof_options.toml
1186 options/prop_options.toml
1187 options/quantifiers_options.toml
1188 options/sep_options.toml
1189 options/sets_options.toml
1190 options/smt_options.toml
1191 options/strings_options.toml
1192 options/theory_options.toml
1193 options/uf_options.toml
1194 )
1195 string(REPLACE "toml" "cpp;" options_gen_cpp_files ${options_toml_files})
1196 string(REPLACE "toml" "h;" options_gen_h_files ${options_toml_files})
1197 list(APPEND options_gen_cpp_files "options/options.cpp" "options/options_public.cpp" "main/options.cpp")
1198 list(APPEND options_gen_h_files "options/options.h")
1199
1200 libcvc5_add_sources(GENERATED ${options_gen_cpp_files} ${options_gen_h_files})
1201
1202 list_prepend(options_toml_files "${CMAKE_CURRENT_LIST_DIR}/" abs_toml_files)
1203
1204 set(options_gen_doc_files "")
1205 if (BUILD_DOCS)
1206 list(
1207 APPEND
1208 options_gen_doc_files
1209 "${CMAKE_BINARY_DIR}/docs/options_generated.rst"
1210 )
1211 endif()
1212
1213 # The mkoptions.py script only updates its output files if their content would
1214 # actually change. This mechanism makes sure that running the script does not
1215 # automatically trigger a full rebuild, but only a rebuild of those parts that
1216 # include files that did actually change.
1217 # This approach also means that the output files (which gen-options used to
1218 # depend on) may not actually be updated and thus cmake would keep re-running
1219 # mkoptions.py over and over again.
1220 # We thus have an artificial options.stamp file that mkoptions.py always writes
1221 # to, and can thus be used to communicate that all options files have been
1222 # properly updated.
1223 add_custom_command(
1224 OUTPUT
1225 options/options.stamp
1226 COMMAND
1227 ${CMAKE_COMMAND} -E make_directory ${CMAKE_CURRENT_BINARY_DIR}/options
1228 COMMAND
1229 ${PYTHON_EXECUTABLE}
1230 ${CMAKE_CURRENT_LIST_DIR}/options/mkoptions.py
1231 ${CMAKE_CURRENT_LIST_DIR}
1232 ${CMAKE_BINARY_DIR}
1233 ${CMAKE_CURRENT_BINARY_DIR}
1234 ${abs_toml_files}
1235 BYPRODUCTS
1236 ${options_gen_cpp_files} ${options_gen_h_files} ${options_gen_doc_files}
1237 DEPENDS
1238 options/mkoptions.py
1239 ${options_toml_files}
1240 main/options_template.cpp
1241 options/module_template.h
1242 options/module_template.cpp
1243 options/options_public_template.cpp
1244 options/options_template.h
1245 options/options_template.cpp
1246 )
1247
1248 add_custom_target(gen-options DEPENDS options/options.stamp)
1249
1250
1251 #-----------------------------------------------------------------------------#
1252
1253 set(KINDS_FILES
1254 ${PROJECT_SOURCE_DIR}/src/theory/builtin/kinds
1255 ${PROJECT_SOURCE_DIR}/src/theory/booleans/kinds
1256 ${PROJECT_SOURCE_DIR}/src/theory/uf/kinds
1257 ${PROJECT_SOURCE_DIR}/src/theory/arith/kinds
1258 ${PROJECT_SOURCE_DIR}/src/theory/bv/kinds
1259 ${PROJECT_SOURCE_DIR}/src/theory/fp/kinds
1260 ${PROJECT_SOURCE_DIR}/src/theory/arrays/kinds
1261 ${PROJECT_SOURCE_DIR}/src/theory/datatypes/kinds
1262 ${PROJECT_SOURCE_DIR}/src/theory/sep/kinds
1263 ${PROJECT_SOURCE_DIR}/src/theory/sets/kinds
1264 ${PROJECT_SOURCE_DIR}/src/theory/bags/kinds
1265 ${PROJECT_SOURCE_DIR}/src/theory/strings/kinds
1266 ${PROJECT_SOURCE_DIR}/src/theory/quantifiers/kinds)
1267
1268 #-----------------------------------------------------------------------------#
1269 # Add subdirectories
1270
1271 add_subdirectory(base)
1272 add_subdirectory(context)
1273 add_subdirectory(expr)
1274 add_subdirectory(parser)
1275 add_subdirectory(theory)
1276 add_subdirectory(util)
1277
1278 #-----------------------------------------------------------------------------#
1279 # All sources for libcvc5 are now collected in LIBCVC5_SRCS and (if generated)
1280 # LIBCVC5_GEN_SRCS (via libcvc5_add_sources). We can now build libcvc5.
1281
1282 set_source_files_properties(${LIBCVC5_GEN_SRCS} PROPERTIES GENERATED TRUE)
1283
1284 # First build the object library
1285 add_library(cvc5-obj OBJECT ${LIBCVC5_SRCS} ${LIBCVC5_GEN_SRCS})
1286 target_compile_definitions(cvc5-obj PRIVATE -D__BUILDING_CVC5LIB -Dcvc5_obj_EXPORTS)
1287 set_target_properties(cvc5-obj PROPERTIES POSITION_INDEPENDENT_CODE ON)
1288 # add_dependencies() is necessary for cmake versions before 3.21
1289 add_dependencies(cvc5-obj cvc5base cvc5context)
1290 # Add libcvc5 dependencies for generated sources.
1291 add_dependencies(cvc5-obj gen-expr gen-versioninfo gen-options gen-tags gen-theory)
1292
1293 add_library(cvc5 $<TARGET_OBJECTS:cvc5-obj> $<TARGET_OBJECTS:cvc5base> $<TARGET_OBJECTS:cvc5context>)
1294
1295 set_target_properties(cvc5 PROPERTIES OUTPUT_NAME cvc5)
1296
1297 # Link the shared library
1298 target_include_directories(cvc5
1299 PUBLIC
1300 $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
1301 $<INSTALL_INTERFACE:include>
1302 )
1303 install(TARGETS cvc5
1304 EXPORT cvc5-targets
1305 LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
1306 ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
1307 )
1308
1309 include(GenerateExportHeader)
1310 generate_export_header(cvc5-obj BASE_NAME cvc5)
1311
1312 # Add library/include dependencies
1313 add_dependencies(cvc5-obj GMP)
1314 target_include_directories(cvc5-obj PRIVATE ${GMP_INCLUDE_DIR})
1315 if(BUILD_SHARED_LIBS)
1316 target_link_libraries(cvc5 PRIVATE GMP)
1317 else()
1318 target_link_libraries(cvc5 PUBLIC GMP)
1319 endif()
1320
1321 # Add rt library
1322 # Note: For glibc < 2.17 we have to additionally link against rt (man clock_gettime).
1323 # RT_LIBRARIES should be empty for glibc >= 2.17
1324 target_link_libraries(cvc5 PRIVATE ${RT_LIBRARIES})
1325
1326 if(ENABLE_VALGRIND)
1327 target_include_directories(cvc5-obj PUBLIC ${Valgrind_INCLUDE_DIR})
1328 endif()
1329
1330 add_dependencies(cvc5-obj CaDiCaL)
1331 target_include_directories(cvc5-obj PRIVATE ${CaDiCaL_INCLUDE_DIR})
1332 target_link_libraries(cvc5 PRIVATE CaDiCaL)
1333
1334 if(USE_CLN)
1335 add_dependencies(cvc5-obj CLN)
1336 target_include_directories(cvc5-obj PRIVATE ${CLN_INCLUDE_DIR})
1337 target_link_libraries(cvc5 PRIVATE CLN)
1338 endif()
1339 if(USE_CRYPTOMINISAT)
1340 add_dependencies(cvc5-obj CryptoMiniSat)
1341 target_include_directories(cvc5-obj PRIVATE ${CryptoMiniSat_INCLUDE_DIR})
1342 target_link_libraries(cvc5 PRIVATE CryptoMiniSat)
1343 endif()
1344 if(USE_KISSAT)
1345 add_dependencies(cvc5-obj Kissat)
1346 target_include_directories(cvc5-obj PRIVATE ${Kissat_INCLUDE_DIR})
1347 target_link_libraries(cvc5 PRIVATE Kissat)
1348 endif()
1349 if(USE_GLPK)
1350 target_include_directories(cvc5-obj PRIVATE ${GLPK_INCLUDE_DIR})
1351 target_link_libraries(cvc5 PRIVATE ${GLPK_LIBRARIES})
1352 endif()
1353 if(USE_POLY)
1354 add_dependencies(cvc5-obj Polyxx)
1355 target_include_directories(cvc5-obj PRIVATE ${Poly_INCLUDE_DIR})
1356 if(BUILD_SHARED_LIBS)
1357 target_link_libraries(cvc5 PRIVATE Polyxx)
1358 else()
1359 target_link_libraries(cvc5 PUBLIC Polyxx)
1360 endif()
1361 endif()
1362 if(USE_COCOA)
1363 add_dependencies(cvc5-obj CoCoA)
1364 target_include_directories(cvc5-obj PRIVATE ${CoCoA_INCLUDE_DIR})
1365 target_link_libraries(cvc5 PRIVATE CoCoA)
1366 endif()
1367
1368 add_dependencies(cvc5-obj SymFPU)
1369 target_include_directories(cvc5-obj PRIVATE ${SymFPU_INCLUDE_DIR})
1370 target_link_libraries(cvc5 PRIVATE SymFPU)
1371
1372 #-----------------------------------------------------------------------------#
1373 # Visit main subdirectory after creating target cvc5. For target main, we have
1374 # to manually add library dependencies since we can't use
1375 # target_link_libraries(...) with object libraries for cmake versions <= 3.12.
1376 # Thus, we can only visit main as soon as all dependencies for cvc5 are set up.
1377
1378 add_subdirectory(main)
1379
1380 #-----------------------------------------------------------------------------#
1381 # Install public API headers
1382
1383 install(FILES
1384 api/cpp/cvc5.h
1385 api/cpp/cvc5_kind.h
1386 DESTINATION
1387 ${CMAKE_INSTALL_INCLUDEDIR}/cvc5/)
1388 install(FILES
1389 ${CMAKE_CURRENT_BINARY_DIR}/cvc5_export.h
1390 DESTINATION
1391 ${CMAKE_INSTALL_INCLUDEDIR}/cvc5/)
1392
1393 # Fix include paths for all public headers.
1394 # Note: This is a temporary fix until the new C++ API is in place.
1395 install(CODE "execute_process(COMMAND
1396 ${CMAKE_CURRENT_LIST_DIR}/fix-install-headers.sh
1397 ${CMAKE_INSTALL_PREFIX})")