AIMA.Core.Logic.Propositional.Parsing.Ast.Sentence.accept C# (CSharp) Method

accept() public abstract method

public abstract accept ( PLVisitor plv, Object arg ) : Object
plv PLVisitor
arg Object
return Object
        public abstract Object accept(PLVisitor plv, Object arg);
    }

Usage Example

Beispiel #1
0
 public List<Symbol> getSymbolsIn(Sentence s)
 {
     if (s == null)
     {// empty knowledge bases == null fix this later
         return new List<Symbol>();
     }
     return (List<Symbol>)s.accept(this, new List<Symbol>());
 }
All Usage Examples Of AIMA.Core.Logic.Propositional.Parsing.Ast.Sentence::accept
Sentence