AIMA.Core.Logic.FOL.DistributeOrOverAnd.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)
        {
            // This should not be called as should have already
            // removed all of the quantifiers.
            throw new NotImplementedException(
                    "All quantified sentences should have already been removed.");
        }
    }