AIMA.Core.Logic.Propositional.Visitors.CNFClauseGatherer.visitBinarySentence C# (CSharp) 메소드

visitBinarySentence() 공개 메소드

public visitBinarySentence ( BinarySentence bs, Object args ) : Object
bs AIMA.Core.Logic.Propositional.Parsing.Ast.BinarySentence
args Object
리턴 Object
        public override Object visitBinarySentence(BinarySentence bs, Object args)
        {

            List<Sentence> soFar = (List<Sentence>)args;

            Sentence first = bs.getFirst();
            Sentence second = bs.getSecond();
            processSubTerm(second, processSubTerm(first, soFar));

            return soFar;

        }