Microsoft.Z3.Context.MkIsInteger C# (CSharp) Méthode

MkIsInteger() public méthode

Creates an expression that checks whether a real number is an integer.
public MkIsInteger ( RealExpr t ) : BoolExpr
t RealExpr
Résultat BoolExpr
        public BoolExpr MkIsInteger(RealExpr t)
        {
            Contract.Requires(t != null);
            Contract.Ensures(Contract.Result<BoolExpr>() != null);

            CheckContextMatch(t);
            return new BoolExpr(this, Native.Z3_mk_is_int(nCtx, t.NativeObject));
        }
Context