AIMA.Core.Logic.FOL.PredicateCollector.visitPredicate C# (CSharp) 메소드

visitPredicate() 공개 메소드

public visitPredicate ( Predicate p, Object arg ) : Object
p AIMA.Core.Logic.FOL.Parsing.AST.Predicate
arg Object
리턴 Object
        public Object visitPredicate(Predicate p, Object arg)
        {
            List<Predicate> predicates = (List<Predicate>)arg;
            predicates.Add(p);
            return predicates;
        }