AIMA.Core.Logic.FOL.Parsing.AST.NotSentence.NotSentence C# (CSharp) Method

NotSentence() public method

public NotSentence ( Sentence negated ) : System
negated Sentence
return System
        public NotSentence(Sentence negated)
        {
            this.negated = negated;
            args.Add(negated);
        }