AIMA.Core.Logic.Propositional.Visitors.SymbolClassifier.getPureSymbolsIn C# (CSharp) Method

getPureSymbolsIn() public method

public getPureSymbolsIn ( Sentence sentence ) : List
sentence AIMA.Core.Logic.Propositional.Parsing.Ast.Sentence
return List
        public List<Symbol> getPureSymbolsIn(Sentence sentence)
        {
            List<Symbol> allPureNegatives = getPureNegativeSymbolsIn(sentence);
            List<Symbol> allPurePositives = getPurePositiveSymbolsIn(sentence);
            return SetOps.union(allPurePositives, allPureNegatives);
        }