AIMA.Core.Logic.Propositional.Visitors.AndDetector.visitNotSentence C# (CSharp) Method

visitNotSentence() public method

public visitNotSentence ( UnarySentence fs, Object arg ) : Object
fs AIMA.Core.Logic.Propositional.Parsing.Ast.UnarySentence
arg Object
return Object
        public Object visitNotSentence(UnarySentence fs, Object arg)
        {
            return fs.getNegated().accept(this, null);
        }