AIMA.Core.Logic.Propositional.Parsing.AbstractPLVisitor.recreate C# (CSharp) Method

recreate() protected method

protected recreate ( Object ast ) : Sentence
ast Object
return AIMA.Core.Logic.Propositional.Parsing.Ast.Sentence
        protected Sentence recreate(Object ast)
        {
            return (Sentence)parser.parse(((Sentence)ast).ToString());
        }
    }