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

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

public ProofStepChainReduction ( Chain reduction, Chain nearParent, Chain farParent, Term>.Dictionary subst ) : System
reduction AIMA.Core.Logic.FOL.KB.Data.Chain
nearParent AIMA.Core.Logic.FOL.KB.Data.Chain
farParent AIMA.Core.Logic.FOL.KB.Data.Chain
subst Term>.Dictionary
Результат System
        public ProofStepChainReduction(Chain reduction, Chain nearParent,
                Chain farParent, Dictionary<Variable, Term> subst)
        {
            this.reduction = reduction;
            this.nearParent = nearParent;
            this.farParent = farParent;
            this.subst = subst;
            this.predecessors.Add(farParent.getProofStep());
            this.predecessors.Add(nearParent.getProofStep());
        }