mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 21:38:44 +00:00
next split
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a7b41c49fe
commit
3189544050
|
@ -298,6 +298,15 @@ namespace Microsoft.Z3
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Set the next decision
|
||||||
|
/// </summary>
|
||||||
|
public void NextSplit(Expr e, uint idx, Z3_lbool phase)
|
||||||
|
{
|
||||||
|
Native.Z3_solver_next_split(ctx.nCtx, this.callback, e.NativeObject, idx, phase);
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Track assignments to a term
|
/// Track assignments to a term
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -76,3 +76,4 @@ DLL_VIS JNIEXPORT void JNICALL Java_com_microsoft_z3_Native_setInternalErrorHand
|
||||||
{
|
{
|
||||||
Z3_set_error_handler((Z3_context)a0, Z3JavaErrorHandler);
|
Z3_set_error_handler((Z3_context)a0, Z3JavaErrorHandler);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue