protege pellet deduce issue

谁都会走 提交于 2021-01-28 21:30:53

问题


this is my sample ontology created by protege 5.5.2:

    <?xml version="1.0"?>
<rdf:RDF xmlns="http://www.semanticweb.org/amin/ontologies/2021/0/untitled-ontology-33#"
     xml:base="http://www.semanticweb.org/amin/ontologies/2021/0/untitled-ontology-33"
     xmlns:owl="http://www.w3.org/2002/07/owl#"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
     xmlns:xml="http://www.w3.org/XML/1998/namespace"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
     xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
    <owl:Ontology rdf:about="http://www.semanticweb.org/amin/ontologies/2021/0/untitled-ontology-33"/>
    


    <!-- 
    ///////////////////////////////////////////////////////////////////////////////////////
    //
    // Data properties
    //
    ///////////////////////////////////////////////////////////////////////////////////////
     -->

    


    <!-- http://www.semanticweb.org/amin/ontologies/2021/0/untitled-ontology-33#prop -->

    <owl:DatatypeProperty rdf:about="http://www.semanticweb.org/amin/ontologies/2021/0/untitled-ontology-33#prop"/>
    


    <!-- 
    ///////////////////////////////////////////////////////////////////////////////////////
    //
    // Classes
    //
    ///////////////////////////////////////////////////////////////////////////////////////
     -->

    


    <!-- http://www.semanticweb.org/amin/ontologies/2021/0/untitled-ontology-33#sub1 -->

    <owl:Class rdf:about="http://www.semanticweb.org/amin/ontologies/2021/0/untitled-ontology-33#sub1">
        <owl:equivalentClass>
            <owl:Class>
                <owl:intersectionOf rdf:parseType="Collection">
                    <rdf:Description rdf:about="http://www.semanticweb.org/amin/ontologies/2021/0/untitled-ontology-33#sup"/>
                    <owl:Restriction>
                        <owl:onProperty rdf:resource="http://www.semanticweb.org/amin/ontologies/2021/0/untitled-ontology-33#prop"/>
                        <owl:someValuesFrom>
                            <rdfs:Datatype>
                                <owl:onDatatype rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/>
                                <owl:withRestrictions rdf:parseType="Collection">
                                    <rdf:Description>
                                        <xsd:minExclusive rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">12</xsd:minExclusive>
                                    </rdf:Description>
                                </owl:withRestrictions>
                            </rdfs:Datatype>
                        </owl:someValuesFrom>
                    </owl:Restriction>
                </owl:intersectionOf>
            </owl:Class>
        </owl:equivalentClass>
        <rdfs:subClassOf rdf:resource="http://www.semanticweb.org/amin/ontologies/2021/0/untitled-ontology-33#sup"/>
    </owl:Class>
    


    <!-- http://www.semanticweb.org/amin/ontologies/2021/0/untitled-ontology-33#sub2 -->

    <owl:Class rdf:about="http://www.semanticweb.org/amin/ontologies/2021/0/untitled-ontology-33#sub2">
        <rdfs:subClassOf rdf:resource="http://www.semanticweb.org/amin/ontologies/2021/0/untitled-ontology-33#sup"/>
        <rdfs:subClassOf>
            <owl:Restriction>
                <owl:onProperty rdf:resource="http://www.semanticweb.org/amin/ontologies/2021/0/untitled-ontology-33#prop"/>
                <owl:someValuesFrom>
                    <rdfs:Datatype>
                        <owl:onDatatype rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/>
                        <owl:withRestrictions rdf:parseType="Collection">
                            <rdf:Description>
                                <xsd:minInclusive rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">14</xsd:minInclusive>
                            </rdf:Description>
                            <rdf:Description>
                                <xsd:maxInclusive rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">14</xsd:maxInclusive>
                            </rdf:Description>
                        </owl:withRestrictions>
                    </rdfs:Datatype>
                </owl:someValuesFrom>
            </owl:Restriction>
        </rdfs:subClassOf>
    </owl:Class>
    


    <!-- http://www.semanticweb.org/amin/ontologies/2021/0/untitled-ontology-33#sup -->

    <owl:Class rdf:about="http://www.semanticweb.org/amin/ontologies/2021/0/untitled-ontology-33#sup"/>
</rdf:RDF>



<!-- Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi -->

running pellet doesn't deduce that sub2 is subclass of sub1,but hermit does.

but if define sub2 axiom as sub2 subclassof : prop value 14, then pellet can deduce sub2 as subclass of sub1 . is there anything wrong with this ontology?

来源:https://stackoverflow.com/questions/65805384/protege-pellet-deduce-issue

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!