3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-18 11:58:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-06-22 09:03:24 -07:00
parent 3189544050
commit 8234eeae40

View file

@ -302,7 +302,7 @@ namespace Microsoft.Z3
/// <summary> /// <summary>
/// Set the next decision /// Set the next decision
/// </summary> /// </summary>
public void NextSplit(Expr e, uint idx, Z3_lbool phase) public void NextSplit(Expr e, uint idx, int phase)
{ {
Native.Z3_solver_next_split(ctx.nCtx, this.callback, e.NativeObject, idx, phase); Native.Z3_solver_next_split(ctx.nCtx, this.callback, e.NativeObject, idx, phase);
} }