All Downloads are FREE. Search and download functionalities are using the official Maven repository.

z3-z3-4.13.0.src.api.dotnet.RealExpr.cs Maven / Gradle / Ivy

The newest version!
/*++
Copyright () 2012 Microsoft Corporation

Module Name:

    RealExpr.cs

Abstract:

    Z3 Managed API: Real Expressions

Author:

    Christoph Wintersteiger (cwinter) 2012-11-23

Notes:
    
--*/
using System.Diagnostics;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;


namespace Microsoft.Z3
{
    /// 
    /// Real expressions
    /// 
    public class RealExpr : ArithExpr
    {
        #region Internal
        ///  Constructor for RealExpr 
        internal RealExpr(Context ctx, IntPtr obj)
            : base(ctx, obj)
        {
            Debug.Assert(ctx != null);
        }
        #endregion
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy