Package stanfordlogic.prover

Examples of stanfordlogic.prover.Disjunction


            Expression [] disjuncts = new Expression[relation.getArity()];
           
            for ( int i = 1; i <= relation.getArity(); i++ )
                disjuncts[i-1] = examineRelation(relation.getElement(i));
           
            return new Disjunction(false, disjuncts);
        }
       
        // Second case: normal relation.
       
        // Make sure this symbol isn't a function/object symbol already.
View Full Code Here

TOP

Related Classes of stanfordlogic.prover.Disjunction

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.