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

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

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