3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 09:34:08 +00:00

FPA API documentation fixes

Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
Christoph M. Wintersteiger 2014-04-23 18:39:36 +01:00
parent 3e5a702073
commit 0279a1042d
3 changed files with 6 additions and 5 deletions

View file

@ -3506,8 +3506,7 @@ namespace Microsoft.Z3
/// <summary>
/// Create a floating point NaN numeral.
/// </summary>
/// <param name="v">A string representing the value in decimal notation.</param>
/// </summary>
/// <param name="s">floating point sort.</param>
public FPNum MkFPNaN(FPSort s)
{
@ -3517,8 +3516,7 @@ namespace Microsoft.Z3
/// <summary>
/// Create a floating point Inf numeral.
/// </summary>
/// <param name="v">A string representing the value in decimal notation.</param>
/// </summary>
/// <param name="s">floating point sort.</param>
/// <param name="negative">indicates whether the result should be negative.</param>
public FPNum MkFPInf(FPSort s, bool negative)
@ -3625,6 +3623,7 @@ namespace Microsoft.Z3
/// <summary>
/// Floating-point square root
/// </summary>
/// <param name="rm">rounding mode term</param>
/// <param name="t">floating point term</param>
public FPExpr MkFPSqrt(FPRMExpr rm, FPExpr t)
{

View file

@ -30,7 +30,8 @@ namespace Microsoft.Z3
/// </summary>
public class FPExpr : Expr
{
#region Internal
#region Internal
/// <summary> Constructor for FPExpr </summary>
internal protected FPExpr(Context ctx)
: base(ctx)
{

View file

@ -31,6 +31,7 @@ namespace Microsoft.Z3
public class FPRMExpr : Expr
{
#region Internal
/// <summary> Constructor for FPRMExpr </summary>
internal protected FPRMExpr(Context ctx)
: base(ctx)
{