Skip to content

Commit

Permalink
next split
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Jun 22, 2022
1 parent a7b41c4 commit 3189544
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/api/dotnet/UserPropagator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,15 @@ public DecideEh Decide
}
}


/// <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>
/// Track assignments to a term
/// </summary>
Expand Down
1 change: 1 addition & 0 deletions src/api/java/NativeStatic.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,4 @@ DLL_VIS JNIEXPORT void JNICALL Java_com_microsoft_z3_Native_setInternalErrorHand
{
Z3_set_error_handler((Z3_context)a0, Z3JavaErrorHandler);
}

0 comments on commit 3189544

Please sign in to comment.