AIMA.Core.Logic.FOL.ImplicationsOut.visitQuantifiedSentence C# (CSharp) Méthode

visitQuantifiedSentence() public méthode

public visitQuantifiedSentence ( QuantifiedSentence sentence, Object arg ) : Object
sentence AIMA.Core.Logic.FOL.Parsing.AST.QuantifiedSentence
arg Object
Résultat Object
        public Object visitQuantifiedSentence(QuantifiedSentence sentence,
                Object arg)
        {

            return new QuantifiedSentence(sentence.getQuantifier(), sentence
                    .getVariables(), (Sentence)sentence.getQuantified().accept(
                    this, arg));
        }
    }