Package aima.core.logic.fol.inference

Examples of aima.core.logic.fol.inference.Paramodulation.apply()


    lits.add(new Literal(a2));

    Clause c2 = new Clause(lits);

    Paramodulation paramodulation = new Paramodulation();
    Set<Clause> paras = paramodulation.apply(c1, c2);

    System.out.println("Paramodulate '" + c1 + "' with '" + c2
        + "' to give");
    System.out.println(paras.toString());
    System.out.println("");
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.