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

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


            // Ensure the non trivial factor is standardized apart
            Map<Variable, Term> renameSubst = _standardizeApart
                .standardizeApart(posLits, negLits,
                    _saIndexical);
            Clause c = new Clause(posLits, negLits);
            c.setProofStep(new ProofStepClauseFactor(c, this, litX,
                litY, substitution, renameSubst));
            if (isImmutable()) {
              c.setImmutable();
            }
            if (!isStandardizedApartCheckRequired()) {
View Full Code Here

TOP

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

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.