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

step() private method

private step ( Sentence s ) : Sentence
s AIMA.Core.Logic.Propositional.Parsing.Ast.Sentence
return AIMA.Core.Logic.Propositional.Parsing.Ast.Sentence
        private Sentence step(Sentence s)
        {
            return (Sentence)s.accept(this, null);
        }