3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-03 16:48:06 +00:00

add on_binding callbacks across APIs

update release notes,
add to Java, .Net, C++
This commit is contained in:
Nikolaj Bjorner 2025-08-07 07:50:08 -07:00
parent 30830aae75
commit fa3d341b18
6 changed files with 90 additions and 1 deletions

View file

@ -7,6 +7,15 @@ Version 4.next
- CDCL core for SMT queries. It extends the SAT engine with theory solver plugins.
- add global incremental pre-processing for the legacy core.
Version 4.15.3
==============
- Add UserPropagator callback option for quantifier instantiations. It allows the user propagator to
intercept quantifier instantiations. It can then inspect these in the callback. By returning false,
the callback signals that the instantiation should be discarded by the solver. The user propagator
is then able to apply finer control over instantiations. It can also use this mechanism to delay
instantiations.
Version 4.15.2
==============
- #7690, #7691 - fix leak introduced in arithmetic solver.