copilot-swe-agent[bot]
c61ee6b16c
Fix Go bindings and enable in CI
...
- Fix all compilation errors in Go bindings
- Add missing type definitions (Pattern, ASTVector, ParamDescrs)
- Fix boolean comparisons to use bool() casts
- Fix Z3_app type casts using unsafe.Pointer
- Fix null symbol handling to use nil
- Fix unused variable in basic_example.go
- Fix CMake test target to run from examples/go directory
- Restore CI steps to build and test Go bindings
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
2026-02-18 21:02:27 -08:00
copilot-swe-agent[bot]
25a83fc87e
Fix Go bindings compilation issues and add to CI
...
- Fix malformed z3.go with duplicate function body fragments
- Fix datatype.go to use Z3_del_constructor and Z3_del_constructor_list instead of non-existent inc_ref/dec_ref functions
- Remove non-existent Push/Pop methods from fixedpoint.go
- Fix CMake Go bindings targets quoting for proper LDFLAGS handling
- Add Go bindings support to ubuntu-cmake CI jobs
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
2026-02-18 21:02:27 -08:00
Nikolaj Bjorner
709d1b0182
remove brittle pydoc example
...
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2026-02-18 21:02:27 -08:00
copilot-swe-agent[bot]
388f893d2e
Improve test validation for mk_transitivity
...
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
2026-02-18 21:02:26 -08:00
copilot-swe-agent[bot]
eedade141c
Restore defensive SASSERT in smt_conflict_resolution
...
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
2026-02-18 21:02:26 -08:00
copilot-swe-agent[bot]
6e91f3b321
Add test for initializer_list overloads
...
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
2026-02-18 21:02:26 -08:00
copilot-swe-agent[bot]
d958036711
Add initializer_list overloads and update all call sites
...
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
2026-02-18 21:02:26 -08:00
copilot-swe-agent[bot]
d414646975
Add std::initializer_list overloads for update_quantifier and update call sites
...
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
2026-02-18 21:02:26 -08:00
Daniel Tang
c17e8f990e
Document example for Solver.sexpr()
2026-02-18 21:02:26 -08:00
Daniel Tang
c281e9dace
Add Solver.solutions(t)
...
For parity with
[z3.rs](https://docs.rs/z3/latest/z3/struct.Solver.html#method.solutions )
.
Having a way to find all solutions is frequently requested:
* https://stackoverflow.com/q/63231398/10477326
* https://stackoverflow.com/q/11867611/10477326
In accordance with the Rust, I did not
[guess `t`](https://stackoverflow.com/a/11869410/10477326 ).
2026-02-18 21:02:25 -08:00
Daniel Tang
5b349f8f9a
Suggest eval in ModelRef.__getitem__ error
...
This improves the previously cryptic error message. I searched multiple
websites before Google AI suggested using model.eval(arr[0]) for getting
solutions out of arrays.
2026-02-18 21:02:25 -08:00
Daniel Tang
380a8ee20f
Alias ArithRef.__abs__ to Abs
...
This integrates with the `abs(Int('x'))` Python builtin.
2026-02-18 21:02:25 -08:00
Nikolaj Bjorner
a03500a194
git bindings v1.0
2026-02-18 21:02:25 -08:00
Copilot
d9c6da215f
Eliminate unnecessary copies with std::move for ref-counted types ( #8591 )
2026-02-18 21:02:24 -08:00
Nikolaj Bjorner
487db1a658
Modify behavior for division by zero
...
Allow division by zero in z3 expressions without raising an error.
2026-02-18 21:02:23 -08:00
Nikolaj Bjorner
bcc87975e5
Delete src/api/python/test_critical_fixes.py
2026-02-18 21:02:23 -08:00
copilot-swe-agent[bot]
25c2b7e4c1
Fix error message capitalization for Python conventions
...
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
2026-02-18 21:02:23 -08:00
copilot-swe-agent[bot]
0ee04d25c8
Add comprehensive tests for Python API bug fixes
...
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
2026-02-18 21:02:23 -08:00
copilot-swe-agent[bot]
28db5e2440
Fix 9 critical assert statements and RatVal division by zero (Priority 1)
...
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
2026-02-18 21:02:23 -08:00
Nikolaj Bjorner
49d41272d9
Remove assertion for number of watches in normalize
2026-02-18 21:02:23 -08:00
copilot-swe-agent[bot]
c946207e23
Fix BOUNDS and ASSERT_FAIL issues in Python API
...
- Add negative index support to AstVector.__setitem__, ModelRef.__getitem__, ApplyResult.__getitem__
- Replace bare assertions with proper Z3Exception in z3num.Numeral methods
- All changes tested and validated with comprehensive test suite
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
2026-02-18 21:02:23 -08:00
Nikolaj Bjorner
07c639a422
#8552
...
make it recompile constraints with duplicates
2026-02-18 21:02:22 -08:00
Nikolaj Bjorner
c031058978
small update to testing on p.m_sls_worker instead of should_run_sls
2026-02-18 21:02:22 -08:00
Copilot
730a54a767
Eliminate unnecessary copy operations in function parameters and range-based loops ( #8589 )
2026-02-18 21:02:22 -08:00
Nuno Lopes
f6f8beaf78
Remove copies ( #8583 )
2026-02-18 21:02:22 -08:00
Nikolaj Bjorner
776976cbd1
fix #8572
...
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2026-02-18 21:02:20 -08:00
Nikolaj Bjorner
88a2a82898
fix #8552
...
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2026-02-18 21:02:20 -08:00
Nikolaj Bjorner
05e8e4a37c
fix another regression by Nuno's changes
...
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2026-02-18 21:02:19 -08:00
Lev Nachmanson
24f3cddaac
relax a too strong assert
...
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
2026-02-18 21:02:19 -08:00
Copilot
62030bfddd
Simplify svector assignment operators using = default ( #8566 )
...
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
2026-02-18 21:02:19 -08:00
Nikolaj Bjorner
dcd8ea4af2
fix build of test
...
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2026-02-18 21:02:18 -08:00
Nuno Lopes
23a0a529fb
revert swap changes to fix CI
2026-02-18 21:02:18 -08:00
Nikolaj Bjorner
c8cd205207
fix build warnings and scoop up after Nuno's leaks
2026-02-18 21:02:18 -08:00
Nuno Lopes
bbb29911f3
fix crash
2026-02-18 21:02:17 -08:00
Nuno Lopes
9152013fbd
remove a few copies
2026-02-18 21:02:17 -08:00
Nuno Lopes
a3e7bbb92f
replace some copies with moves
2026-02-18 21:02:17 -08:00
Nikolaj Bjorner
6b28d65487
set random seed directly on m_smt_params before context initialization
...
updates to random seed on ctx does not get propagated to arithmetic solver, preventing diversity within arithmetic solver.
2026-02-18 21:02:17 -08:00
Nuno Lopes
bfc132a4fc
move, dont copy
2026-02-18 21:02:17 -08:00
Nuno Lopes
b7bf23c3bb
move, dont copy
2026-02-18 21:02:17 -08:00
Copilot
58431ec158
Replace user-defined swap with C++11 move semantics for covert move patterns ( #8543 )
2026-02-18 21:02:17 -08:00
Lev Nachmanson
4c43bf585d
fix the logic of adding all coefficients and blocking double insertions in m_todo
...
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
2026-02-18 21:02:16 -08:00
Nikolaj Bjorner
0be8deefd3
Revert "mpz: use pointer tagging to save space ( #8447 )"
...
This reverts commit 2f4abe2ce6 .
2026-02-18 21:02:16 -08:00
copilot-swe-agent[bot]
51fd4b2806
Fix OCaml linker flag and align validation runners with build runners
...
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
2026-02-18 21:02:15 -08:00
copilot-swe-agent[bot]
3c401f186b
Fix CMake variable name and clarify test path documentation
...
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
2026-02-18 21:02:15 -08:00
copilot-swe-agent[bot]
3ae8d7026a
Apply headerpad fix to build systems (Python and CMake) and fix validation test paths
...
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
2026-02-18 21:02:10 -08:00
Copilot
0761e91e8f
Remove unused swap() methods ( #8538 )
2026-02-18 20:58:08 -08:00
Lev Nachmanson
f0c3a5bbb6
fix nlsat_explain.cpp that the regression tests would pass with lws=false
...
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
2026-02-18 20:58:07 -08:00
copilot-swe-agent[bot]
d3c388a489
Add -headerpad_max_install_names flag for macOS dylib builds
...
This fixes the install_name_tool issue on macOS where the tool fails
with "larger updated load commands do not fit". The linker flag
-Wl,-headerpad_max_install_names ensures sufficient header padding
in the Mach-O binary for install_name_tool to modify install names.
Changes made:
- CMake: Added flag to libz3, z3java, z3jl shared libraries on Darwin
- Python build: Changed flag from ML-only to all macOS builds
- OCaml CMake: Added flag to OCaml stublib build on APPLE
Fixes #7623 (regression in 4.15.5)
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
2026-02-18 20:58:07 -08:00
Copilot
3a8b688008
Store rational by value in parameter variant ( #8518 )
...
Co-authored-by: nunoplopes <2998477+nunoplopes@users.noreply.github.com>
2026-02-18 20:58:07 -08:00
Nuno Lopes
e73c897bd4
constructor
2026-02-18 20:58:07 -08:00