AIMA.Core.Logic.FOL.PredicateCollector.getPredicates C# (CSharp) Method

getPredicates() public method

public getPredicates ( Sentence s ) : List
s Sentence
return List
        public List<Predicate> getPredicates(Sentence s)
        {
            return (List<Predicate>)s.accept(this, new List<Predicate>());
        }