Package aima.core.logic.fol.inference.proof

Examples of aima.core.logic.fol.inference.proof.ProofStepClauseBinaryResolvent


            // Ensure the resolvents are standardized apart
            Map<Variable, Term> renameSubstitituon = _standardizeApart
                .standardizeApart(copyRPosLits, copyRNegLits,
                    _saIndexical);
            Clause c = new Clause(copyRPosLits, copyRNegLits);
            c.setProofStep(new ProofStepClauseBinaryResolvent(c,
                pl, nl, this, othC, copyRBindings,
                renameSubstitituon));
            if (isImmutable()) {
              c.setImmutable();
            }
View Full Code Here

TOP

Related Classes of aima.core.logic.fol.inference.proof.ProofStepClauseBinaryResolvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.