AIMA.Core.Logic.FOL.Inference.AbstractModulation.IdentifyCandidateMatchingTerm.IdentifyCandidateMatchingTerm C# (CSharp) Метод

IdentifyCandidateMatchingTerm() публичный Метод

public IdentifyCandidateMatchingTerm ( Term toMatch, AtomicSentence expression, AbstractModulation abstractModulation ) : System
toMatch Term
expression AtomicSentence
abstractModulation AbstractModulation
Результат System
            public IdentifyCandidateMatchingTerm(Term toMatch,
                    AtomicSentence expression,AbstractModulation abstractModulation)
            {
                this.abstractModulation = abstractModulation;
                this.toMatch = toMatch;
                this.toMatchVariables = abstractModulation.variableCollector
                        .collectAllVariables(toMatch);

                expression.accept(this, null);
            }