3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 11:55:51 +00:00

FPA: Added .NET API calls

Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
Christoph M. Wintersteiger 2013-06-10 15:54:20 +01:00
parent a36a09e081
commit e14819c1b1
8 changed files with 644 additions and 1 deletions

46
src/api/dotnet/FPExpr.cs Normal file
View file

@ -0,0 +1,46 @@
/*++
Copyright (c) 2013 Microsoft Corporation
Module Name:
FPExpr.cs
Abstract:
Z3 Managed API: Floating Point Expressions
Author:
Christoph Wintersteiger (cwinter) 2013-06-10
Notes:
--*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics.Contracts;
namespace Microsoft.Z3
{
/// <summary>
/// Floating Point Expressions
/// </summary>
public class FPExpr : Expr
{
#region Internal
internal protected FPExpr(Context ctx)
: base(ctx)
{
Contract.Requires(ctx != null);
}
internal FPExpr(Context ctx, IntPtr obj)
: base(ctx, obj)
{
Contract.Requires(ctx != null);
}
#endregion
}
}