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

getNegated() public method

public getNegated ( ) : Sentence
return Sentence
        public Sentence getNegated()
        {
            return negated;
        }

Usage Example

 public Object visitNotSentence(NotSentence sentence, Object arg)
 {
     sentence.getNegated().accept(this, arg);
     return arg;
 }
All Usage Examples Of AIMA.Core.Logic.FOL.Parsing.AST.NotSentence::getNegated