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

ProbeDescription() public méthode

Returns a string containing a description of the probe with the given name.
public ProbeDescription ( string name ) : string
name string
Résultat string
        public string ProbeDescription(string name)
        {
            Contract.Ensures(Contract.Result<string>() != null);

            return Native.Z3_probe_get_descr(nCtx, name);
        }
Context