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

Skip() public méthode

Create a tactic that just returns the given goal.
public Skip ( ) : Microsoft.Z3.Tactic
Résultat Microsoft.Z3.Tactic
        public Tactic Skip()
        {
            Contract.Ensures(Contract.Result<Tactic>() != null);

            return new Tactic(this, Native.Z3_tactic_skip(nCtx));
        }
Context