3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 20:05:51 +00:00
z3/src/api/dotnet/IntExpr.cs
Christoph M. Wintersteiger ee2c9095c6 .NET FPA API overhaul
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
2015-01-08 17:21:29 +00:00

42 lines
709 B
C#

/*++
Copyright (c) 2012 Microsoft Corporation
Module Name:
IntExpr.cs
Abstract:
Z3 Managed API: Int Expressions
Author:
Christoph Wintersteiger (cwinter) 2012-11-23
Notes:
--*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics.Contracts;
namespace Microsoft.Z3
{
/// <summary>
/// Int expressions
/// </summary>
public class IntExpr : ArithExpr
{
#region Internal
/// <summary> Constructor for IntExpr </summary>
internal IntExpr(Context ctx, IntPtr obj)
: base(ctx, obj)
{
Contract.Requires(ctx != null);
}
#endregion
}
}