AIMA.Core.Logic.Propositional.Parsing.AbstractPLVisitor.visitNotSentence C# (CSharp) Méthode

visitNotSentence() public méthode

public visitNotSentence ( UnarySentence fs, Object arg ) : Object
fs AIMA.Core.Logic.Propositional.Parsing.Ast.UnarySentence
arg Object
Résultat Object
        public virtual Object visitNotSentence(UnarySentence fs, Object arg)
        {
            return new UnarySentence((Sentence)fs.getNegated().accept(this, arg));
        }