Package PrologPlusCG.cg

Examples of PrologPlusCG.cg.Relation


    // ------------------------------------------------------------------
    boolean UnifyTheBranch(byte BranchDirection, Relation rel1, Concept C2,
        int nivG1, int nivG2) throws ExecException {
        // Chercher une branche de G2 ayant meme ident de relation
        boolean BRes = false;
        Relation rel2 = null;
        Vector<Relation> vRels;

        if (BranchDirection == e_inComeBranch) {
            vRels = C2.m_vctIncomingRelations;
        } else {
View Full Code Here


    }

    // ------------------------------------------------------------------
    boolean postUnify(CG G1) {
        boolean BRes = true;
        Relation R;

        for (Enumeration<Relation> e = G1.m_vctRelations.elements();
                e.hasMoreElements() && BRes;) {
            R = (Relation) e.nextElement();
            BRes = false;
View Full Code Here

TOP

Related Classes of PrologPlusCG.cg.Relation

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.