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

visitNotSentence() public method

public visitNotSentence ( UnarySentence ns, Object arg ) : Object
ns AIMA.Core.Logic.Propositional.Parsing.Ast.UnarySentence
arg Object
return Object
        public virtual Object visitNotSentence(UnarySentence ns, Object arg)
        {
            List<Sentence> s = (List<Sentence>)arg;
            return SetOps.union(s, (List<Sentence>)ns.getNegated().accept(this, arg));
        }