AIMA.Core.Logic.FOL.StandardizeApartResult.StandardizeApartResult C# (CSharp) Метод

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

public StandardizeApartResult ( Sentence originalSentence, Sentence standardized, Term>.Dictionary forwardSubstitution, Term>.Dictionary reverseSubstitution ) : System
originalSentence Sentence
standardized Sentence
forwardSubstitution Term>.Dictionary
reverseSubstitution Term>.Dictionary
Результат System
        public StandardizeApartResult(Sentence originalSentence,
                Sentence standardized, Dictionary<Variable, Term> forwardSubstitution,
                Dictionary<Variable, Term> reverseSubstitution)
        {
            this.originalSentence = originalSentence;
            this.standardized = standardized;
            this.forwardSubstitution = forwardSubstitution;
            this.reverseSubstitution = reverseSubstitution;
        }