3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

add py_value to selected classes in python bindings, add mode for input-assertion based lookahead solving

This commit is contained in:
Nikolaj Bjorner 2025-01-04 13:40:49 -08:00
parent 7e4681d836
commit 05f166f736
18 changed files with 374 additions and 184 deletions

View file

@ -57,7 +57,7 @@ class obj_map {
public:
struct key_data {
Key * m_key = nullptr;
Value m_value;
Value m_value{};
key_data() = default;
key_data(Key * k):
m_key(k) {