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

MkFreshConstDecl() public méthode

Creates a fresh constant function declaration with a name prefixed with prefix.
public MkFreshConstDecl ( string prefix, Microsoft.Z3.Sort range ) : FuncDecl
prefix string
range Microsoft.Z3.Sort
Résultat FuncDecl
        public FuncDecl MkFreshConstDecl(string prefix, Sort range)
        {
            Contract.Requires(range != null);
            Contract.Ensures(Contract.Result<FuncDecl>() != null);

            CheckContextMatch(range);
            return new FuncDecl(this, prefix, null, range);
        }
Context