diff --git a/src/api/dotnet/UserPropagator.cs b/src/api/dotnet/UserPropagator.cs
index 273bd4da9..adabe3ff5 100644
--- a/src/api/dotnet/UserPropagator.cs
+++ b/src/api/dotnet/UserPropagator.cs
@@ -207,16 +207,16 @@ namespace Microsoft.Z3
///
/// Declare combination of assigned expressions a conflict
///
- void Conflict(params Expr[] terms) {
- Propagate(terms, ctx.MkFalse());
+ public void Conflict(params Expr[] terms) {
+ Propagate(terms, ctx.MkFalse());
}
///
/// Propagate consequence
///
- void Propagate(Expr[] terms, Expr conseq) {
- var nTerms = Z3Object.ArrayToNative(terms);
- Native.Z3_solver_propagate_consequence(ctx.nCtx, this.callback, (uint)nTerms.Length, nTerms, 0u, null, null, conseq.NativeObject);
+ public void Propagate(Expr[] terms, Expr conseq) {
+ var nTerms = Z3Object.ArrayToNative(terms);
+ Native.Z3_solver_propagate_consequence(ctx.nCtx, this.callback, (uint)nTerms.Length, nTerms, 0u, null, null, conseq.NativeObject);
}