3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-07 08:21:56 +00:00
z3/src/util
Ilana Shapiro 6044389446
Parallel solving (#7771)
* very basic setup

* ensure solve_eqs is fully disabled when smt.solve_eqs=false, #7743

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>

* respect smt configuration parameter in elim_unconstrained simplifier

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>

* indentation

* add bash files for test runs

* add option to selectively disable variable solving for only ground expressions

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>

* remove verbose output

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>

* fix #7745

axioms for len(substr(...)) escaped due to nested rewriting

* ensure atomic constraints are processed by arithmetic solver

* #7739 optimization

add simplification rule for at(x, offset) = ""

Introducing j just postpones some rewrites that prevent useful simplifications. Z3 already uses common sub-expressions.
The example highlights some opportunities for simplification, noteworthy at(..) = "".
The example is solved in both versions after adding this simplification.

* fix unsound len(substr) axiom

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>

* FreshConst is_sort (#7748)

* #7750

add pre-processing simplification

* Add parameter validation for selected API functions

* updates to ac-plugin

fix incrementality bugs by allowing destructive updates during saturation at the cost of redoing saturation after a pop.

* enable passive, add check for bloom up-to-date

* add top-k fixed-sized min-heap priority queue for top scoring literals

* set up worker thread batch manager for multithreaded batch cubes paradigm, need to debug as I am getting segfault still

* fix bug in parallel solving batch setup

* fix bug

* allow for internalize implies

* disable pre-processing during cubing

* debugging

* remove default constructor

* remove a bunch of string copies

* Update euf_ac_plugin.cpp

include reduction rules in forward simplification

* Update euf_completion.cpp

try out restricting scope of equalities added by instantation

* Update smt_parallel.cpp

Drop non-relevant units from shared structures.

* process cubes as lists of individual lits

* merge

* Add support for Algebraic Datatypes in JavaScript/TypeScript bindings (#7734)

* Initial plan

* Add datatype type definitions to types.ts (work in progress)

Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>

* Complete datatype type definitions with working TypeScript compilation

Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>

* Implement core datatype functionality with TypeScript compilation success

Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>

* Complete datatype implementation with full Context integration and tests

Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>

* chipping away at the new code structure

* comments

* debug infinite recursion and split cubes on existing split atoms that aren't in the cube

* share lemmas, learn from unsat core, try to debug a couple of things, there was a subtle bug that i have a hard time repro'ing

* merge

* fix #7603: race condition in Ctrl-C handling (#7755)

* fix #7603: race condition in Ctrl-C handling

* fix race in cancel_eh

* fix build

* add arithemtic saturation

* add an option to register callback on quantifier instantiation

Suppose a user propagator encodes axioms using quantifiers and uses E-matching for instantiation. If it wants to implement a custom priority scheme or drop some instances based on internal checks it can register a callback with quantifier instantiation

* missing new closure

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>

* add Z3_solver_propagate_on_binding to ml callback declarations

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>

* add python file

Signed-off-by: Lev Nachmanson <levnach@Levs-MacBook-Pro.local>

* debug under defined calls

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>

* more untangle params

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>

* precalc parameters to define the eval order

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>

* remove a printout

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>

* rename a Python file

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>

* add on_binding callbacks across APIs

update release notes,
add to Java, .Net, C++

* use jboolean in Native interface

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>

* register on_binding attribute

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>

* fix java build for java bindings

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>

* avoid interferring side-effects in function calls

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>

* remove theory_str and classes that are only used by it

* remove automata from python build

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>

* remove ref to theory_str

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>

* get the finest factorizations before project

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>

* rename add_lcs to add_lc

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>

* resolve bad bug about l2g and g2l translators using wrong global context. add some debug prints

* initial attempt at dynamically switching from greedy to frugal splitting strategy in return_cubes. need to test. also there is some bug where the threads take forever to cancel?

* Update RELEASE_NOTES.md

* resolve bug about not translating managers correctly for the second phase of the greedy cubing, and the frugal fallback

---------

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
Signed-off-by: Lev Nachmanson <levnach@Levs-MacBook-Pro.local>
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
Co-authored-by: Nikolaj Bjorner <nbjorner@microsoft.com>
Co-authored-by: humnrdble <83878671+humnrdble@users.noreply.github.com>
Co-authored-by: Nuno Lopes <nuno.lopes@tecnico.ulisboa.pt>
Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
Co-authored-by: Lev Nachmanson <levnach@hotmail.com>
2025-08-11 09:14:20 -07:00
..
approx_nat.cpp make include paths uniformly use path relative to src. #534 2017-07-31 13:24:11 -07:00
approx_nat.h remove '#include <iostream>' from headers and from unneeded places 2022-06-17 14:10:19 +01:00
approx_set.cpp make include paths uniformly use path relative to src. #534 2017-07-31 13:24:11 -07:00
approx_set.h remove unneeded iterator functions 2024-09-23 12:59:04 +01:00
array.h delete more default constructors 2024-09-23 12:59:04 +01:00
array_map.h remove unneeded constructors (last round) 2020-07-12 17:41:57 +01:00
backtrackable_set.h booyah 2020-07-04 15:56:30 -07:00
basic_interval.h Use noexcept more. (#7058) 2023-12-16 12:14:53 +00:00
bit_util.cpp Fix some spelling errors (mostly in comments). 2018-10-20 17:07:41 +02:00
bit_util.h booyah 2020-07-04 15:56:30 -07:00
bit_vector.cpp Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
bit_vector.h remove unneeded iterator functions 2024-09-23 12:59:04 +01:00
buffer.h delete more default constructors 2024-09-23 12:59:04 +01:00
cancel_eh.h Parallel solving (#7771) 2025-08-11 09:14:20 -07:00
chashtable.h Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
checked_int64.h fix semantics of check-int64 div operation to align with smtlib semantics 2025-01-29 04:29:38 -08:00
CMakeLists.txt Move tbv to util 2022-08-01 18:37:11 +03:00
cmd_context_types.cpp remove '#include <iostream>' from headers and from unneeded places 2022-06-17 14:10:19 +01:00
cmd_context_types.h Use = default for virtual constructors. 2022-08-05 18:11:46 +03:00
common_msgs.cpp make include paths uniformly use path relative to src. #534 2017-07-31 13:24:11 -07:00
common_msgs.h booyah 2020-07-04 15:56:30 -07:00
container_util.h call it data instead of c_ptr for approaching C++11 std::vector convention. 2021-04-13 18:17:35 -07:00
debug.cpp debug : Add support for selecting LLDB via invoke on macOS (#7726) 2025-07-12 09:02:09 +02:00
debug.h debug : Add support for selecting LLDB via invoke on macOS (#7726) 2025-07-12 09:02:09 +02:00
dec_ref_util.h booyah 2020-07-04 15:56:30 -07:00
dependency.h fix build 2023-11-30 14:08:29 -08:00
dictionary.h remove a hundred implicit constructors/destructors 2021-05-23 14:25:01 +01:00
distribution.h remove unneeded iterator functions 2024-09-23 12:59:04 +01:00
dlist.h nits 2025-06-30 08:37:39 -07:00
double_manager.h Use noexcept more. (#7058) 2023-12-16 12:14:53 +00:00
ema.h add new ema invariant (#7288) 2024-07-15 13:07:12 -07:00
env_params.cpp redo #6242 2022-08-08 11:26:18 +03:00
env_params.h booyah 2020-07-04 15:56:30 -07:00
error_codes.h booyah 2020-07-04 15:56:30 -07:00
event_handler.h Parallel solving (#7758) 2025-08-05 09:06:36 -07:00
ext_gcd.h booyah 2020-07-04 15:56:30 -07:00
ext_numeral.h remove '#include <iostream>' from headers and from unneeded places 2022-06-17 14:10:19 +01:00
f2n.h Use noexcept more. (#7058) 2023-12-16 12:14:53 +00:00
file_path.h booyah 2020-07-04 15:56:30 -07:00
fixed_bit_vector.cpp clear memory on allocation to avoid msan warnings 2019-11-29 15:50:49 -08:00
fixed_bit_vector.h booyah 2020-07-04 15:56:30 -07:00
gparams.cpp Parallel solving (#7758) 2025-08-05 09:06:36 -07:00
gparams.h #7468 - add option (get-info :parameters) to display solver parameters that were updated globally and distinct from defaults 2025-02-10 11:57:14 -08:00
hash.cpp make include paths uniformly use path relative to src. #534 2017-07-31 13:24:11 -07:00
hash.h call it data instead of c_ptr for approaching C++11 std::vector convention. 2021-04-13 18:17:35 -07:00
hashtable.h new hashtable.h invariants (#7296) 2024-07-19 14:01:42 -07:00
heap.h update heap unit tests (#7324) 2024-08-02 18:29:50 -07:00
hwf.cpp Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
hwf.h remove default destructors 2024-10-02 22:20:12 +01:00
id_gen.h booyah 2020-07-04 15:56:30 -07:00
id_var_list.h na 2020-09-01 07:15:13 -07:00
inf_eps_rational.h Use noexcept more. (#7058) 2023-12-16 12:14:53 +00:00
inf_int_rational.cpp make include paths uniformly use path relative to src. #534 2017-07-31 13:24:11 -07:00
inf_int_rational.h Use noexcept more. (#7058) 2023-12-16 12:14:53 +00:00
inf_rational.cpp make include paths uniformly use path relative to src. #534 2017-07-31 13:24:11 -07:00
inf_rational.h delete more default constructors 2024-09-23 12:59:04 +01:00
inf_s_integer.cpp make include paths uniformly use path relative to src. #534 2017-07-31 13:24:11 -07:00
inf_s_integer.h Use noexcept more. (#7058) 2023-12-16 12:14:53 +00:00
lbool.cpp make include paths uniformly use path relative to src. #534 2017-07-31 13:24:11 -07:00
lbool.h booyah 2020-07-04 15:56:30 -07:00
lim_vector.h remove a hundred implicit constructors/destructors 2021-05-23 14:25:01 +01:00
list.h remove unneeded iterator functions 2024-09-23 12:59:04 +01:00
luby.cpp checkpoint 2012-10-21 13:32:12 -07:00
luby.h booyah 2020-07-04 15:56:30 -07:00
machine.h booyah 2020-07-04 15:56:30 -07:00
map.h remove default destructors 2024-10-02 22:20:12 +01:00
max_cliques.h Make sure all headers do #pragma once. (#6188) 2022-07-23 10:41:14 -07:00
memory_manager.cpp Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
memory_manager.h Replace _DEBUG with Z3DEBUG (#7628) 2025-04-22 13:39:01 -07:00
min_cut.cpp Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
min_cut.h booyah 2020-07-04 15:56:30 -07:00
mpbq.cpp Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
mpbq.h Use noexcept more. (#7058) 2023-12-16 12:14:53 +00:00
mpbqi.h booyah 2020-07-04 15:56:30 -07:00
mpf.cpp Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
mpf.h Use noexcept more. (#7058) 2023-12-16 12:14:53 +00:00
mpff.cpp Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
mpff.h add noexcept 2024-11-04 11:21:55 -08:00
mpfx.cpp Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
mpfx.h add noexcept 2024-11-04 11:21:55 -08:00
mpn.cpp Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
mpn.h some code simplifications in mpn 2023-12-22 15:29:04 +00:00
mpq.cpp Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
mpq.h Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
mpq_inf.cpp remove remaining _NO_OMP_ 2019-06-05 10:07:16 +01:00
mpq_inf.h Use noexcept more. (#7058) 2023-12-16 12:14:53 +00:00
mpz.cpp Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
mpz.h encapsulate mpz a bit more 2024-01-20 12:59:58 -08:00
mpzzp.h Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
mutex.h logging cleanup 2021-08-29 12:24:19 +01:00
nat_set.h working on mam 2021-01-25 17:54:53 -08:00
numeral_buffer.h Use noexcept more. (#7058) 2023-12-16 12:14:53 +00:00
obj_hashtable.h add py_value to selected classes in python bindings, add mode for input-assertion based lookahead solving 2025-01-04 13:40:49 -08:00
obj_mark.h booyah 2020-07-04 15:56:30 -07:00
obj_pair_hashtable.h remove a hundred implicit constructors/destructors 2021-05-23 14:25:01 +01:00
obj_pair_set.h remove a hundred implicit constructors/destructors 2021-05-23 14:25:01 +01:00
obj_ref.h Use noexcept more. (#7058) 2023-12-16 12:14:53 +00:00
obj_ref_hashtable.h Use noexcept more. (#7058) 2023-12-16 12:14:53 +00:00
obj_triple_hashtable.h remove a hundred implicit constructors/destructors 2021-05-23 14:25:01 +01:00
object_allocator.h booyah 2020-07-04 15:56:30 -07:00
optional.h remove default destructors & some default constructors 2024-09-04 22:30:23 +01:00
page.cpp merge with Z3Prover/master 2018-06-25 19:44:46 +08:00
page.h booyah 2020-07-04 15:56:30 -07:00
params.cpp #7468 - add option (get-info :parameters) to display solver parameters that were updated globally and distinct from defaults 2025-02-10 11:57:14 -08:00
params.h disable assignment for param_descrs 2025-04-17 17:29:09 -07:00
parray.h Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
permutation.cpp add new permutation class invariant (#7299) 2024-07-19 19:27:23 -07:00
permutation.h add permutation unit tests (#7300) 2024-08-01 12:56:26 -07:00
plugin_manager.h booyah 2020-07-04 15:56:30 -07:00
pool.h booyah 2020-07-04 15:56:30 -07:00
prime_generator.cpp fix mutexes hanging due to access to free'd memory 2019-09-03 20:02:21 +01:00
prime_generator.h booyah 2020-07-04 15:56:30 -07:00
ptr_scoped_buffer.h booyah 2020-07-04 15:56:30 -07:00
queue.h remove default destructors & some default constructors 2024-09-04 22:30:23 +01:00
rational.cpp Shared features from polysat branch (#6567) 2023-02-03 13:08:47 -08:00
rational.h remove default destructors & some default constructors 2024-09-04 22:30:23 +01:00
ref.h remove default destructors 2024-10-02 22:20:12 +01:00
ref_buffer.h call it data instead of c_ptr for approaching C++11 std::vector convention. 2021-04-13 18:17:35 -07:00
ref_pair_vector.h Use noexcept more. (#7058) 2023-12-16 12:14:53 +00:00
ref_util.h booyah 2020-07-04 15:56:30 -07:00
ref_vector.h Use noexcept more. (#7058) 2023-12-16 12:14:53 +00:00
region.cpp mbqi 2020-10-26 11:06:40 -07:00
region.h remove '#include <iostream>' from headers and from unneeded places 2022-06-17 14:10:19 +01:00
rlimit.cpp #7418 - circumvent use of timer threads to make WASM integration of z3 easier 2024-11-21 11:20:05 -08:00
rlimit.h #7418 - circumvent use of timer threads to make WASM integration of z3 easier 2024-11-21 11:20:05 -08:00
s_integer.cpp merge with Z3Prover/master 2018-06-25 19:44:46 +08:00
s_integer.h remove default destructors & some default constructors 2024-09-04 22:30:23 +01:00
sat_literal.h delete more default constructors 2024-09-23 12:59:04 +01:00
sat_sls.h Sls (#7439) 2024-11-02 12:32:48 -07:00
scoped_ctrl_c.cpp Parallel solving (#7771) 2025-08-11 09:14:20 -07:00
scoped_ctrl_c.h Parallel solving (#7771) 2025-08-11 09:14:20 -07:00
scoped_limit_trail.h add variable replay, remove MacOS from Travis (#4681) 2020-09-08 05:57:07 -07:00
scoped_numeral.h sample fix script 2024-09-23 19:06:51 +01:00
scoped_numeral_buffer.h Use = delete to delete special methods. 2022-08-02 09:23:14 +03:00
scoped_numeral_vector.h prepare for std::vector 2021-04-20 09:24:24 -07:00
scoped_ptr_vector.h Use noexcept more. (#7058) 2023-12-16 12:14:53 +00:00
scoped_timer.cpp Fix a race condition in scoped_timer::finalize (#7618) 2025-04-11 08:08:27 +01:00
scoped_timer.h fix for spurious wakeups in scoped_timer (#6102) 2022-06-22 10:50:19 +01:00
scoped_vector.h remove unneeded iterator functions 2024-09-23 12:59:04 +01:00
sexpr.cpp Fix some typos in identifiers. (#7118) 2024-02-14 09:25:32 +07:00
sexpr.h arrays (#4684) 2020-09-13 19:29:59 -07:00
sign.h move out sign 2020-01-20 16:22:38 -06:00
small_object_allocator.cpp Nlsat simplify (#7227) 2024-05-14 22:19:33 -07:00
small_object_allocator.h remove default destructors & some default constructors 2024-09-04 22:30:23 +01:00
smt2_util.cpp merge with Z3Prover/master 2018-06-25 19:44:46 +08:00
smt2_util.h booyah 2020-07-04 15:56:30 -07:00
sorting_network.h Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
stack.cpp merge with Z3Prover/master 2018-06-25 19:44:46 +08:00
stack.h booyah 2020-07-04 15:56:30 -07:00
stacked_value.h fix uninitialized variable warnings 2025-01-14 13:54:05 -08:00
state_graph.cpp Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
state_graph.h fixing issue #4651 (#4666) 2020-09-08 04:13:18 -07:00
statistics.cpp call it data instead of c_ptr for approaching C++11 std::vector convention. 2021-04-13 18:17:35 -07:00
statistics.h remove '#include <iostream>' from headers and from unneeded places 2022-06-17 14:10:19 +01:00
stats.h booyah 2020-07-04 15:56:30 -07:00
stopwatch.h remove '#include <iostream>' from headers and from unneeded places 2022-06-17 14:10:19 +01:00
str_hashtable.h booyah 2020-07-04 15:56:30 -07:00
stream_buffer.h remove '#include <iostream>' from headers and from unneeded places 2022-06-17 14:10:19 +01:00
string_buffer.h fix a couple hundred deref-after-free bugs due to .c_str() on a temporary string 2020-07-11 20:24:45 +01:00
symbol.cpp optimize symbol table for single-threaded mode 2021-05-23 16:35:44 +01:00
symbol.h replace a few old-school constructors for a 0.5% reduction in code size 2024-09-02 16:13:46 +01:00
symbol_table.h replace a few old-school constructors for a 0.5% reduction in code size 2024-09-02 16:13:46 +01:00
tbv.cpp Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
tbv.h Use noexcept more. (#7058) 2023-12-16 12:14:53 +00:00
timeit.cpp remove '#include <iostream>' from headers and from unneeded places 2022-06-17 14:10:19 +01:00
timeit.h remove '#include <iostream>' from headers and from unneeded places 2022-06-17 14:10:19 +01:00
timeout.cpp fix #4763: shell not finishing before hard timeout 2020-10-30 10:01:09 +00:00
timeout.h fix #4763: shell not finishing before hard timeout 2020-10-30 10:01:09 +00:00
timer.h booyah 2020-07-04 15:56:30 -07:00
top_sort.h fix regression in top-sort fix #6060 2022-06-14 09:51:06 -07:00
total_order.h Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
tptr.h tptr: add pointer tagging templates (#7067) 2023-12-19 08:58:32 -08:00
trace.cpp trace : Sort and reorder trace tags by tag_class and tag_name (#7714) 2025-07-02 09:53:35 -07:00
trace.h some cleanup and functionality for tracing 2025-05-30 14:46:55 +01:00
trace_tags.def revamp ac plugin and plugin propagation 2025-07-21 07:35:06 -07:00
trace_tags.h trace : Sort and reorder trace tags by tag_class and tag_name (#7714) 2025-07-02 09:53:35 -07:00
trail.h Add intblast solver 2023-12-15 13:50:38 -08:00
uint_map.h booyah 2020-07-04 15:56:30 -07:00
uint_set.h fix unit tests, add subsampling mode for false literals 2025-01-20 17:34:59 -08:00
union_find.h Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
util.cpp remove '#include <iostream>' from headers and from unneeded places 2022-06-17 14:10:19 +01:00
util.h code simplification 2025-02-18 19:07:58 -08:00
var_queue.h port updates from poly/polysat 2023-12-09 13:00:43 -08:00
vector.h use usize to work around mess with static_cast<unsigned> insertions when looping over small vectors 2025-06-30 09:04:47 -07:00
visit_helper.h make visited_helper independent of literals 2022-11-03 03:54:39 -07:00
warning.cpp add redirect for warnings 2022-08-23 15:55:55 -07:00
warning.h add redirect for warnings 2022-08-23 15:55:55 -07:00
z3_exception.cpp add noexcept for signature compatibility 2024-11-04 11:13:49 -08:00
z3_exception.h add noexcept for signature compatibility 2024-11-04 11:13:49 -08:00
z3_version.h.cmake.in rename version.h to z3_version.h to differentiate name in install include directory. Add support for z3_version.h in python build system. #1833 2018-09-21 20:13:58 -07:00
z3_version.h.in rename version.h to z3_version.h to differentiate name in install include directory. Add support for z3_version.h in python build system. #1833 2018-09-21 20:13:58 -07:00
zstring.cpp remove a few string copies 2023-12-20 16:55:09 +00:00
zstring.h v0 of edit distance repair 2024-12-05 14:14:27 -08:00