From 97c7ce63b535337fcd5c195ea2720546477c972e Mon Sep 17 00:00:00 2001 From: John Fleisher Date: Mon, 7 Mar 2022 15:55:30 -0500 Subject: [PATCH] Clean up build warnings (#5884) * Clean up warnings in compile for documentation notes * remove snk from local build Co-authored-by: jfleisher Co-authored-by: Nikolaj Bjorner --- src/api/dotnet/NativeContext.cs | 19 ++++++++++--------- src/api/dotnet/NativeModel.cs | 4 +++- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/src/api/dotnet/NativeContext.cs b/src/api/dotnet/NativeContext.cs index 840c5b864..f8513a7e6 100644 --- a/src/api/dotnet/NativeContext.cs +++ b/src/api/dotnet/NativeContext.cs @@ -308,25 +308,25 @@ namespace Microsoft.Z3 /// Integer Sort /// public Z3_sort IntSort => Native.Z3_mk_int_sort(nCtx); + /// - /// Boolean Sort + /// Returns the "singleton" BoolSort for this NativeContext /// public Z3_sort BoolSort => Native.Z3_mk_bool_sort(nCtx); + /// - /// Real Sort + /// Returns the "singleton" RealSort for this NativeContext /// public Z3_sort RealSort => Native.Z3_mk_real_sort(nCtx); + /// - /// Bit-vector sort + /// Returns the BvSort for size in this NativeContext /// - /// - /// public Z3_sort MkBvSort(uint size) => Native.Z3_mk_bv_sort(nCtx, size); /// - /// Given an elemSort create a List of elemSort - /// The function returns the list sort, constructors, accessors and recognizers + /// returns ListSort /// /// /// @@ -436,7 +436,7 @@ namespace Microsoft.Z3 #region Symbol /// - /// Create a symbol from a string + /// Return a ptr to symbol for string /// /// /// @@ -809,6 +809,7 @@ namespace Microsoft.Z3 } /// + /// Same as MkForAll but defaults to "forall" = false /// Create an existential Quantifier. /// /// @@ -1142,7 +1143,7 @@ namespace Microsoft.Z3 } /// - /// Retrieve number of arguments to a function application + /// Return number of arguments for app /// /// /// diff --git a/src/api/dotnet/NativeModel.cs b/src/api/dotnet/NativeModel.cs index eb6037199..3b9eb0950 100644 --- a/src/api/dotnet/NativeModel.cs +++ b/src/api/dotnet/NativeModel.cs @@ -251,12 +251,14 @@ namespace Microsoft.Z3 public Z3_ast Else; /// + /// Domain for array /// Updates.Keys /// public Z3_ast[] Domain; /// - /// Updates.Range + /// Range for array + /// Updates.Values /// public Z3_ast[] Range; }