AIMA.Core.Logic.Propositional.Visitors.CNFTransformer.transformImpliedSentence C# (CSharp) Method

transformImpliedSentence() private method

private transformImpliedSentence ( BinarySentence bs ) : Sentence
bs AIMA.Core.Logic.Propositional.Parsing.Ast.BinarySentence
return AIMA.Core.Logic.Propositional.Parsing.Ast.Sentence
        private Sentence transformImpliedSentence(BinarySentence bs)
        {
            Sentence first = new UnarySentence((Sentence)bs.getFirst().accept(
                    this, null));
            return new BinarySentence("OR", first, (Sentence)bs.getSecond()
                    .accept(this, null));
        }