3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-28 19:01:29 +00:00

Add missing API bindings: importModelConverter, OnClause, and user propagator

Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-02-23 01:01:26 +00:00
parent 43dee82caa
commit 0de7af9112
8 changed files with 672 additions and 0 deletions

View file

@ -548,6 +548,16 @@ public class Solver extends Z3Object {
var.getNativeObject(), value.getNativeObject());
}
/**
* Import model converter from other solver.
*
* @param src The solver to import the model converter from
**/
public void importModelConverter(Solver src)
{
Native.solverImportModelConverter(getContext().nCtx(), src.getNativeObject(), getNativeObject());
}
/**
* Create a clone of the current solver with respect to{@code ctx}.
*/