Package org.semanticweb.HermiT.model.DLClause

Examples of org.semanticweb.HermiT.model.DLClause.ClauseType


        Set<Atom> negativeFacts=new HashSet<Atom>();
        Set<DatatypeRestriction> allUnknownDatatypeRestrictions=new HashSet<DatatypeRestriction>();
        for (OWLObjectPropertyExpression[] inclusion : axioms.m_simpleObjectPropertyInclusions) {
            OWLObjectPropertyExpression sub=inclusion[0];
            OWLObjectPropertyExpression sup=inclusion[1];
            ClauseType clauseType;
            if (sub.isAnonymous()!=sup.isAnonymous())
                clauseType=ClauseType.INVERSE_OBJECT_PROPERTY_INCLUSION;
            else
                clauseType=ClauseType.OBJECT_PROPERTY_INCLUSION;
            Atom subRoleAtom=getRoleAtom(inclusion[0],X,Y);
View Full Code Here

TOP

Related Classes of org.semanticweb.HermiT.model.DLClause.ClauseType

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.