diff --git a/_modules/index.html b/_modules/index.html
index 3788f781..baa86c55 100644
--- a/_modules/index.html
+++ b/_modules/index.html
@@ -108,7 +108,6 @@
OWLPropertyExpression , OWLDataPropertyExpression
from owlapy.owl_individual import OWLNamedIndividual
from owlapy.owl_literal import OWLLiteral
-from owlapy.utils import LRUCache , run_with_timeout
+from owlapy.utils import run_with_timeout
from owlapy.abstracts.abstract_owl_reasoner import AbstractOWLReasoner
logger = logging . getLogger ( __name__ )
@@ -121,37 +121,6 @@ Source code for owlapy.owl_reasoner
[docs]
class StructuralReasoner ( AbstractOWLReasoner ):
"""Tries to check instances fast (but maybe incomplete)."""
- __slots__ = '_ontology' , '_world' , \
- '_ind_set' , '_cls_to_ind' , \
- '_has_prop' , 'class_cache' , \
- '_objectsomevalues_cache' , '_datasomevalues_cache' , '_objectcardinality_cache' , \
- '_property_cache' , \
- '_obj_prop' , '_obj_prop_inv' , '_data_prop' , \
- '_negation_default' , '_sub_properties' , \
- '__warned'
-
- _ontology : Ontology
- _world : owlready2 . World
- _cls_to_ind : Dict [ OWLClass , FrozenSet [ OWLNamedIndividual ]] # Class => individuals
- _has_prop : Mapping [ Type [ _P ], LRUCache [ _P , FrozenSet [ OWLNamedIndividual ]]] # Type => Property => individuals
- _ind_set : FrozenSet [ OWLNamedIndividual ]
- # ObjectSomeValuesFrom => individuals
- _objectsomevalues_cache : LRUCache [ OWLClassExpression , FrozenSet [ OWLNamedIndividual ]]
- # DataSomeValuesFrom => individuals
- _datasomevalues_cache : LRUCache [ OWLClassExpression , FrozenSet [ OWLNamedIndividual ]]
- # ObjectCardinalityRestriction => individuals
- _objectcardinality_cache : LRUCache [ OWLClassExpression , FrozenSet [ OWLNamedIndividual ]]
- # ObjectProperty => { individual => individuals }
- _obj_prop : Dict [ OWLObjectProperty , Mapping [ OWLNamedIndividual , Set [ OWLNamedIndividual ]]]
- # ObjectProperty => { individual => individuals }
- _obj_prop_inv : Dict [ OWLObjectProperty , Mapping [ OWLNamedIndividual , Set [ OWLNamedIndividual ]]]
- # DataProperty => { individual => literals }
- _data_prop : Dict [ OWLDataProperty , Mapping [ OWLNamedIndividual , Set [ OWLLiteral ]]]
- class_cache : bool
- _property_cache : bool
- _negation_default : bool
- _sub_properties : bool
-
def __init__ ( self , ontology : AbstractOWLOntology , * , class_cache : bool = True ,
property_cache : bool = True , negation_default : bool = True , sub_properties : bool = False ):
"""Fast instance checker.
@@ -165,36 +134,34 @@ Source code for owlapy.owl_reasoner
"""
super () . __init__ ( ontology )
assert isinstance ( ontology , Ontology )
- self . _world = ontology . _world
- self . _ontology = ontology
- self . class_cache = class_cache
- self . _property_cache = property_cache
- self . _negation_default = negation_default
- self . _sub_properties = sub_properties
- self . __warned = 0
+ self . _world : owlready2 . World = ontology . _world
+ self . _ontology : Ontology = ontology
+ self . class_cache : bool = class_cache
+ self . _property_cache : bool = property_cache
+ self . _negation_default : bool = negation_default
+ self . _sub_properties : bool = sub_properties
+ self . __warned : int = 0
self . _init ()
- def _init ( self , cache_size = 128 ):
-
- individuals = self . _ontology . individuals_in_signature ()
- self . _ind_set = frozenset ( individuals )
- self . _objectsomevalues_cache = LRUCache ( maxsize = cache_size )
- self . _datasomevalues_cache = LRUCache ( maxsize = cache_size )
- self . _objectcardinality_cache = LRUCache ( maxsize = cache_size )
+ def _init ( self ):
if self . class_cache :
- self . _cls_to_ind = dict ()
+ # Class => individuals
+ self . _cls_to_ind : Dict [ OWLClass , FrozenSet [ OWLNamedIndividual ]] = {}
if self . _property_cache :
- self . _obj_prop = dict ()
- self . _obj_prop_inv = dict ()
- self . _data_prop = dict ()
+ # ObjectProperty => { individual => individuals }
+ self . _obj_prop : Dict [ OWLObjectProperty , Mapping [ OWLNamedIndividual , Set [ OWLNamedIndividual ]]] = dict ()
+ # ObjectProperty => { individual => individuals }
+ self . _obj_prop_inv : Dict [ OWLObjectProperty , Mapping [ OWLNamedIndividual , Set [ OWLNamedIndividual ]]] = dict ()
+ # DataProperty => { individual => literals }
+ self . _data_prop : Dict [ OWLDataProperty , Mapping [ OWLNamedIndividual , Set [ OWLLiteral ]]] = dict ()
else :
- self . _has_prop = MappingProxyType ({
- OWLDataProperty : LRUCache ( maxsize = cache_size ),
- OWLObjectProperty : LRUCache ( maxsize = cache_size ),
- OWLObjectInverseOf : LRUCache ( maxsize = cache_size ),
- })
-
+ self . _has_prop : Mapping [ Type [ _P ], Dict [ _P , FrozenSet [ OWLNamedIndividual ]]] = {
+ OWLDataProperty : {},
+ OWLObjectProperty : {},
+ OWLObjectInverseOf : {},
+ }
+
[docs]
def reset ( self ):
@@ -793,7 +760,8 @@
Source code for owlapy.owl_reasoner
opc [ s ] = set ()
opc [ s ] |= { o }
else :
- for s in self . _ind_set :
+ all_ = frozenset ( self . _ontology . individuals_in_signature ())
+ for s in all_ :
individuals = set ( self . object_property_values ( s , pe , not self . _sub_properties ))
if individuals :
opc [ s ] = individuals
@@ -833,8 +801,8 @@ Source code for owlapy.owl_reasoner
func = self . data_property_values
else :
func = self . object_property_values
-
- for s in self . _ind_set :
+ all_ = frozenset ( self . _ontology . individuals_in_signature ())
+ for s in all_ :
try :
next ( iter ( func ( s , pe , not self . _sub_properties )))
subs |= { s }
@@ -939,9 +907,6 @@ Source code for owlapy.owl_reasoner
@_find_instances . register
def _ ( self , ce : OWLObjectSomeValuesFrom ) -> FrozenSet [ OWLNamedIndividual ]:
- if ce in self . _objectsomevalues_cache :
- return self . _objectsomevalues_cache [ ce ]
-
p = ce . get_property ()
assert isinstance ( p , OWLObjectPropertyExpression )
if not self . _property_cache and ce . get_filler () . is_owl_thing ():
@@ -951,13 +916,12 @@ Source code for owlapy.owl_reasoner
ind = self . _find_some_values ( p , filler_ind )
- self . _objectsomevalues_cache [ ce ] = ind
return ind
@_find_instances . register
def _ ( self , ce : OWLObjectComplementOf ) -> FrozenSet [ OWLNamedIndividual ]:
if self . _negation_default :
- all_ = self . _ind_set
+ all_ = frozenset ( self . _ontology . individuals_in_signature ())
complement_ind = self . _find_instances ( ce . get_operand ())
return all_ ^ complement_ind
else :
@@ -993,7 +957,7 @@ Source code for owlapy.owl_reasoner
@_find_instances . register
def _ ( self , ce : OWLObjectMaxCardinality ) -> FrozenSet [ OWLNamedIndividual ]:
- all_ = self . _ind_set
+ all_ = frozenset ( self . _ontology . individuals_in_signature ())
min_ind = self . _find_instances ( OWLObjectMinCardinality ( cardinality = ce . get_cardinality () + 1 ,
property = ce . get_property (),
filler = ce . get_filler ()))
@@ -1004,9 +968,6 @@ Source code for owlapy.owl_reasoner
return self . _get_instances_object_card_restriction ( ce )
def _get_instances_object_card_restriction ( self , ce : OWLObjectCardinalityRestriction ):
- if ce in self . _objectcardinality_cache :
- return self . _objectcardinality_cache [ ce ]
-
p = ce . get_property ()
assert isinstance ( p , OWLObjectPropertyExpression )
@@ -1028,14 +989,10 @@ Source code for owlapy.owl_reasoner
ind = self . _find_some_values ( p , filler_ind , min_count = min_count , max_count = max_count )
- self . _objectcardinality_cache [ ce ] = ind
return ind
@_find_instances . register
def _ ( self , ce : OWLDataSomeValuesFrom ) -> FrozenSet [ OWLNamedIndividual ]:
- if ce in self . _datasomevalues_cache :
- return self . _datasomevalues_cache [ ce ]
-
pe = ce . get_property ()
filler = ce . get_filler ()
assert isinstance ( pe , OWLDataProperty )
@@ -1124,7 +1081,6 @@ Source code for owlapy.owl_reasoner
raise ValueError
r = frozenset ( ind )
- self . _datasomevalues_cache [ ce ] = r
return r
@_find_instances . register
diff --git a/_modules/owlapy/util_owl_static_funcs.html b/_modules/owlapy/util_owl_static_funcs.html
deleted file mode 100644
index 2a0c25f6..00000000
--- a/_modules/owlapy/util_owl_static_funcs.html
+++ /dev/null
@@ -1,173 +0,0 @@
-
-
-
-
-
-
-
- owlapy.util_owl_static_funcs — OWLAPY 1.3.2 documentation
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- OWLAPY
-
-
-
-
-
-
-
-
-
Source code for owlapy.util_owl_static_funcs
-from .owl_ontology import Ontology
-from .owl_ontology_manager import OntologyManager
-from typing import List
-from .class_expression import OWLClassExpression , OWLClass
-from .iri import IRI
-from .owl_axiom import OWLEquivalentClassesAxiom
-
-
-
[docs]
-
def save_owl_class_expressions ( expressions : OWLClassExpression | List [ OWLClassExpression ],
-
path : str = 'predictions' ,
-
rdf_format : str = 'rdfxml' ,
-
namespace : str = None ) -> None :
-
"""
-
Saves a set of OWL class expressions to an ontology file in RDF/XML format.
-
-
This function takes one or more OWL class expressions, creates an ontology,
-
and saves the expressions as OWL equivalent class axioms in the specified RDF format.
-
By default, it saves the file to the specified path using the 'rdfxml' format.
-
-
Args:
-
expressions (OWLClassExpression | List[OWLClassExpression]): A single or a list of OWL class expressions
-
to be saved as equivalent class axioms.
-
path (str, optional): The file path where the ontology will be saved. Defaults to 'predictions'.
-
rdf_format (str, optional): RDF serialization format for saving the ontology. Currently only
-
supports 'rdfxml'. Defaults to 'rdfxml'.
-
namespace (str, optional): The namespace URI used for the ontology. If None, defaults to
-
'https://dice-research.org/predictions#'. Must end with '#'.
-
-
Raises:
-
AssertionError: If `expressions` is neither an OWLClassExpression nor a list of OWLClassExpression.
-
AssertionError: If `rdf_format` is not 'rdfxml'.
-
AssertionError: If `namespace` does not end with a '#'.
-
-
Example:
-
>>> from some_module import OWLClassExpression
-
>>> expr1 = OWLClassExpression("SomeExpression1")
-
>>> expr2 = OWLClassExpression("SomeExpression2")
-
>>> save_owl_class_expressions([expr1, expr2], path="my_ontology.owl", rdf_format="rdfxml")
-
"""
-
assert isinstance ( expressions , OWLClassExpression ) or isinstance ( expressions [ 0 ],
-
OWLClassExpression ), "expressions must be either OWLClassExpression or a list of OWLClassExpression"
-
assert rdf_format == 'rdfxml' , f 'Format { rdf_format } not implemented. Please use rdfxml'
-
-
if isinstance ( expressions , OWLClassExpression ):
-
expressions = [ expressions ]
-
-
namespace = 'https://dice-research.org/predictions#' if namespace is None else namespace
-
assert "#" == namespace [ - 1 ], "namespace must end with #"
-
# ()
-
manager = OntologyManager ()
-
# ()
-
ontology : Ontology = manager . create_ontology ( namespace )
-
# () Iterate over concepts
-
for th , i in enumerate ( expressions ):
-
cls_a = OWLClass ( IRI . create ( namespace , str ( th )))
-
equivalent_classes_axiom = OWLEquivalentClassesAxiom ([ cls_a , i ])
-
ontology . add_axiom ( equivalent_classes_axiom )
-
ontology . save ( path = path , inplace = False , rdf_format = rdf_format )
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/_sources/autoapi/owlapy/index.rst.txt b/_sources/autoapi/owlapy/index.rst.txt
index e9e1d562..2ef812c3 100644
--- a/_sources/autoapi/owlapy/index.rst.txt
+++ b/_sources/autoapi/owlapy/index.rst.txt
@@ -34,7 +34,6 @@ Submodules
/autoapi/owlapy/providers/index
/autoapi/owlapy/render/index
/autoapi/owlapy/static_funcs/index
- /autoapi/owlapy/util_owl_static_funcs/index
/autoapi/owlapy/utils/index
/autoapi/owlapy/vocab/index
diff --git a/_sources/autoapi/owlapy/owl_reasoner/index.rst.txt b/_sources/autoapi/owlapy/owl_reasoner/index.rst.txt
index 10d2dc57..439c6ad9 100644
--- a/_sources/autoapi/owlapy/owl_reasoner/index.rst.txt
+++ b/_sources/autoapi/owlapy/owl_reasoner/index.rst.txt
@@ -39,11 +39,6 @@ Module Contents
Tries to check instances fast (but maybe incomplete).
- .. py:attribute:: __slots__
- :value: ('_ontology', '_world', '_ind_set', '_cls_to_ind', '_has_prop', 'class_cache',...
-
-
-
.. py:attribute:: class_cache
:type: bool
diff --git a/_sources/autoapi/owlapy/util_owl_static_funcs/index.rst.txt b/_sources/autoapi/owlapy/util_owl_static_funcs/index.rst.txt
deleted file mode 100644
index f9eb7e95..00000000
--- a/_sources/autoapi/owlapy/util_owl_static_funcs/index.rst.txt
+++ /dev/null
@@ -1,49 +0,0 @@
-owlapy.util_owl_static_funcs
-============================
-
-.. py:module:: owlapy.util_owl_static_funcs
-
-
-Functions
----------
-
-.. autoapisummary::
-
- owlapy.util_owl_static_funcs.save_owl_class_expressions
-
-
-Module Contents
----------------
-
-.. py:function:: save_owl_class_expressions(expressions: owlapy.class_expression.OWLClassExpression | List[owlapy.class_expression.OWLClassExpression], path: str = 'predictions', rdf_format: str = 'rdfxml', namespace: str = None) -> None
-
- Saves a set of OWL class expressions to an ontology file in RDF/XML format.
-
- This function takes one or more OWL class expressions, creates an ontology,
- and saves the expressions as OWL equivalent class axioms in the specified RDF format.
- By default, it saves the file to the specified path using the 'rdfxml' format.
-
- :param expressions: A single or a list of OWL class expressions
- to be saved as equivalent class axioms.
- :type expressions: OWLClassExpression | List[OWLClassExpression]
- :param path: The file path where the ontology will be saved. Defaults to 'predictions'.
- :type path: str, optional
- :param rdf_format: RDF serialization format for saving the ontology. Currently only
- supports 'rdfxml'. Defaults to 'rdfxml'.
- :type rdf_format: str, optional
- :param namespace: The namespace URI used for the ontology. If None, defaults to
- 'https://dice-research.org/predictions#'. Must end with '#'.
- :type namespace: str, optional
-
- :raises AssertionError: If `expressions` is neither an OWLClassExpression nor a list of OWLClassExpression.
- :raises AssertionError: If `rdf_format` is not 'rdfxml'.
- :raises AssertionError: If `namespace` does not end with a '#'.
-
- .. rubric:: Example
-
- >>> from some_module import OWLClassExpression
- >>> expr1 = OWLClassExpression("SomeExpression1")
- >>> expr2 = OWLClassExpression("SomeExpression2")
- >>> save_owl_class_expressions([expr1, expr2], path="my_ontology.owl", rdf_format="rdfxml")
-
-
diff --git a/autoapi/owlapy/abstracts/abstract_owl_ontology/index.html b/autoapi/owlapy/abstracts/abstract_owl_ontology/index.html
index dc4383b5..9a02959a 100644
--- a/autoapi/owlapy/abstracts/abstract_owl_ontology/index.html
+++ b/autoapi/owlapy/abstracts/abstract_owl_ontology/index.html
@@ -96,7 +96,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/abstracts/abstract_owl_ontology_manager/index.html b/autoapi/owlapy/abstracts/abstract_owl_ontology_manager/index.html
index 70dfe8d7..44c9d588 100644
--- a/autoapi/owlapy/abstracts/abstract_owl_ontology_manager/index.html
+++ b/autoapi/owlapy/abstracts/abstract_owl_ontology_manager/index.html
@@ -96,7 +96,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/abstracts/abstract_owl_reasoner/index.html b/autoapi/owlapy/abstracts/abstract_owl_reasoner/index.html
index 6627a4e6..482a4a67 100644
--- a/autoapi/owlapy/abstracts/abstract_owl_reasoner/index.html
+++ b/autoapi/owlapy/abstracts/abstract_owl_reasoner/index.html
@@ -97,7 +97,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/abstracts/index.html b/autoapi/owlapy/abstracts/index.html
index 500ea81b..1feac6ed 100644
--- a/autoapi/owlapy/abstracts/index.html
+++ b/autoapi/owlapy/abstracts/index.html
@@ -156,7 +156,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/class_expression/class_expression/index.html b/autoapi/owlapy/class_expression/class_expression/index.html
index 90317c89..0d52f8ca 100644
--- a/autoapi/owlapy/class_expression/class_expression/index.html
+++ b/autoapi/owlapy/class_expression/class_expression/index.html
@@ -97,7 +97,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/class_expression/index.html b/autoapi/owlapy/class_expression/index.html
index 00540b77..9fa308a0 100644
--- a/autoapi/owlapy/class_expression/index.html
+++ b/autoapi/owlapy/class_expression/index.html
@@ -366,7 +366,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/class_expression/nary_boolean_expression/index.html b/autoapi/owlapy/class_expression/nary_boolean_expression/index.html
index c7d1c052..fc5ab248 100644
--- a/autoapi/owlapy/class_expression/nary_boolean_expression/index.html
+++ b/autoapi/owlapy/class_expression/nary_boolean_expression/index.html
@@ -97,7 +97,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/class_expression/owl_class/index.html b/autoapi/owlapy/class_expression/owl_class/index.html
index ce368f06..fa6e06fc 100644
--- a/autoapi/owlapy/class_expression/owl_class/index.html
+++ b/autoapi/owlapy/class_expression/owl_class/index.html
@@ -97,7 +97,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/class_expression/restriction/index.html b/autoapi/owlapy/class_expression/restriction/index.html
index e8ae453a..920e3f28 100644
--- a/autoapi/owlapy/class_expression/restriction/index.html
+++ b/autoapi/owlapy/class_expression/restriction/index.html
@@ -98,7 +98,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/converter/index.html b/autoapi/owlapy/converter/index.html
index aeb3cd92..10d9590d 100644
--- a/autoapi/owlapy/converter/index.html
+++ b/autoapi/owlapy/converter/index.html
@@ -139,7 +139,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/entities/index.html b/autoapi/owlapy/entities/index.html
index 18725d6b..33352958 100644
--- a/autoapi/owlapy/entities/index.html
+++ b/autoapi/owlapy/entities/index.html
@@ -82,7 +82,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/index.html b/autoapi/owlapy/index.html
index b41bbb31..2613d7e7 100644
--- a/autoapi/owlapy/index.html
+++ b/autoapi/owlapy/index.html
@@ -82,7 +82,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
@@ -164,7 +163,6 @@
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/iri/index.html b/autoapi/owlapy/iri/index.html
index 7e2515cb..21a0870b 100644
--- a/autoapi/owlapy/iri/index.html
+++ b/autoapi/owlapy/iri/index.html
@@ -106,7 +106,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/meta_classes/index.html b/autoapi/owlapy/meta_classes/index.html
index 955a47cf..2d30a729 100644
--- a/autoapi/owlapy/meta_classes/index.html
+++ b/autoapi/owlapy/meta_classes/index.html
@@ -109,7 +109,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/namespaces/index.html b/autoapi/owlapy/namespaces/index.html
index 345c8085..6efd3309 100644
--- a/autoapi/owlapy/namespaces/index.html
+++ b/autoapi/owlapy/namespaces/index.html
@@ -102,7 +102,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/owl_annotation/index.html b/autoapi/owlapy/owl_annotation/index.html
index 22897421..04d28d45 100644
--- a/autoapi/owlapy/owl_annotation/index.html
+++ b/autoapi/owlapy/owl_annotation/index.html
@@ -104,7 +104,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/owl_axiom/index.html b/autoapi/owlapy/owl_axiom/index.html
index 1200617c..d84360e5 100644
--- a/autoapi/owlapy/owl_axiom/index.html
+++ b/autoapi/owlapy/owl_axiom/index.html
@@ -435,7 +435,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/owl_data_ranges/index.html b/autoapi/owlapy/owl_data_ranges/index.html
index a808df52..b43fd9a7 100644
--- a/autoapi/owlapy/owl_data_ranges/index.html
+++ b/autoapi/owlapy/owl_data_ranges/index.html
@@ -116,7 +116,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/owl_datatype/index.html b/autoapi/owlapy/owl_datatype/index.html
index 001c1d97..4c21b3bc 100644
--- a/autoapi/owlapy/owl_datatype/index.html
+++ b/autoapi/owlapy/owl_datatype/index.html
@@ -95,7 +95,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/owl_hierarchy/index.html b/autoapi/owlapy/owl_hierarchy/index.html
index 2356eb4d..4d9ba2ab 100644
--- a/autoapi/owlapy/owl_hierarchy/index.html
+++ b/autoapi/owlapy/owl_hierarchy/index.html
@@ -138,7 +138,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/owl_individual/index.html b/autoapi/owlapy/owl_individual/index.html
index fb024fc3..053beca8 100644
--- a/autoapi/owlapy/owl_individual/index.html
+++ b/autoapi/owlapy/owl_individual/index.html
@@ -99,7 +99,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/owl_literal/index.html b/autoapi/owlapy/owl_literal/index.html
index d3a59904..aed4f74f 100644
--- a/autoapi/owlapy/owl_literal/index.html
+++ b/autoapi/owlapy/owl_literal/index.html
@@ -128,7 +128,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/owl_object/index.html b/autoapi/owlapy/owl_object/index.html
index 88e55a41..a7ed28fc 100644
--- a/autoapi/owlapy/owl_object/index.html
+++ b/autoapi/owlapy/owl_object/index.html
@@ -119,7 +119,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/owl_ontology/index.html b/autoapi/owlapy/owl_ontology/index.html
index 9fe8b6df..7e9c0969 100644
--- a/autoapi/owlapy/owl_ontology/index.html
+++ b/autoapi/owlapy/owl_ontology/index.html
@@ -171,7 +171,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/owl_ontology_manager/index.html b/autoapi/owlapy/owl_ontology_manager/index.html
index 061a3e5c..fa1150fb 100644
--- a/autoapi/owlapy/owl_ontology_manager/index.html
+++ b/autoapi/owlapy/owl_ontology_manager/index.html
@@ -115,7 +115,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/owl_property/index.html b/autoapi/owlapy/owl_property/index.html
index c3061e24..7736b8d6 100644
--- a/autoapi/owlapy/owl_property/index.html
+++ b/autoapi/owlapy/owl_property/index.html
@@ -139,7 +139,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/owl_reasoner/index.html b/autoapi/owlapy/owl_reasoner/index.html
index 75fc6d75..5559066d 100644
--- a/autoapi/owlapy/owl_reasoner/index.html
+++ b/autoapi/owlapy/owl_reasoner/index.html
@@ -82,7 +82,6 @@
Module Contents
logger
StructuralReasoner
@@ -231,11 +229,6 @@ Module Contents[source]
Bases: owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner
Tries to check instances fast (but maybe incomplete).
-
-
-__slots__ = ('_ontology', '_world', '_ind_set', '_cls_to_ind', '_has_prop', 'class_cache',...
-
-
class_cache : bool
diff --git a/autoapi/owlapy/owlapi_mapper/index.html b/autoapi/owlapy/owlapi_mapper/index.html
index 1600e9ca..355102aa 100644
--- a/autoapi/owlapy/owlapi_mapper/index.html
+++ b/autoapi/owlapy/owlapi_mapper/index.html
@@ -100,7 +100,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/parser/index.html b/autoapi/owlapy/parser/index.html
index 7bad77c4..dd453ce0 100644
--- a/autoapi/owlapy/parser/index.html
+++ b/autoapi/owlapy/parser/index.html
@@ -204,7 +204,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/providers/index.html b/autoapi/owlapy/providers/index.html
index 0ff99ea8..ac44bf1d 100644
--- a/autoapi/owlapy/providers/index.html
+++ b/autoapi/owlapy/providers/index.html
@@ -96,7 +96,6 @@
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/render/index.html b/autoapi/owlapy/render/index.html
index 7feabd9a..cf7ccfbe 100644
--- a/autoapi/owlapy/render/index.html
+++ b/autoapi/owlapy/render/index.html
@@ -109,7 +109,6 @@
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
diff --git a/autoapi/owlapy/static_funcs/index.html b/autoapi/owlapy/static_funcs/index.html
index 7b34d83c..935bba0d 100644
--- a/autoapi/owlapy/static_funcs/index.html
+++ b/autoapi/owlapy/static_funcs/index.html
@@ -24,7 +24,7 @@
-
+
@@ -92,7 +92,6 @@
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
@@ -191,7 +190,7 @@
diff --git a/autoapi/owlapy/util_owl_static_funcs/index.html b/autoapi/owlapy/util_owl_static_funcs/index.html
deleted file mode 100644
index 2d9e2396..00000000
--- a/autoapi/owlapy/util_owl_static_funcs/index.html
+++ /dev/null
@@ -1,213 +0,0 @@
-
-
-
-
-
-
-
-
- owlapy.util_owl_static_funcs — OWLAPY 1.3.2 documentation
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- OWLAPY
-
-
-
-
-
-
-
-
-
-owlapy.util_owl_static_funcs
-
-
-Module Contents
-
-
-owlapy.util_owl_static_funcs. save_owl_class_expressions ( expressions : owlapy.class_expression.OWLClassExpression | List [ owlapy.class_expression.OWLClassExpression ] , path : str = 'predictions' , rdf_format : str = 'rdfxml' , namespace : str = None ) → None [source]
-Saves a set of OWL class expressions to an ontology file in RDF/XML format.
-This function takes one or more OWL class expressions, creates an ontology,
-and saves the expressions as OWL equivalent class axioms in the specified RDF format.
-By default, it saves the file to the specified path using the ‘rdfxml’ format.
-
-Parameters:
-
-expressions (OWLClassExpression | List [ OWLClassExpression ] ) – A single or a list of OWL class expressions
-to be saved as equivalent class axioms.
-path (str , optional ) – The file path where the ontology will be saved. Defaults to ‘predictions’.
-rdf_format (str , optional ) – RDF serialization format for saving the ontology. Currently only
-supports ‘rdfxml’. Defaults to ‘rdfxml’.
-namespace (str , optional ) – The namespace URI used for the ontology. If None, defaults to
-‘https://dice-research.org /predictions#’. Must end with ‘#’.
-
-
-Raises:
-
-AssertionError – If expressions is neither an OWLClassExpression nor a list of OWLClassExpression.
-AssertionError – If rdf_format is not ‘rdfxml’.
-AssertionError – If namespace does not end with a ‘#’.
-
-
-
-Example
->>> from some_module import OWLClassExpression
->>> expr1 = OWLClassExpression ( "SomeExpression1" )
->>> expr2 = OWLClassExpression ( "SomeExpression2" )
->>> save_owl_class_expressions ([ expr1 , expr2 ], path = "my_ontology.owl" , rdf_format = "rdfxml" )
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/autoapi/owlapy/utils/index.html b/autoapi/owlapy/utils/index.html
index 8ca6c798..cbb211ca 100644
--- a/autoapi/owlapy/utils/index.html
+++ b/autoapi/owlapy/utils/index.html
@@ -25,7 +25,7 @@
-
+
@@ -82,7 +82,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
diff --git a/autoapi/owlapy/vocab/index.html b/autoapi/owlapy/vocab/index.html
index 3c1b6807..1eee77e1 100644
--- a/autoapi/owlapy/vocab/index.html
+++ b/autoapi/owlapy/vocab/index.html
@@ -81,7 +81,6 @@
owlapy.providers
owlapy.render
owlapy.static_funcs
-
owlapy.util_owl_static_funcs
owlapy.utils
owlapy.vocab
-
- owlapy.util_owl_static_funcs
-
-
@@ -3262,8 +3251,6 @@
S
(owlapy.owl_ontology.Ontology method)
-
save_owl_class_expressions() (in module owlapy.util_owl_static_funcs)
-
save_world() (owlapy.OntologyManager method)
@@ -3326,10 +3313,10 @@ S
StringOWLDatatype (in module owlapy.owl_literal)
-
-
+
sub_classes() (owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner method)
diff --git a/objects.inv b/objects.inv
index 5cd92adb..186c1d7c 100644
Binary files a/objects.inv and b/objects.inv differ
diff --git a/owlapy.pdf b/owlapy.pdf
index 0479ca46..a20bba34 100644
Binary files a/owlapy.pdf and b/owlapy.pdf differ
diff --git a/py-modindex.html b/py-modindex.html
index a69a0469..dd7ede32 100644
--- a/py-modindex.html
+++ b/py-modindex.html
@@ -255,11 +255,6 @@ Python Module Index
owlapy.static_funcs
-
-
-
- owlapy.util_owl_static_funcs
-
diff --git a/searchindex.js b/searchindex.js
index 3c0c7cdf..5dbfd63a 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles": {"About owlapy": [[38, null]], "Add a new Class": [[39, "add-a-new-class"]], "Add a new Object Property / Data Property": [[39, "add-a-new-object-property-data-property"]], "Add an Assertion Axiom": [[39, "add-an-assertion-axiom"]], "Atomic Classes": [[43, "atomic-classes"]], "Attributes": [[2, "attributes"], [8, "attributes"], [9, "attributes"], [14, "attributes"], [21, "attributes"], [23, "attributes"], [26, "attributes"], [28, "attributes"], [29, "attributes"], [30, "attributes"], [33, "attributes"], [35, "attributes"]], "Basic Usage": [[43, null]], "Capabilities": [[42, "capabilities"]], "Class Reasoning": [[41, "class-reasoning"]], "Classes": [[0, "classes"], [1, "classes"], [2, "classes"], [3, "classes"], [4, "classes"], [5, "classes"], [6, "classes"], [7, "classes"], [8, "classes"], [9, "classes"], [11, "classes"], [12, "classes"], [13, "classes"], [14, "classes"], [15, "classes"], [16, "classes"], [17, "classes"], [18, "classes"], [19, "classes"], [20, "classes"], [21, "classes"], [22, "classes"], [23, "classes"], [24, "classes"], [25, "classes"], [26, "classes"], [27, "classes"], [28, "classes"], [30, "classes"], [33, "classes"], [34, "classes"]], "Complex class expressions": [[43, "complex-class-expressions"]], "Concrete Example": [[42, "concrete-example"]], "Contents:": [[36, null]], "Contribution": [[37, "contribution"]], "Convert to SPARQL, DL or Manchester syntax": [[43, "convert-to-sparql-dl-or-manchester-syntax"]], "Coverage Report": [[37, "coverage-report"]], "Example:": [[26, "example"]], "Examples": [[40, "examples"]], "Find Instances": [[41, "find-instances"]], "Functions": [[9, "functions"], [11, "functions"], [27, "functions"], [28, "functions"], [29, "functions"], [30, "functions"], [31, "functions"], [32, "functions"], [33, "functions"], [35, "functions"]], "Further Resources": [[37, null]], "How to install?": [[38, "how-to-install"]], "Isolated World": [[42, "isolated-world"]], "Loading an Ontology": [[39, "loading-an-ontology"]], "Modifying an Ontology": [[39, "modifying-an-ontology"]], "Modifying an isolated ontology": [[42, "modifying-an-isolated-ontology"]], "Module Contents": [[0, "module-contents"], [1, "module-contents"], [2, "module-contents"], [4, "module-contents"], [6, "module-contents"], [7, "module-contents"], [8, "module-contents"], [9, "module-contents"], [12, "module-contents"], [13, "module-contents"], [14, "module-contents"], [15, "module-contents"], [16, "module-contents"], [17, "module-contents"], [18, "module-contents"], [19, "module-contents"], [20, "module-contents"], [21, "module-contents"], [22, "module-contents"], [23, "module-contents"], [24, "module-contents"], [25, "module-contents"], [26, "module-contents"], [27, "module-contents"], [28, "module-contents"], [29, "module-contents"], [30, "module-contents"], [31, "module-contents"], [32, "module-contents"], [33, "module-contents"], [34, "module-contents"], [35, "module-contents"]], "More Inside the Project": [[37, "more-inside-the-project"]], "Notes": [[40, "notes"]], "Notes:": [[26, "notes"]], "Object Properties and Data Properties Reasoning": [[41, "object-properties-and-data-properties-reasoning"]], "Object Property": [[43, "object-property"]], "Ontologies": [[39, null]], "Owlapi Synchronization": [[40, null]], "Package Contents": [[3, "package-contents"], [5, "package-contents"], [11, "package-contents"]], "Questions": [[37, "questions"]], "Reasoners": [[41, null]], "Reasoning Details": [[42, null]], "Remove an Axiom": [[39, "remove-an-axiom"]], "Save an Ontology": [[39, "save-an-ontology"]], "Submodules": [[3, "submodules"], [5, "submodules"], [11, "submodules"]], "Sync Reasoner": [[42, "sync-reasoner"]], "Usage of the Reasoner": [[41, "usage-of-the-reasoner"]], "Welcome to OWLAPY!": [[36, null]], "What does owlapy have to offer?": [[38, "what-does-owlapy-have-to-offer"]], "What is owlapy?": [[38, "what-is-owlapy"]], "Worlds": [[39, "worlds"]], "owlapy": [[11, null]], "owlapy.abstracts": [[3, null]], "owlapy.abstracts.abstract_owl_ontology": [[0, null]], "owlapy.abstracts.abstract_owl_ontology_manager": [[1, null]], "owlapy.abstracts.abstract_owl_reasoner": [[2, null]], "owlapy.class_expression": [[5, null]], "owlapy.class_expression.class_expression": [[4, null]], "owlapy.class_expression.nary_boolean_expression": [[6, null]], "owlapy.class_expression.owl_class": [[7, null]], "owlapy.class_expression.restriction": [[8, null]], "owlapy.converter": [[9, null]], "owlapy.entities": [[10, null]], "owlapy.iri": [[12, null]], "owlapy.meta_classes": [[13, null]], "owlapy.namespaces": [[14, null]], "owlapy.owl_annotation": [[15, null]], "owlapy.owl_axiom": [[16, null]], "owlapy.owl_data_ranges": [[17, null]], "owlapy.owl_datatype": [[18, null]], "owlapy.owl_hierarchy": [[19, null]], "owlapy.owl_individual": [[20, null]], "owlapy.owl_literal": [[21, null]], "owlapy.owl_object": [[22, null]], "owlapy.owl_ontology": [[23, null]], "owlapy.owl_ontology_manager": [[24, null]], "owlapy.owl_property": [[25, null]], "owlapy.owl_reasoner": [[26, null]], "owlapy.owlapi_mapper": [[27, null]], "owlapy.parser": [[28, null]], "owlapy.providers": [[29, null]], "owlapy.render": [[30, null]], "owlapy.static_funcs": [[31, null]], "owlapy.util_owl_static_funcs": [[32, null]], "owlapy.utils": [[33, null]], "owlapy.vocab": [[34, null]], "run": [[35, null]], "\u201cSync\u201d Classes": [[40, "sync-classes"]]}, "docnames": ["autoapi/owlapy/abstracts/abstract_owl_ontology/index", "autoapi/owlapy/abstracts/abstract_owl_ontology_manager/index", "autoapi/owlapy/abstracts/abstract_owl_reasoner/index", "autoapi/owlapy/abstracts/index", "autoapi/owlapy/class_expression/class_expression/index", "autoapi/owlapy/class_expression/index", "autoapi/owlapy/class_expression/nary_boolean_expression/index", "autoapi/owlapy/class_expression/owl_class/index", "autoapi/owlapy/class_expression/restriction/index", "autoapi/owlapy/converter/index", "autoapi/owlapy/entities/index", "autoapi/owlapy/index", "autoapi/owlapy/iri/index", "autoapi/owlapy/meta_classes/index", "autoapi/owlapy/namespaces/index", "autoapi/owlapy/owl_annotation/index", "autoapi/owlapy/owl_axiom/index", "autoapi/owlapy/owl_data_ranges/index", "autoapi/owlapy/owl_datatype/index", "autoapi/owlapy/owl_hierarchy/index", "autoapi/owlapy/owl_individual/index", "autoapi/owlapy/owl_literal/index", "autoapi/owlapy/owl_object/index", "autoapi/owlapy/owl_ontology/index", "autoapi/owlapy/owl_ontology_manager/index", "autoapi/owlapy/owl_property/index", "autoapi/owlapy/owl_reasoner/index", "autoapi/owlapy/owlapi_mapper/index", "autoapi/owlapy/parser/index", "autoapi/owlapy/providers/index", "autoapi/owlapy/render/index", "autoapi/owlapy/static_funcs/index", "autoapi/owlapy/util_owl_static_funcs/index", "autoapi/owlapy/utils/index", "autoapi/owlapy/vocab/index", "autoapi/run/index", "index", "usage/further_resources", "usage/main", "usage/ontologies", "usage/owlapi_synchronization", "usage/reasoner", "usage/reasoning_details", "usage/usage_examples"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1}, "filenames": ["autoapi/owlapy/abstracts/abstract_owl_ontology/index.rst", "autoapi/owlapy/abstracts/abstract_owl_ontology_manager/index.rst", "autoapi/owlapy/abstracts/abstract_owl_reasoner/index.rst", "autoapi/owlapy/abstracts/index.rst", "autoapi/owlapy/class_expression/class_expression/index.rst", "autoapi/owlapy/class_expression/index.rst", "autoapi/owlapy/class_expression/nary_boolean_expression/index.rst", "autoapi/owlapy/class_expression/owl_class/index.rst", "autoapi/owlapy/class_expression/restriction/index.rst", "autoapi/owlapy/converter/index.rst", "autoapi/owlapy/entities/index.rst", "autoapi/owlapy/index.rst", "autoapi/owlapy/iri/index.rst", "autoapi/owlapy/meta_classes/index.rst", "autoapi/owlapy/namespaces/index.rst", "autoapi/owlapy/owl_annotation/index.rst", "autoapi/owlapy/owl_axiom/index.rst", "autoapi/owlapy/owl_data_ranges/index.rst", "autoapi/owlapy/owl_datatype/index.rst", "autoapi/owlapy/owl_hierarchy/index.rst", "autoapi/owlapy/owl_individual/index.rst", "autoapi/owlapy/owl_literal/index.rst", "autoapi/owlapy/owl_object/index.rst", "autoapi/owlapy/owl_ontology/index.rst", "autoapi/owlapy/owl_ontology_manager/index.rst", "autoapi/owlapy/owl_property/index.rst", "autoapi/owlapy/owl_reasoner/index.rst", "autoapi/owlapy/owlapi_mapper/index.rst", "autoapi/owlapy/parser/index.rst", "autoapi/owlapy/providers/index.rst", "autoapi/owlapy/render/index.rst", "autoapi/owlapy/static_funcs/index.rst", "autoapi/owlapy/util_owl_static_funcs/index.rst", "autoapi/owlapy/utils/index.rst", "autoapi/owlapy/vocab/index.rst", "autoapi/run/index.rst", "index.rst", "usage/further_resources.md", "usage/main.md", "usage/ontologies.md", "usage/owlapi_synchronization.md", "usage/reasoner.md", "usage/reasoning_details.md", "usage/usage_examples.md"], "indexentries": {"__contains__() (owlapy.converter.variablesmapping method)": [[9, "owlapy.converter.VariablesMapping.__contains__", false]], "__contains__() (owlapy.owl_hierarchy.abstracthierarchy method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.__contains__", false]], "__contains__() (owlapy.utils.lrucache method)": [[33, "owlapy.utils.LRUCache.__contains__", false]], "__eq__() (owlapy.class_expression.class_expression.owlobjectcomplementof method)": [[4, "owlapy.class_expression.class_expression.OWLObjectComplementOf.__eq__", false]], "__eq__() (owlapy.class_expression.nary_boolean_expression.owlnarybooleanclassexpression method)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression.__eq__", false]], "__eq__() (owlapy.class_expression.owldataallvaluesfrom method)": [[5, "owlapy.class_expression.OWLDataAllValuesFrom.__eq__", false]], "__eq__() (owlapy.class_expression.owldatacardinalityrestriction method)": [[5, "owlapy.class_expression.OWLDataCardinalityRestriction.__eq__", false]], "__eq__() (owlapy.class_expression.owldatahasvalue method)": [[5, "owlapy.class_expression.OWLDataHasValue.__eq__", false]], "__eq__() (owlapy.class_expression.owldataoneof method)": [[5, "owlapy.class_expression.OWLDataOneOf.__eq__", false]], "__eq__() (owlapy.class_expression.owldatasomevaluesfrom method)": [[5, "owlapy.class_expression.OWLDataSomeValuesFrom.__eq__", false]], "__eq__() (owlapy.class_expression.owldatatyperestriction method)": [[5, "owlapy.class_expression.OWLDatatypeRestriction.__eq__", false]], "__eq__() (owlapy.class_expression.owlfacetrestriction method)": [[5, "owlapy.class_expression.OWLFacetRestriction.__eq__", false]], "__eq__() (owlapy.class_expression.owlhasvaluerestriction method)": [[5, "owlapy.class_expression.OWLHasValueRestriction.__eq__", false]], "__eq__() (owlapy.class_expression.owlnarybooleanclassexpression method)": [[5, "owlapy.class_expression.OWLNaryBooleanClassExpression.__eq__", false]], "__eq__() (owlapy.class_expression.owlobjectallvaluesfrom method)": [[5, "owlapy.class_expression.OWLObjectAllValuesFrom.__eq__", false]], "__eq__() (owlapy.class_expression.owlobjectcardinalityrestriction method)": [[5, "owlapy.class_expression.OWLObjectCardinalityRestriction.__eq__", false]], "__eq__() (owlapy.class_expression.owlobjectcomplementof method)": [[5, "owlapy.class_expression.OWLObjectComplementOf.__eq__", false]], "__eq__() (owlapy.class_expression.owlobjecthasself method)": [[5, "owlapy.class_expression.OWLObjectHasSelf.__eq__", false]], "__eq__() (owlapy.class_expression.owlobjectoneof method)": [[5, "owlapy.class_expression.OWLObjectOneOf.__eq__", false]], "__eq__() (owlapy.class_expression.owlobjectsomevaluesfrom method)": [[5, "owlapy.class_expression.OWLObjectSomeValuesFrom.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owldataallvaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLDataAllValuesFrom.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owldatacardinalityrestriction method)": [[8, "owlapy.class_expression.restriction.OWLDataCardinalityRestriction.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owldatahasvalue method)": [[8, "owlapy.class_expression.restriction.OWLDataHasValue.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owldataoneof method)": [[8, "owlapy.class_expression.restriction.OWLDataOneOf.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owldatasomevaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLDataSomeValuesFrom.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owldatatyperestriction method)": [[8, "owlapy.class_expression.restriction.OWLDatatypeRestriction.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owlfacetrestriction method)": [[8, "owlapy.class_expression.restriction.OWLFacetRestriction.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owlhasvaluerestriction method)": [[8, "owlapy.class_expression.restriction.OWLHasValueRestriction.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owlobjectallvaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLObjectAllValuesFrom.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owlobjectcardinalityrestriction method)": [[8, "owlapy.class_expression.restriction.OWLObjectCardinalityRestriction.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owlobjecthasself method)": [[8, "owlapy.class_expression.restriction.OWLObjectHasSelf.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owlobjectoneof method)": [[8, "owlapy.class_expression.restriction.OWLObjectOneOf.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owlobjectsomevaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLObjectSomeValuesFrom.__eq__", false]], "__eq__() (owlapy.iri.iri method)": [[12, "owlapy.iri.IRI.__eq__", false]], "__eq__() (owlapy.namespaces.namespaces method)": [[14, "owlapy.namespaces.Namespaces.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlannotation method)": [[16, "owlapy.owl_axiom.OWLAnnotation.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLClassAssertionAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owldatapropertycharacteristicaxiom method)": [[16, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[16, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owldeclarationaxiom method)": [[16, "owlapy.owl_axiom.OWLDeclarationAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryClassAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom method)": [[16, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubClassOfAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLSubPropertyAxiom.__eq__", false]], "__eq__() (owlapy.owl_data_ranges.owldatacomplementof method)": [[17, "owlapy.owl_data_ranges.OWLDataComplementOf.__eq__", false]], "__eq__() (owlapy.owl_data_ranges.owlnarydatarange method)": [[17, "owlapy.owl_data_ranges.OWLNaryDataRange.__eq__", false]], "__eq__() (owlapy.owl_object.owlnamedobject method)": [[22, "owlapy.owl_object.OWLNamedObject.__eq__", false]], "__eq__() (owlapy.owl_object.owlobject method)": [[22, "owlapy.owl_object.OWLObject.__eq__", false]], "__eq__() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.__eq__", false]], "__eq__() (owlapy.owl_ontology.owlontologyid method)": [[23, "owlapy.owl_ontology.OWLOntologyID.__eq__", false]], "__eq__() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.__eq__", false]], "__eq__() (owlapy.owl_property.owlobjectinverseof method)": [[25, "owlapy.owl_property.OWLObjectInverseOf.__eq__", false]], "__eq__() (owlapy.utils.hasindex method)": [[33, "owlapy.utils.HasIndex.__eq__", false]], "__eq__() (owlapy.utils.orderedowlobject method)": [[33, "owlapy.utils.OrderedOWLObject.__eq__", false]], "__getitem__() (owlapy.converter.variablesmapping method)": [[9, "owlapy.converter.VariablesMapping.__getitem__", false]], "__getitem__() (owlapy.utils.lrucache method)": [[33, "owlapy.utils.LRUCache.__getitem__", false]], "__hash__() (owlapy.class_expression.class_expression.owlobjectcomplementof method)": [[4, "owlapy.class_expression.class_expression.OWLObjectComplementOf.__hash__", false]], "__hash__() (owlapy.class_expression.nary_boolean_expression.owlnarybooleanclassexpression method)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression.__hash__", false]], "__hash__() (owlapy.class_expression.owldataallvaluesfrom method)": [[5, "owlapy.class_expression.OWLDataAllValuesFrom.__hash__", false]], "__hash__() (owlapy.class_expression.owldatacardinalityrestriction method)": [[5, "owlapy.class_expression.OWLDataCardinalityRestriction.__hash__", false]], "__hash__() (owlapy.class_expression.owldatahasvalue method)": [[5, "owlapy.class_expression.OWLDataHasValue.__hash__", false]], "__hash__() (owlapy.class_expression.owldataoneof method)": [[5, "owlapy.class_expression.OWLDataOneOf.__hash__", false]], "__hash__() (owlapy.class_expression.owldatasomevaluesfrom method)": [[5, "owlapy.class_expression.OWLDataSomeValuesFrom.__hash__", false]], "__hash__() (owlapy.class_expression.owldatatyperestriction method)": [[5, "owlapy.class_expression.OWLDatatypeRestriction.__hash__", false]], "__hash__() (owlapy.class_expression.owlfacetrestriction method)": [[5, "owlapy.class_expression.OWLFacetRestriction.__hash__", false]], "__hash__() (owlapy.class_expression.owlhasvaluerestriction method)": [[5, "owlapy.class_expression.OWLHasValueRestriction.__hash__", false]], "__hash__() (owlapy.class_expression.owlnarybooleanclassexpression method)": [[5, "owlapy.class_expression.OWLNaryBooleanClassExpression.__hash__", false]], "__hash__() (owlapy.class_expression.owlobjectallvaluesfrom method)": [[5, "owlapy.class_expression.OWLObjectAllValuesFrom.__hash__", false]], "__hash__() (owlapy.class_expression.owlobjectcardinalityrestriction method)": [[5, "owlapy.class_expression.OWLObjectCardinalityRestriction.__hash__", false]], "__hash__() (owlapy.class_expression.owlobjectcomplementof method)": [[5, "owlapy.class_expression.OWLObjectComplementOf.__hash__", false]], "__hash__() (owlapy.class_expression.owlobjecthasself method)": [[5, "owlapy.class_expression.OWLObjectHasSelf.__hash__", false]], "__hash__() (owlapy.class_expression.owlobjectoneof method)": [[5, "owlapy.class_expression.OWLObjectOneOf.__hash__", false]], "__hash__() (owlapy.class_expression.owlobjectsomevaluesfrom method)": [[5, "owlapy.class_expression.OWLObjectSomeValuesFrom.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owldataallvaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLDataAllValuesFrom.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owldatacardinalityrestriction method)": [[8, "owlapy.class_expression.restriction.OWLDataCardinalityRestriction.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owldatahasvalue method)": [[8, "owlapy.class_expression.restriction.OWLDataHasValue.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owldataoneof method)": [[8, "owlapy.class_expression.restriction.OWLDataOneOf.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owldatasomevaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLDataSomeValuesFrom.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owldatatyperestriction method)": [[8, "owlapy.class_expression.restriction.OWLDatatypeRestriction.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owlfacetrestriction method)": [[8, "owlapy.class_expression.restriction.OWLFacetRestriction.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owlhasvaluerestriction method)": [[8, "owlapy.class_expression.restriction.OWLHasValueRestriction.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owlobjectallvaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLObjectAllValuesFrom.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owlobjectcardinalityrestriction method)": [[8, "owlapy.class_expression.restriction.OWLObjectCardinalityRestriction.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owlobjecthasself method)": [[8, "owlapy.class_expression.restriction.OWLObjectHasSelf.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owlobjectoneof method)": [[8, "owlapy.class_expression.restriction.OWLObjectOneOf.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owlobjectsomevaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLObjectSomeValuesFrom.__hash__", false]], "__hash__() (owlapy.iri.iri method)": [[12, "owlapy.iri.IRI.__hash__", false]], "__hash__() (owlapy.namespaces.namespaces method)": [[14, "owlapy.namespaces.Namespaces.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlannotation method)": [[16, "owlapy.owl_axiom.OWLAnnotation.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLClassAssertionAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owldatapropertycharacteristicaxiom method)": [[16, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[16, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owldeclarationaxiom method)": [[16, "owlapy.owl_axiom.OWLDeclarationAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryClassAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom method)": [[16, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubClassOfAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLSubPropertyAxiom.__hash__", false]], "__hash__() (owlapy.owl_data_ranges.owldatacomplementof method)": [[17, "owlapy.owl_data_ranges.OWLDataComplementOf.__hash__", false]], "__hash__() (owlapy.owl_data_ranges.owlnarydatarange method)": [[17, "owlapy.owl_data_ranges.OWLNaryDataRange.__hash__", false]], "__hash__() (owlapy.owl_object.owlnamedobject method)": [[22, "owlapy.owl_object.OWLNamedObject.__hash__", false]], "__hash__() (owlapy.owl_object.owlobject method)": [[22, "owlapy.owl_object.OWLObject.__hash__", false]], "__hash__() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.__hash__", false]], "__hash__() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.__hash__", false]], "__hash__() (owlapy.owl_property.owlobjectinverseof method)": [[25, "owlapy.owl_property.OWLObjectInverseOf.__hash__", false]], "__iter__() (owlapy.utils.evaluateddescriptionset method)": [[33, "owlapy.utils.EvaluatedDescriptionSet.__iter__", false]], "__len__() (owlapy.owl_hierarchy.abstracthierarchy method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.__len__", false]], "__len__() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.__len__", false]], "__lt__() (owlapy.owl_object.owlnamedobject method)": [[22, "owlapy.owl_object.OWLNamedObject.__lt__", false]], "__lt__() (owlapy.utils.orderedowlobject method)": [[33, "owlapy.utils.OrderedOWLObject.__lt__", false]], "__repr__() (owlapy.class_expression.class_expression.owlobjectcomplementof method)": [[4, "owlapy.class_expression.class_expression.OWLObjectComplementOf.__repr__", false]], "__repr__() (owlapy.class_expression.nary_boolean_expression.owlnarybooleanclassexpression method)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression.__repr__", false]], "__repr__() (owlapy.class_expression.owldataallvaluesfrom method)": [[5, "owlapy.class_expression.OWLDataAllValuesFrom.__repr__", false]], "__repr__() (owlapy.class_expression.owldatacardinalityrestriction method)": [[5, "owlapy.class_expression.OWLDataCardinalityRestriction.__repr__", false]], "__repr__() (owlapy.class_expression.owldatahasvalue method)": [[5, "owlapy.class_expression.OWLDataHasValue.__repr__", false]], "__repr__() (owlapy.class_expression.owldataoneof method)": [[5, "owlapy.class_expression.OWLDataOneOf.__repr__", false]], "__repr__() (owlapy.class_expression.owldatasomevaluesfrom method)": [[5, "owlapy.class_expression.OWLDataSomeValuesFrom.__repr__", false]], "__repr__() (owlapy.class_expression.owldatatyperestriction method)": [[5, "owlapy.class_expression.OWLDatatypeRestriction.__repr__", false]], "__repr__() (owlapy.class_expression.owlfacetrestriction method)": [[5, "owlapy.class_expression.OWLFacetRestriction.__repr__", false]], "__repr__() (owlapy.class_expression.owlnarybooleanclassexpression method)": [[5, "owlapy.class_expression.OWLNaryBooleanClassExpression.__repr__", false]], "__repr__() (owlapy.class_expression.owlobjectallvaluesfrom method)": [[5, "owlapy.class_expression.OWLObjectAllValuesFrom.__repr__", false]], "__repr__() (owlapy.class_expression.owlobjectcardinalityrestriction method)": [[5, "owlapy.class_expression.OWLObjectCardinalityRestriction.__repr__", false]], "__repr__() (owlapy.class_expression.owlobjectcomplementof method)": [[5, "owlapy.class_expression.OWLObjectComplementOf.__repr__", false]], "__repr__() (owlapy.class_expression.owlobjecthasself method)": [[5, "owlapy.class_expression.OWLObjectHasSelf.__repr__", false]], "__repr__() (owlapy.class_expression.owlobjecthasvalue method)": [[5, "owlapy.class_expression.OWLObjectHasValue.__repr__", false]], "__repr__() (owlapy.class_expression.owlobjectoneof method)": [[5, "owlapy.class_expression.OWLObjectOneOf.__repr__", false]], "__repr__() (owlapy.class_expression.owlobjectsomevaluesfrom method)": [[5, "owlapy.class_expression.OWLObjectSomeValuesFrom.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owldataallvaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLDataAllValuesFrom.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owldatacardinalityrestriction method)": [[8, "owlapy.class_expression.restriction.OWLDataCardinalityRestriction.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owldatahasvalue method)": [[8, "owlapy.class_expression.restriction.OWLDataHasValue.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owldataoneof method)": [[8, "owlapy.class_expression.restriction.OWLDataOneOf.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owldatasomevaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLDataSomeValuesFrom.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owldatatyperestriction method)": [[8, "owlapy.class_expression.restriction.OWLDatatypeRestriction.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owlfacetrestriction method)": [[8, "owlapy.class_expression.restriction.OWLFacetRestriction.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owlobjectallvaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLObjectAllValuesFrom.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owlobjectcardinalityrestriction method)": [[8, "owlapy.class_expression.restriction.OWLObjectCardinalityRestriction.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owlobjecthasself method)": [[8, "owlapy.class_expression.restriction.OWLObjectHasSelf.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owlobjecthasvalue method)": [[8, "owlapy.class_expression.restriction.OWLObjectHasValue.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owlobjectoneof method)": [[8, "owlapy.class_expression.restriction.OWLObjectOneOf.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owlobjectsomevaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLObjectSomeValuesFrom.__repr__", false]], "__repr__() (owlapy.iri.iri method)": [[12, "owlapy.iri.IRI.__repr__", false]], "__repr__() (owlapy.namespaces.namespaces method)": [[14, "owlapy.namespaces.Namespaces.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlannotation method)": [[16, "owlapy.owl_axiom.OWLAnnotation.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLClassAssertionAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owldatapropertycharacteristicaxiom method)": [[16, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[16, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owldeclarationaxiom method)": [[16, "owlapy.owl_axiom.OWLDeclarationAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom method)": [[16, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryClassAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom method)": [[16, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubClassOfAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLSubPropertyAxiom.__repr__", false]], "__repr__() (owlapy.owl_data_ranges.owldatacomplementof method)": [[17, "owlapy.owl_data_ranges.OWLDataComplementOf.__repr__", false]], "__repr__() (owlapy.owl_data_ranges.owlnarydatarange method)": [[17, "owlapy.owl_data_ranges.OWLNaryDataRange.__repr__", false]], "__repr__() (owlapy.owl_object.owlnamedobject method)": [[22, "owlapy.owl_object.OWLNamedObject.__repr__", false]], "__repr__() (owlapy.owl_object.owlobject method)": [[22, "owlapy.owl_object.OWLObject.__repr__", false]], "__repr__() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.__repr__", false]], "__repr__() (owlapy.owl_ontology.owlontologyid method)": [[23, "owlapy.owl_ontology.OWLOntologyID.__repr__", false]], "__repr__() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.__repr__", false]], "__repr__() (owlapy.owl_property.owlobjectinverseof method)": [[25, "owlapy.owl_property.OWLObjectInverseOf.__repr__", false]], "__setitem__() (owlapy.utils.lrucache method)": [[33, "owlapy.utils.LRUCache.__setitem__", false]], "__slots__ (owlapy.abstracts.abstract_owl_ontology.abstractowlontology attribute)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.__slots__", false]], "__slots__ (owlapy.abstracts.abstract_owl_ontology_manager.abstractowlontologychange attribute)": [[1, "owlapy.abstracts.abstract_owl_ontology_manager.AbstractOWLOntologyChange.__slots__", false]], "__slots__ (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner attribute)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.__slots__", false]], "__slots__ (owlapy.abstracts.abstractowlontology attribute)": [[3, "owlapy.abstracts.AbstractOWLOntology.__slots__", false]], "__slots__ (owlapy.abstracts.abstractowlontologychange attribute)": [[3, "owlapy.abstracts.AbstractOWLOntologyChange.__slots__", false]], "__slots__ (owlapy.abstracts.abstractowlreasoner attribute)": [[3, "owlapy.abstracts.AbstractOWLReasoner.__slots__", false]], "__slots__ (owlapy.class_expression.class_expression.owlbooleanclassexpression attribute)": [[4, "owlapy.class_expression.class_expression.OWLBooleanClassExpression.__slots__", false]], "__slots__ (owlapy.class_expression.class_expression.owlclassexpression attribute)": [[4, "owlapy.class_expression.class_expression.OWLClassExpression.__slots__", false]], "__slots__ (owlapy.class_expression.class_expression.owlobjectcomplementof attribute)": [[4, "owlapy.class_expression.class_expression.OWLObjectComplementOf.__slots__", false]], "__slots__ (owlapy.class_expression.nary_boolean_expression.owlnarybooleanclassexpression attribute)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression.__slots__", false]], "__slots__ (owlapy.class_expression.nary_boolean_expression.owlobjectintersectionof attribute)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLObjectIntersectionOf.__slots__", false]], "__slots__ (owlapy.class_expression.nary_boolean_expression.owlobjectunionof attribute)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLObjectUnionOf.__slots__", false]], "__slots__ (owlapy.class_expression.owl_class.owlclass attribute)": [[7, "owlapy.class_expression.owl_class.OWLClass.__slots__", false]], "__slots__ (owlapy.class_expression.owlbooleanclassexpression attribute)": [[5, "owlapy.class_expression.OWLBooleanClassExpression.__slots__", false]], "__slots__ (owlapy.class_expression.owlcardinalityrestriction attribute)": [[5, "owlapy.class_expression.OWLCardinalityRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.owlclass attribute)": [[5, "owlapy.class_expression.OWLClass.__slots__", false]], "__slots__ (owlapy.class_expression.owlclassexpression attribute)": [[5, "owlapy.class_expression.OWLClassExpression.__slots__", false]], "__slots__ (owlapy.class_expression.owldataallvaluesfrom attribute)": [[5, "owlapy.class_expression.OWLDataAllValuesFrom.__slots__", false]], "__slots__ (owlapy.class_expression.owldatacardinalityrestriction attribute)": [[5, "owlapy.class_expression.OWLDataCardinalityRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.owldataexactcardinality attribute)": [[5, "owlapy.class_expression.OWLDataExactCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.owldatahasvalue attribute)": [[5, "owlapy.class_expression.OWLDataHasValue.__slots__", false]], "__slots__ (owlapy.class_expression.owldatamaxcardinality attribute)": [[5, "owlapy.class_expression.OWLDataMaxCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.owldatamincardinality attribute)": [[5, "owlapy.class_expression.OWLDataMinCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.owldatarestriction attribute)": [[5, "owlapy.class_expression.OWLDataRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.owldatasomevaluesfrom attribute)": [[5, "owlapy.class_expression.OWLDataSomeValuesFrom.__slots__", false]], "__slots__ (owlapy.class_expression.owldatatyperestriction attribute)": [[5, "owlapy.class_expression.OWLDatatypeRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.owlfacetrestriction attribute)": [[5, "owlapy.class_expression.OWLFacetRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.owlhasvaluerestriction attribute)": [[5, "owlapy.class_expression.OWLHasValueRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.owlnarybooleanclassexpression attribute)": [[5, "owlapy.class_expression.OWLNaryBooleanClassExpression.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjectallvaluesfrom attribute)": [[5, "owlapy.class_expression.OWLObjectAllValuesFrom.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjectcardinalityrestriction attribute)": [[5, "owlapy.class_expression.OWLObjectCardinalityRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjectcomplementof attribute)": [[5, "owlapy.class_expression.OWLObjectComplementOf.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjectexactcardinality attribute)": [[5, "owlapy.class_expression.OWLObjectExactCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjecthasself attribute)": [[5, "owlapy.class_expression.OWLObjectHasSelf.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjecthasvalue attribute)": [[5, "owlapy.class_expression.OWLObjectHasValue.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjectintersectionof attribute)": [[5, "owlapy.class_expression.OWLObjectIntersectionOf.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjectmaxcardinality attribute)": [[5, "owlapy.class_expression.OWLObjectMaxCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjectmincardinality attribute)": [[5, "owlapy.class_expression.OWLObjectMinCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjectoneof attribute)": [[5, "owlapy.class_expression.OWLObjectOneOf.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjectrestriction attribute)": [[5, "owlapy.class_expression.OWLObjectRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjectsomevaluesfrom attribute)": [[5, "owlapy.class_expression.OWLObjectSomeValuesFrom.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjectunionof attribute)": [[5, "owlapy.class_expression.OWLObjectUnionOf.__slots__", false]], "__slots__ (owlapy.class_expression.owlquantifieddatarestriction attribute)": [[5, "owlapy.class_expression.OWLQuantifiedDataRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.owlquantifiedobjectrestriction attribute)": [[5, "owlapy.class_expression.OWLQuantifiedObjectRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.owlquantifiedrestriction attribute)": [[5, "owlapy.class_expression.OWLQuantifiedRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.owlrestriction attribute)": [[5, "owlapy.class_expression.OWLRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlcardinalityrestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLCardinalityRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owldataallvaluesfrom attribute)": [[8, "owlapy.class_expression.restriction.OWLDataAllValuesFrom.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owldatacardinalityrestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLDataCardinalityRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owldataexactcardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLDataExactCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owldatahasvalue attribute)": [[8, "owlapy.class_expression.restriction.OWLDataHasValue.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owldatamaxcardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLDataMaxCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owldatamincardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLDataMinCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owldatarestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLDataRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owldatasomevaluesfrom attribute)": [[8, "owlapy.class_expression.restriction.OWLDataSomeValuesFrom.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owldatatyperestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLDatatypeRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlfacetrestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLFacetRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlhasvaluerestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLHasValueRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlobjectallvaluesfrom attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectAllValuesFrom.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlobjectcardinalityrestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectCardinalityRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlobjectexactcardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectExactCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlobjecthasself attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectHasSelf.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlobjecthasvalue attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectHasValue.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlobjectmaxcardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectMaxCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlobjectmincardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectMinCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlobjectoneof attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectOneOf.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlobjectrestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlobjectsomevaluesfrom attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectSomeValuesFrom.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlquantifieddatarestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLQuantifiedDataRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlquantifiedobjectrestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLQuantifiedObjectRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlquantifiedrestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLQuantifiedRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlrestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLRestriction.__slots__", false]], "__slots__ (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.__slots__", false]], "__slots__ (owlapy.converter.variablesmapping attribute)": [[9, "owlapy.converter.VariablesMapping.__slots__", false]], "__slots__ (owlapy.iri.iri attribute)": [[12, "owlapy.iri.IRI.__slots__", false]], "__slots__ (owlapy.meta_classes.hascardinality attribute)": [[13, "owlapy.meta_classes.HasCardinality.__slots__", false]], "__slots__ (owlapy.meta_classes.hasfiller attribute)": [[13, "owlapy.meta_classes.HasFiller.__slots__", false]], "__slots__ (owlapy.meta_classes.hasiri attribute)": [[13, "owlapy.meta_classes.HasIRI.__slots__", false]], "__slots__ (owlapy.meta_classes.hasoperands attribute)": [[13, "owlapy.meta_classes.HasOperands.__slots__", false]], "__slots__ (owlapy.namespaces.namespaces attribute)": [[14, "owlapy.namespaces.Namespaces.__slots__", false]], "__slots__ (owlapy.ontologymanager attribute)": [[11, "owlapy.OntologyManager.__slots__", false]], "__slots__ (owlapy.owl_annotation.owlannotationobject attribute)": [[15, "owlapy.owl_annotation.OWLAnnotationObject.__slots__", false]], "__slots__ (owlapy.owl_annotation.owlannotationsubject attribute)": [[15, "owlapy.owl_annotation.OWLAnnotationSubject.__slots__", false]], "__slots__ (owlapy.owl_annotation.owlannotationvalue attribute)": [[15, "owlapy.owl_annotation.OWLAnnotationValue.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlannotation attribute)": [[16, "owlapy.owl_axiom.OWLAnnotation.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlannotationassertionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlannotationaxiom attribute)": [[16, "owlapy.owl_axiom.OWLAnnotationAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlannotationproperty attribute)": [[16, "owlapy.owl_axiom.OWLAnnotationProperty.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlannotationpropertydomainaxiom attribute)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlannotationpropertyrangeaxiom attribute)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlasymmetricobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLAsymmetricObjectPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlaxiom attribute)": [[16, "owlapy.owl_axiom.OWLAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlclassassertionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLClassAssertionAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlclassaxiom attribute)": [[16, "owlapy.owl_axiom.OWLClassAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldatapropertyassertionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDataPropertyAssertionAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldatapropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDataPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldatapropertycharacteristicaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldatapropertydomainaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDataPropertyDomainAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldatapropertyrangeaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDataPropertyRangeAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldatatypedefinitionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldeclarationaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDeclarationAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldifferentindividualsaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDifferentIndividualsAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldisjointclassesaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDisjointClassesAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldisjointdatapropertiesaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDisjointDataPropertiesAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldisjointobjectpropertiesaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDisjointObjectPropertiesAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldisjointunionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlequivalentclassesaxiom attribute)": [[16, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlequivalentdatapropertiesaxiom attribute)": [[16, "owlapy.owl_axiom.OWLEquivalentDataPropertiesAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlequivalentobjectpropertiesaxiom attribute)": [[16, "owlapy.owl_axiom.OWLEquivalentObjectPropertiesAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlfunctionaldatapropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLFunctionalDataPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlfunctionalobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLFunctionalObjectPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlhaskeyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlindividualaxiom attribute)": [[16, "owlapy.owl_axiom.OWLIndividualAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlinversefunctionalobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLInverseFunctionalObjectPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom attribute)": [[16, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlirreflexiveobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLIrreflexiveObjectPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owllogicalaxiom attribute)": [[16, "owlapy.owl_axiom.OWLLogicalAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlnaryaxiom attribute)": [[16, "owlapy.owl_axiom.OWLNaryAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlnaryclassaxiom attribute)": [[16, "owlapy.owl_axiom.OWLNaryClassAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlnaryindividualaxiom attribute)": [[16, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlnarypropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlnegativedatapropertyassertionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLNegativeDataPropertyAssertionAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlnegativeobjectpropertyassertionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLNegativeObjectPropertyAssertionAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlobjectpropertyassertionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLObjectPropertyAssertionAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLObjectPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom attribute)": [[16, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlobjectpropertydomainaxiom attribute)": [[16, "owlapy.owl_axiom.OWLObjectPropertyDomainAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlobjectpropertyrangeaxiom attribute)": [[16, "owlapy.owl_axiom.OWLObjectPropertyRangeAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlpropertyassertionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlpropertydomainaxiom attribute)": [[16, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlpropertyrangeaxiom attribute)": [[16, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlreflexiveobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLReflexiveObjectPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlsameindividualaxiom attribute)": [[16, "owlapy.owl_axiom.OWLSameIndividualAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlsubannotationpropertyofaxiom attribute)": [[16, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlsubclassofaxiom attribute)": [[16, "owlapy.owl_axiom.OWLSubClassOfAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlsubdatapropertyofaxiom attribute)": [[16, "owlapy.owl_axiom.OWLSubDataPropertyOfAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlsubobjectpropertyofaxiom attribute)": [[16, "owlapy.owl_axiom.OWLSubObjectPropertyOfAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlsubpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLSubPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlsymmetricobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLSymmetricObjectPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owltransitiveobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLTransitiveObjectPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlunarypropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLUnaryPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_data_ranges.owldataintersectionof attribute)": [[17, "owlapy.owl_data_ranges.OWLDataIntersectionOf.__slots__", false]], "__slots__ (owlapy.owl_data_ranges.owldataunionof attribute)": [[17, "owlapy.owl_data_ranges.OWLDataUnionOf.__slots__", false]], "__slots__ (owlapy.owl_data_ranges.owlnarydatarange attribute)": [[17, "owlapy.owl_data_ranges.OWLNaryDataRange.__slots__", false]], "__slots__ (owlapy.owl_datatype.owldatatype attribute)": [[18, "owlapy.owl_datatype.OWLDatatype.__slots__", false]], "__slots__ (owlapy.owl_hierarchy.abstracthierarchy attribute)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.__slots__", false]], "__slots__ (owlapy.owl_individual.owlindividual attribute)": [[20, "owlapy.owl_individual.OWLIndividual.__slots__", false]], "__slots__ (owlapy.owl_individual.owlnamedindividual attribute)": [[20, "owlapy.owl_individual.OWLNamedIndividual.__slots__", false]], "__slots__ (owlapy.owl_literal.owlliteral attribute)": [[21, "owlapy.owl_literal.OWLLiteral.__slots__", false]], "__slots__ (owlapy.owl_object.owlentity attribute)": [[22, "owlapy.owl_object.OWLEntity.__slots__", false]], "__slots__ (owlapy.owl_object.owlnamedobject attribute)": [[22, "owlapy.owl_object.OWLNamedObject.__slots__", false]], "__slots__ (owlapy.owl_object.owlobject attribute)": [[22, "owlapy.owl_object.OWLObject.__slots__", false]], "__slots__ (owlapy.owl_ontology.fromowlready2 attribute)": [[23, "owlapy.owl_ontology.FromOwlready2.__slots__", false]], "__slots__ (owlapy.owl_ontology.ontology attribute)": [[23, "owlapy.owl_ontology.Ontology.__slots__", false]], "__slots__ (owlapy.owl_ontology.owlontologyid attribute)": [[23, "owlapy.owl_ontology.OWLOntologyID.__slots__", false]], "__slots__ (owlapy.owl_ontology.toowlready2 attribute)": [[23, "owlapy.owl_ontology.ToOwlready2.__slots__", false]], "__slots__ (owlapy.owl_ontology_manager.addimport attribute)": [[24, "owlapy.owl_ontology_manager.AddImport.__slots__", false]], "__slots__ (owlapy.owl_ontology_manager.ontologymanager attribute)": [[24, "owlapy.owl_ontology_manager.OntologyManager.__slots__", false]], "__slots__ (owlapy.owl_ontology_manager.owlimportsdeclaration attribute)": [[24, "owlapy.owl_ontology_manager.OWLImportsDeclaration.__slots__", false]], "__slots__ (owlapy.owl_property.owldataproperty attribute)": [[25, "owlapy.owl_property.OWLDataProperty.__slots__", false]], "__slots__ (owlapy.owl_property.owldatapropertyexpression attribute)": [[25, "owlapy.owl_property.OWLDataPropertyExpression.__slots__", false]], "__slots__ (owlapy.owl_property.owlobjectinverseof attribute)": [[25, "owlapy.owl_property.OWLObjectInverseOf.__slots__", false]], "__slots__ (owlapy.owl_property.owlobjectproperty attribute)": [[25, "owlapy.owl_property.OWLObjectProperty.__slots__", false]], "__slots__ (owlapy.owl_property.owlobjectpropertyexpression attribute)": [[25, "owlapy.owl_property.OWLObjectPropertyExpression.__slots__", false]], "__slots__ (owlapy.owl_property.owlproperty attribute)": [[25, "owlapy.owl_property.OWLProperty.__slots__", false]], "__slots__ (owlapy.owl_property.owlpropertyexpression attribute)": [[25, "owlapy.owl_property.OWLPropertyExpression.__slots__", false]], "__slots__ (owlapy.owl_reasoner.structuralreasoner attribute)": [[26, "owlapy.owl_reasoner.StructuralReasoner.__slots__", false]], "__slots__ (owlapy.render.dlsyntaxobjectrenderer attribute)": [[30, "owlapy.render.DLSyntaxObjectRenderer.__slots__", false]], "__slots__ (owlapy.render.manchesterowlsyntaxowlobjectrenderer attribute)": [[30, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer.__slots__", false]], "__slots__ (owlapy.utils.evaluateddescriptionset attribute)": [[33, "owlapy.utils.EvaluatedDescriptionSet.__slots__", false]], "__slots__ (owlapy.utils.orderedowlobject attribute)": [[33, "owlapy.utils.OrderedOWLObject.__slots__", false]], "__slots__ (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.__slots__", false]], "abox_axioms_between_individuals() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.abox_axioms_between_individuals", false]], "abox_axioms_between_individuals_and_classes() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.abox_axioms_between_individuals_and_classes", false]], "abstracthierarchy (class in owlapy.owl_hierarchy)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy", false]], "abstractowlontology (class in owlapy.abstracts)": [[3, "owlapy.abstracts.AbstractOWLOntology", false]], "abstractowlontology (class in owlapy.abstracts.abstract_owl_ontology)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology", false]], "abstractowlontologychange (class in owlapy.abstracts)": [[3, "owlapy.abstracts.AbstractOWLOntologyChange", false]], "abstractowlontologychange (class in owlapy.abstracts.abstract_owl_ontology_manager)": [[1, "owlapy.abstracts.abstract_owl_ontology_manager.AbstractOWLOntologyChange", false]], "abstractowlontologymanager (class in owlapy.abstracts)": [[3, "owlapy.abstracts.AbstractOWLOntologyManager", false]], "abstractowlontologymanager (class in owlapy.abstracts.abstract_owl_ontology_manager)": [[1, "owlapy.abstracts.abstract_owl_ontology_manager.AbstractOWLOntologyManager", false]], "abstractowlreasoner (class in owlapy.abstracts)": [[3, "owlapy.abstracts.AbstractOWLReasoner", false]], "abstractowlreasoner (class in owlapy.abstracts.abstract_owl_reasoner)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner", false]], "add_axiom() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.add_axiom", false]], "add_axiom() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.add_axiom", false]], "add_axiom() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.add_axiom", false]], "add_axiom() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.add_axiom", false]], "addimport (class in owlapy.owl_ontology_manager)": [[24, "owlapy.owl_ontology_manager.AddImport", false]], "all_data_property_values() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.all_data_property_values", false]], "all_data_property_values() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.all_data_property_values", false]], "all_data_property_values() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.all_data_property_values", false]], "annotations() (owlapy.owl_axiom.owlaxiom method)": [[16, "owlapy.owl_axiom.OWLAxiom.annotations", false]], "append() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.append", false]], "append_triple() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.append_triple", false]], "apply_change() (owlapy.abstracts.abstract_owl_ontology_manager.abstractowlontologymanager method)": [[1, "owlapy.abstracts.abstract_owl_ontology_manager.AbstractOWLOntologyManager.apply_change", false]], "apply_change() (owlapy.abstracts.abstractowlontologymanager method)": [[3, "owlapy.abstracts.AbstractOWLOntologyManager.apply_change", false]], "apply_change() (owlapy.ontologymanager method)": [[11, "owlapy.OntologyManager.apply_change", false]], "apply_change() (owlapy.owl_ontology_manager.ontologymanager method)": [[24, "owlapy.owl_ontology_manager.OntologyManager.apply_change", false]], "apply_change() (owlapy.owl_ontology_manager.syncontologymanager method)": [[24, "owlapy.owl_ontology_manager.SyncOntologyManager.apply_change", false]], "as_anonymous_individual() (owlapy.owl_annotation.owlannotationobject method)": [[15, "owlapy.owl_annotation.OWLAnnotationObject.as_anonymous_individual", false]], "as_confusion_matrix_query() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.as_confusion_matrix_query", false]], "as_index() (in module owlapy.utils)": [[33, "owlapy.utils.as_index", false]], "as_intersection_of_min_max() (owlapy.class_expression.owldataexactcardinality method)": [[5, "owlapy.class_expression.OWLDataExactCardinality.as_intersection_of_min_max", false]], "as_intersection_of_min_max() (owlapy.class_expression.owlobjectexactcardinality method)": [[5, "owlapy.class_expression.OWLObjectExactCardinality.as_intersection_of_min_max", false]], "as_intersection_of_min_max() (owlapy.class_expression.restriction.owldataexactcardinality method)": [[8, "owlapy.class_expression.restriction.OWLDataExactCardinality.as_intersection_of_min_max", false]], "as_intersection_of_min_max() (owlapy.class_expression.restriction.owlobjectexactcardinality method)": [[8, "owlapy.class_expression.restriction.OWLObjectExactCardinality.as_intersection_of_min_max", false]], "as_iri() (owlapy.iri.iri method)": [[12, "owlapy.iri.IRI.as_iri", false]], "as_iri() (owlapy.owl_annotation.owlannotationobject method)": [[15, "owlapy.owl_annotation.OWLAnnotationObject.as_iri", false]], "as_literal() (owlapy.owl_annotation.owlannotationvalue method)": [[15, "owlapy.owl_annotation.OWLAnnotationValue.as_literal", false]], "as_literal() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.as_literal", false]], "as_object_union_of() (owlapy.class_expression.owlobjectoneof method)": [[5, "owlapy.class_expression.OWLObjectOneOf.as_object_union_of", false]], "as_object_union_of() (owlapy.class_expression.restriction.owlobjectoneof method)": [[8, "owlapy.class_expression.restriction.OWLObjectOneOf.as_object_union_of", false]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnaryaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryAxiom.as_pairwise_axioms", false]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryClassAxiom.as_pairwise_axioms", false]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryIndividualAxiom.as_pairwise_axioms", false]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryPropertyAxiom.as_pairwise_axioms", false]], "as_query() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.as_query", false]], "as_some_values_from() (owlapy.class_expression.owldatahasvalue method)": [[5, "owlapy.class_expression.OWLDataHasValue.as_some_values_from", false]], "as_some_values_from() (owlapy.class_expression.owlobjecthasvalue method)": [[5, "owlapy.class_expression.OWLObjectHasValue.as_some_values_from", false]], "as_some_values_from() (owlapy.class_expression.restriction.owldatahasvalue method)": [[8, "owlapy.class_expression.restriction.OWLDataHasValue.as_some_values_from", false]], "as_some_values_from() (owlapy.class_expression.restriction.owlobjecthasvalue method)": [[8, "owlapy.class_expression.restriction.OWLObjectHasValue.as_some_values_from", false]], "as_str() (owlapy.iri.iri method)": [[12, "owlapy.iri.IRI.as_str", false]], "best() (owlapy.utils.evaluateddescriptionset method)": [[33, "owlapy.utils.EvaluatedDescriptionSet.best", false]], "best_quality_value() (owlapy.utils.evaluateddescriptionset method)": [[33, "owlapy.utils.EvaluatedDescriptionSet.best_quality_value", false]], "boolean (owlapy.vocab.xsdvocabulary attribute)": [[34, "owlapy.vocab.XSDVocabulary.BOOLEAN", false]], "booleanowldatatype (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.BooleanOWLDatatype", false]], "cache (owlapy.utils.lrucache attribute)": [[33, "owlapy.utils.LRUCache.cache", false]], "cache_clear() (owlapy.utils.lrucache method)": [[33, "owlapy.utils.LRUCache.cache_clear", false]], "cache_get (owlapy.utils.lrucache attribute)": [[33, "owlapy.utils.LRUCache.cache_get", false]], "cache_info() (owlapy.utils.lrucache method)": [[33, "owlapy.utils.LRUCache.cache_info", false]], "cache_len (owlapy.utils.lrucache attribute)": [[33, "owlapy.utils.LRUCache.cache_len", false]], "ce (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.ce", false]], "children() (owlapy.owl_hierarchy.abstracthierarchy method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.children", false]], "class_cache (owlapy.owl_reasoner.structuralreasoner attribute)": [[26, "owlapy.owl_reasoner.StructuralReasoner.class_cache", false]], "class_cnt (owlapy.converter.variablesmapping attribute)": [[9, "owlapy.converter.VariablesMapping.class_cnt", false]], "class_expressions() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryClassAxiom.class_expressions", false]], "class_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.class_length", false]], "classes_in_signature() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.classes_in_signature", false]], "classes_in_signature() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.classes_in_signature", false]], "classes_in_signature() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.classes_in_signature", false]], "classes_in_signature() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.classes_in_signature", false]], "classhierarchy (class in owlapy.owl_hierarchy)": [[19, "owlapy.owl_hierarchy.ClassHierarchy", false]], "clean() (owlapy.utils.evaluateddescriptionset method)": [[33, "owlapy.utils.EvaluatedDescriptionSet.clean", false]], "cnt (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.cnt", false]], "combine_nary_expressions() (in module owlapy.utils)": [[33, "owlapy.utils.combine_nary_expressions", false]], "concept_reducer() (in module owlapy.utils)": [[33, "owlapy.utils.concept_reducer", false]], "concept_reducer_properties() (in module owlapy.utils)": [[33, "owlapy.utils.concept_reducer_properties", false]], "conceptoperandsorter (class in owlapy.utils)": [[33, "owlapy.utils.ConceptOperandSorter", false]], "contains_named_equivalent_class() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[16, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.contains_named_equivalent_class", false]], "contains_owl_nothing() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[16, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.contains_owl_nothing", false]], "contains_owl_thing() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[16, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.contains_owl_thing", false]], "convert() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.convert", false]], "converter (in module owlapy.converter)": [[9, "owlapy.converter.converter", false]], "create() (owlapy.iri.iri static method)": [[12, "owlapy.iri.IRI.create", false]], "create_ontology() (owlapy.abstracts.abstract_owl_ontology_manager.abstractowlontologymanager method)": [[1, "owlapy.abstracts.abstract_owl_ontology_manager.AbstractOWLOntologyManager.create_ontology", false]], "create_ontology() (owlapy.abstracts.abstractowlontologymanager method)": [[3, "owlapy.abstracts.AbstractOWLOntologyManager.create_ontology", false]], "create_ontology() (owlapy.ontologymanager method)": [[11, "owlapy.OntologyManager.create_ontology", false]], "create_ontology() (owlapy.owl_ontology_manager.ontologymanager method)": [[24, "owlapy.owl_ontology_manager.OntologyManager.create_ontology", false]], "create_ontology() (owlapy.owl_ontology_manager.syncontologymanager method)": [[24, "owlapy.owl_ontology_manager.SyncOntologyManager.create_ontology", false]], "current_variable (owlapy.converter.owl2sparqlconverter property)": [[9, "owlapy.converter.Owl2SparqlConverter.current_variable", false]], "data_all_values_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.data_all_values_length", false]], "data_cardinality_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.data_cardinality_length", false]], "data_complement_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.data_complement_length", false]], "data_has_value_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.data_has_value_length", false]], "data_intersection_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.data_intersection_length", false]], "data_one_of_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.data_one_of_length", false]], "data_properties_in_signature() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.data_properties_in_signature", false]], "data_properties_in_signature() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.data_properties_in_signature", false]], "data_properties_in_signature() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.data_properties_in_signature", false]], "data_properties_in_signature() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.data_properties_in_signature", false]], "data_property_domain_axioms() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.data_property_domain_axioms", false]], "data_property_domain_axioms() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.data_property_domain_axioms", false]], "data_property_domain_axioms() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.data_property_domain_axioms", false]], "data_property_domain_axioms() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.data_property_domain_axioms", false]], "data_property_domains() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.data_property_domains", false]], "data_property_domains() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.data_property_domains", false]], "data_property_domains() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.data_property_domains", false]], "data_property_domains() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.data_property_domains", false]], "data_property_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.data_property_length", false]], "data_property_range_axioms() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.data_property_range_axioms", false]], "data_property_range_axioms() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.data_property_range_axioms", false]], "data_property_range_axioms() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.data_property_range_axioms", false]], "data_property_range_axioms() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.data_property_range_axioms", false]], "data_property_ranges() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.data_property_ranges", false]], "data_property_ranges() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.data_property_ranges", false]], "data_property_values() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.data_property_values", false]], "data_property_values() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.data_property_values", false]], "data_property_values() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.data_property_values", false]], "data_property_values() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.data_property_values", false]], "data_some_values_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.data_some_values_length", false]], "data_union_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.data_union_length", false]], "datatype_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.datatype_length", false]], "datatypepropertyhierarchy (class in owlapy.owl_hierarchy)": [[19, "owlapy.owl_hierarchy.DatatypePropertyHierarchy", false]], "date (owlapy.vocab.xsdvocabulary attribute)": [[34, "owlapy.vocab.XSDVocabulary.DATE", false]], "date_time (owlapy.vocab.xsdvocabulary attribute)": [[34, "owlapy.vocab.XSDVocabulary.DATE_TIME", false]], "date_time_stamp (owlapy.vocab.xsdvocabulary attribute)": [[34, "owlapy.vocab.XSDVocabulary.DATE_TIME_STAMP", false]], "dateowldatatype (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.DateOWLDatatype", false]], "datetimeowldatatype (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.DateTimeOWLDatatype", false]], "decimal (owlapy.vocab.xsdvocabulary attribute)": [[34, "owlapy.vocab.XSDVocabulary.DECIMAL", false]], "dict (owlapy.converter.variablesmapping attribute)": [[9, "owlapy.converter.VariablesMapping.dict", false]], "different_individuals() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.different_individuals", false]], "different_individuals() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.different_individuals", false]], "different_individuals() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.different_individuals", false]], "different_individuals() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.different_individuals", false]], "disjoint_classes() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.disjoint_classes", false]], "disjoint_classes() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.disjoint_classes", false]], "disjoint_classes() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.disjoint_classes", false]], "disjoint_classes() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.disjoint_classes", false]], "disjoint_data_properties() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.disjoint_data_properties", false]], "disjoint_data_properties() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.disjoint_data_properties", false]], "disjoint_data_properties() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.disjoint_data_properties", false]], "disjoint_data_properties() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.disjoint_data_properties", false]], "disjoint_object_properties() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.disjoint_object_properties", false]], "disjoint_object_properties() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.disjoint_object_properties", false]], "disjoint_object_properties() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.disjoint_object_properties", false]], "disjoint_object_properties() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.disjoint_object_properties", false]], "dl_grammar (in module owlapy.parser)": [[28, "owlapy.parser.DL_GRAMMAR", false]], "dl_to_owl_expression() (in module owlapy)": [[11, "owlapy.dl_to_owl_expression", false]], "dl_to_owl_expression() (in module owlapy.parser)": [[28, "owlapy.parser.dl_to_owl_expression", false]], "dlparser (in module owlapy.parser)": [[28, "owlapy.parser.DLparser", false]], "dlrenderer (in module owlapy.render)": [[30, "owlapy.render.DLrenderer", false]], "dlsyntaxobjectrenderer (class in owlapy.render)": [[30, "owlapy.render.DLSyntaxObjectRenderer", false]], "dlsyntaxparser (class in owlapy.parser)": [[28, "owlapy.parser.DLSyntaxParser", false]], "double (owlapy.vocab.xsdvocabulary attribute)": [[34, "owlapy.vocab.XSDVocabulary.DOUBLE", false]], "doubleowldatatype (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.DoubleOWLDatatype", false]], "download_external_files() (in module owlapy.static_funcs)": [[31, "owlapy.static_funcs.download_external_files", false]], "duration (owlapy.vocab.xsdvocabulary attribute)": [[34, "owlapy.vocab.XSDVocabulary.DURATION", false]], "durationowldatatype (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.DurationOWLDatatype", false]], "equivalent_classes() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.equivalent_classes", false]], "equivalent_classes() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.equivalent_classes", false]], "equivalent_classes() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.equivalent_classes", false]], "equivalent_classes() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.equivalent_classes", false]], "equivalent_classes_axioms() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.equivalent_classes_axioms", false]], "equivalent_classes_axioms() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.equivalent_classes_axioms", false]], "equivalent_classes_axioms() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.equivalent_classes_axioms", false]], "equivalent_classes_axioms() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.equivalent_classes_axioms", false]], "equivalent_data_properties() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.equivalent_data_properties", false]], "equivalent_data_properties() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.equivalent_data_properties", false]], "equivalent_data_properties() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.equivalent_data_properties", false]], "equivalent_data_properties() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.equivalent_data_properties", false]], "equivalent_object_properties() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.equivalent_object_properties", false]], "equivalent_object_properties() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.equivalent_object_properties", false]], "equivalent_object_properties() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.equivalent_object_properties", false]], "equivalent_object_properties() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.equivalent_object_properties", false]], "evaluateddescriptionset (class in owlapy.utils)": [[33, "owlapy.utils.EvaluatedDescriptionSet", false]], "float (owlapy.vocab.xsdvocabulary attribute)": [[34, "owlapy.vocab.XSDVocabulary.FLOAT", false]], "for_all_de_morgan (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.for_all_de_morgan", false]], "forall() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.forAll", false]], "foralldemorgan() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.forAllDeMorgan", false]], "fraction_digits (owlapy.class_expression.owlfacet attribute)": [[5, "owlapy.class_expression.OWLFacet.FRACTION_DIGITS", false]], "fraction_digits (owlapy.vocab.owlfacet attribute)": [[34, "owlapy.vocab.OWLFacet.FRACTION_DIGITS", false]], "from_str() (owlapy.class_expression.owlfacet static method)": [[5, "owlapy.class_expression.OWLFacet.from_str", false]], "from_str() (owlapy.vocab.owlfacet static method)": [[34, "owlapy.vocab.OWLFacet.from_str", false]], "fromowlready2 (class in owlapy.owl_ontology)": [[23, "owlapy.owl_ontology.FromOwlready2", false]], "full (owlapy.utils.lrucache attribute)": [[33, "owlapy.utils.LRUCache.full", false]], "general_class_axioms() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.general_class_axioms", false]], "general_class_axioms() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.general_class_axioms", false]], "general_class_axioms() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.general_class_axioms", false]], "general_class_axioms() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.general_class_axioms", false]], "generate_and_save_inferred_class_assertion_axioms() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.generate_and_save_inferred_class_assertion_axioms", false]], "generic_visit() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.generic_visit", false]], "generic_visit() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.generic_visit", false]], "get_abox_axioms() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.get_abox_axioms", false]], "get_bottom_entity() (owlapy.owl_hierarchy.abstracthierarchy class method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.get_bottom_entity", false]], "get_bottom_entity() (owlapy.owl_hierarchy.classhierarchy class method)": [[19, "owlapy.owl_hierarchy.ClassHierarchy.get_bottom_entity", false]], "get_bottom_entity() (owlapy.owl_hierarchy.datatypepropertyhierarchy class method)": [[19, "owlapy.owl_hierarchy.DatatypePropertyHierarchy.get_bottom_entity", false]], "get_bottom_entity() (owlapy.owl_hierarchy.objectpropertyhierarchy class method)": [[19, "owlapy.owl_hierarchy.ObjectPropertyHierarchy.get_bottom_entity", false]], "get_cardinality() (owlapy.class_expression.owlcardinalityrestriction method)": [[5, "owlapy.class_expression.OWLCardinalityRestriction.get_cardinality", false]], "get_cardinality() (owlapy.class_expression.restriction.owlcardinalityrestriction method)": [[8, "owlapy.class_expression.restriction.OWLCardinalityRestriction.get_cardinality", false]], "get_cardinality() (owlapy.meta_classes.hascardinality method)": [[13, "owlapy.meta_classes.HasCardinality.get_cardinality", false]], "get_class_expression() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLClassAssertionAxiom.get_class_expression", false]], "get_class_expression() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom.get_class_expression", false]], "get_class_expressions() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_class_expressions", false]], "get_class_nnf() (owlapy.utils.nnf method)": [[33, "owlapy.utils.NNF.get_class_nnf", false]], "get_data_range() (owlapy.owl_data_ranges.owldatacomplementof method)": [[17, "owlapy.owl_data_ranges.OWLDataComplementOf.get_data_range", false]], "get_datarange() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[16, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.get_datarange", false]], "get_datatype() (owlapy.class_expression.owldatatyperestriction method)": [[5, "owlapy.class_expression.OWLDatatypeRestriction.get_datatype", false]], "get_datatype() (owlapy.class_expression.restriction.owldatatyperestriction method)": [[8, "owlapy.class_expression.restriction.OWLDatatypeRestriction.get_datatype", false]], "get_datatype() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[16, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.get_datatype", false]], "get_datatype() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.get_datatype", false]], "get_default() (owlapy.utils.owlclassexpressionlengthmetric static method)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.get_default", false]], "get_default_arguments() (in module run)": [[35, "run.get_default_arguments", false]], "get_default_document_iri() (owlapy.owl_ontology.owlontologyid method)": [[23, "owlapy.owl_ontology.OWLOntologyID.get_default_document_iri", false]], "get_domain() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.get_domain", false]], "get_domain() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyDomainAxiom.get_domain", false]], "get_entity() (owlapy.owl_axiom.owldeclarationaxiom method)": [[16, "owlapy.owl_axiom.OWLDeclarationAxiom.get_entity", false]], "get_expression_length() (in module owlapy.utils)": [[33, "owlapy.utils.get_expression_length", false]], "get_facet() (owlapy.class_expression.owlfacetrestriction method)": [[5, "owlapy.class_expression.OWLFacetRestriction.get_facet", false]], "get_facet() (owlapy.class_expression.restriction.owlfacetrestriction method)": [[8, "owlapy.class_expression.restriction.OWLFacetRestriction.get_facet", false]], "get_facet_restrictions() (owlapy.class_expression.owldatatyperestriction method)": [[5, "owlapy.class_expression.OWLDatatypeRestriction.get_facet_restrictions", false]], "get_facet_restrictions() (owlapy.class_expression.restriction.owldatatyperestriction method)": [[8, "owlapy.class_expression.restriction.OWLDatatypeRestriction.get_facet_restrictions", false]], "get_facet_value() (owlapy.class_expression.owlfacetrestriction method)": [[5, "owlapy.class_expression.OWLFacetRestriction.get_facet_value", false]], "get_facet_value() (owlapy.class_expression.restriction.owlfacetrestriction method)": [[8, "owlapy.class_expression.restriction.OWLFacetRestriction.get_facet_value", false]], "get_filler() (owlapy.class_expression.owlcardinalityrestriction method)": [[5, "owlapy.class_expression.OWLCardinalityRestriction.get_filler", false]], "get_filler() (owlapy.class_expression.owlhasvaluerestriction method)": [[5, "owlapy.class_expression.OWLHasValueRestriction.get_filler", false]], "get_filler() (owlapy.class_expression.owlquantifieddatarestriction method)": [[5, "owlapy.class_expression.OWLQuantifiedDataRestriction.get_filler", false]], "get_filler() (owlapy.class_expression.owlquantifiedobjectrestriction method)": [[5, "owlapy.class_expression.OWLQuantifiedObjectRestriction.get_filler", false]], "get_filler() (owlapy.class_expression.restriction.owlcardinalityrestriction method)": [[8, "owlapy.class_expression.restriction.OWLCardinalityRestriction.get_filler", false]], "get_filler() (owlapy.class_expression.restriction.owlhasvaluerestriction method)": [[8, "owlapy.class_expression.restriction.OWLHasValueRestriction.get_filler", false]], "get_filler() (owlapy.class_expression.restriction.owlquantifieddatarestriction method)": [[8, "owlapy.class_expression.restriction.OWLQuantifiedDataRestriction.get_filler", false]], "get_filler() (owlapy.class_expression.restriction.owlquantifiedobjectrestriction method)": [[8, "owlapy.class_expression.restriction.OWLQuantifiedObjectRestriction.get_filler", false]], "get_filler() (owlapy.meta_classes.hasfiller method)": [[13, "owlapy.meta_classes.HasFiller.get_filler", false]], "get_first_property() (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom method)": [[16, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.get_first_property", false]], "get_import_declaration() (owlapy.owl_ontology_manager.addimport method)": [[24, "owlapy.owl_ontology_manager.AddImport.get_import_declaration", false]], "get_individual() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLClassAssertionAxiom.get_individual", false]], "get_instances_from_owl_class() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.get_instances_from_owl_class", false]], "get_inverse() (owlapy.owl_property.owlobjectinverseof method)": [[25, "owlapy.owl_property.OWLObjectInverseOf.get_inverse", false]], "get_inverse_property() (owlapy.owl_property.owlobjectinverseof method)": [[25, "owlapy.owl_property.OWLObjectInverseOf.get_inverse_property", false]], "get_inverse_property() (owlapy.owl_property.owlobjectproperty method)": [[25, "owlapy.owl_property.OWLObjectProperty.get_inverse_property", false]], "get_inverse_property() (owlapy.owl_property.owlobjectpropertyexpression method)": [[25, "owlapy.owl_property.OWLObjectPropertyExpression.get_inverse_property", false]], "get_literal() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.get_literal", false]], "get_named_property() (owlapy.owl_property.owlobjectinverseof method)": [[25, "owlapy.owl_property.OWLObjectInverseOf.get_named_property", false]], "get_named_property() (owlapy.owl_property.owlobjectproperty method)": [[25, "owlapy.owl_property.OWLObjectProperty.get_named_property", false]], "get_named_property() (owlapy.owl_property.owlobjectpropertyexpression method)": [[25, "owlapy.owl_property.OWLObjectPropertyExpression.get_named_property", false]], "get_namespace() (owlapy.iri.iri method)": [[12, "owlapy.iri.IRI.get_namespace", false]], "get_nnf() (owlapy.class_expression.class_expression.owlanonymousclassexpression method)": [[4, "owlapy.class_expression.class_expression.OWLAnonymousClassExpression.get_nnf", false]], "get_nnf() (owlapy.class_expression.class_expression.owlclassexpression method)": [[4, "owlapy.class_expression.class_expression.OWLClassExpression.get_nnf", false]], "get_nnf() (owlapy.class_expression.owl_class.owlclass method)": [[7, "owlapy.class_expression.owl_class.OWLClass.get_nnf", false]], "get_nnf() (owlapy.class_expression.owlanonymousclassexpression method)": [[5, "owlapy.class_expression.OWLAnonymousClassExpression.get_nnf", false]], "get_nnf() (owlapy.class_expression.owlclass method)": [[5, "owlapy.class_expression.OWLClass.get_nnf", false]], "get_nnf() (owlapy.class_expression.owlclassexpression method)": [[5, "owlapy.class_expression.OWLClassExpression.get_nnf", false]], "get_object() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.get_object", false]], "get_object_complement_of() (owlapy.class_expression.class_expression.owlanonymousclassexpression method)": [[4, "owlapy.class_expression.class_expression.OWLAnonymousClassExpression.get_object_complement_of", false]], "get_object_complement_of() (owlapy.class_expression.class_expression.owlclassexpression method)": [[4, "owlapy.class_expression.class_expression.OWLClassExpression.get_object_complement_of", false]], "get_object_complement_of() (owlapy.class_expression.owl_class.owlclass method)": [[7, "owlapy.class_expression.owl_class.OWLClass.get_object_complement_of", false]], "get_object_complement_of() (owlapy.class_expression.owlanonymousclassexpression method)": [[5, "owlapy.class_expression.OWLAnonymousClassExpression.get_object_complement_of", false]], "get_object_complement_of() (owlapy.class_expression.owlclass method)": [[5, "owlapy.class_expression.OWLClass.get_object_complement_of", false]], "get_object_complement_of() (owlapy.class_expression.owlclassexpression method)": [[5, "owlapy.class_expression.OWLClassExpression.get_object_complement_of", false]], "get_ontology() (owlapy.abstracts.abstract_owl_ontology_manager.abstractowlontologychange method)": [[1, "owlapy.abstracts.abstract_owl_ontology_manager.AbstractOWLOntologyChange.get_ontology", false]], "get_ontology() (owlapy.abstracts.abstractowlontologychange method)": [[3, "owlapy.abstracts.AbstractOWLOntologyChange.get_ontology", false]], "get_ontology_id() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.get_ontology_id", false]], "get_ontology_id() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.get_ontology_id", false]], "get_ontology_id() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.get_ontology_id", false]], "get_ontology_id() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.get_ontology_id", false]], "get_ontology_iri() (owlapy.owl_ontology.owlontologyid method)": [[23, "owlapy.owl_ontology.OWLOntologyID.get_ontology_iri", false]], "get_operand() (owlapy.class_expression.class_expression.owlobjectcomplementof method)": [[4, "owlapy.class_expression.class_expression.OWLObjectComplementOf.get_operand", false]], "get_operand() (owlapy.class_expression.owlobjectcomplementof method)": [[5, "owlapy.class_expression.OWLObjectComplementOf.get_operand", false]], "get_original_iri() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.get_original_iri", false]], "get_owl_class() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_owl_class", false]], "get_owl_disjoint_classes_axiom() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_owl_disjoint_classes_axiom", false]], "get_owl_equivalent_classes_axiom() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_owl_equivalent_classes_axiom", false]], "get_owl_ontology_manager() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.get_owl_ontology_manager", false]], "get_owl_ontology_manager() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.get_owl_ontology_manager", false]], "get_owl_ontology_manager() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.get_owl_ontology_manager", false]], "get_owl_ontology_manager() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.get_owl_ontology_manager", false]], "get_owlapi_manager() (owlapy.owl_ontology_manager.syncontologymanager method)": [[24, "owlapy.owl_ontology_manager.SyncOntologyManager.get_owlapi_manager", false]], "get_owlapi_ontology() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.get_owlapi_ontology", false]], "get_property() (owlapy.class_expression.owldataallvaluesfrom method)": [[5, "owlapy.class_expression.OWLDataAllValuesFrom.get_property", false]], "get_property() (owlapy.class_expression.owldatacardinalityrestriction method)": [[5, "owlapy.class_expression.OWLDataCardinalityRestriction.get_property", false]], "get_property() (owlapy.class_expression.owldatahasvalue method)": [[5, "owlapy.class_expression.OWLDataHasValue.get_property", false]], "get_property() (owlapy.class_expression.owldatasomevaluesfrom method)": [[5, "owlapy.class_expression.OWLDataSomeValuesFrom.get_property", false]], "get_property() (owlapy.class_expression.owlobjectallvaluesfrom method)": [[5, "owlapy.class_expression.OWLObjectAllValuesFrom.get_property", false]], "get_property() (owlapy.class_expression.owlobjectcardinalityrestriction method)": [[5, "owlapy.class_expression.OWLObjectCardinalityRestriction.get_property", false]], "get_property() (owlapy.class_expression.owlobjecthasself method)": [[5, "owlapy.class_expression.OWLObjectHasSelf.get_property", false]], "get_property() (owlapy.class_expression.owlobjecthasvalue method)": [[5, "owlapy.class_expression.OWLObjectHasValue.get_property", false]], "get_property() (owlapy.class_expression.owlobjectrestriction method)": [[5, "owlapy.class_expression.OWLObjectRestriction.get_property", false]], "get_property() (owlapy.class_expression.owlobjectsomevaluesfrom method)": [[5, "owlapy.class_expression.OWLObjectSomeValuesFrom.get_property", false]], "get_property() (owlapy.class_expression.owlrestriction method)": [[5, "owlapy.class_expression.OWLRestriction.get_property", false]], "get_property() (owlapy.class_expression.restriction.owldataallvaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLDataAllValuesFrom.get_property", false]], "get_property() (owlapy.class_expression.restriction.owldatacardinalityrestriction method)": [[8, "owlapy.class_expression.restriction.OWLDataCardinalityRestriction.get_property", false]], "get_property() (owlapy.class_expression.restriction.owldatahasvalue method)": [[8, "owlapy.class_expression.restriction.OWLDataHasValue.get_property", false]], "get_property() (owlapy.class_expression.restriction.owldatasomevaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLDataSomeValuesFrom.get_property", false]], "get_property() (owlapy.class_expression.restriction.owlobjectallvaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLObjectAllValuesFrom.get_property", false]], "get_property() (owlapy.class_expression.restriction.owlobjectcardinalityrestriction method)": [[8, "owlapy.class_expression.restriction.OWLObjectCardinalityRestriction.get_property", false]], "get_property() (owlapy.class_expression.restriction.owlobjecthasself method)": [[8, "owlapy.class_expression.restriction.OWLObjectHasSelf.get_property", false]], "get_property() (owlapy.class_expression.restriction.owlobjecthasvalue method)": [[8, "owlapy.class_expression.restriction.OWLObjectHasValue.get_property", false]], "get_property() (owlapy.class_expression.restriction.owlobjectrestriction method)": [[8, "owlapy.class_expression.restriction.OWLObjectRestriction.get_property", false]], "get_property() (owlapy.class_expression.restriction.owlobjectsomevaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLObjectSomeValuesFrom.get_property", false]], "get_property() (owlapy.class_expression.restriction.owlrestriction method)": [[8, "owlapy.class_expression.restriction.OWLRestriction.get_property", false]], "get_property() (owlapy.owl_axiom.owlannotation method)": [[16, "owlapy.owl_axiom.OWLAnnotation.get_property", false]], "get_property() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.get_property", false]], "get_property() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.get_property", false]], "get_property() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.get_property", false]], "get_property() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.get_property", false]], "get_property() (owlapy.owl_axiom.owlunarypropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLUnaryPropertyAxiom.get_property", false]], "get_property_expressions() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom.get_property_expressions", false]], "get_range() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.get_range", false]], "get_range() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyRangeAxiom.get_range", false]], "get_remainder() (owlapy.iri.iri method)": [[12, "owlapy.iri.IRI.get_remainder", false]], "get_root_ontology() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.get_root_ontology", false]], "get_root_ontology() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.get_root_ontology", false]], "get_root_ontology() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.get_root_ontology", false]], "get_root_ontology() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.get_root_ontology", false]], "get_second_property() (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom method)": [[16, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.get_second_property", false]], "get_signature() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.get_signature", false]], "get_sub_class() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubClassOfAxiom.get_sub_class", false]], "get_sub_property() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.get_sub_property", false]], "get_sub_property() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLSubPropertyAxiom.get_sub_property", false]], "get_subject() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.get_subject", false]], "get_subject() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.get_subject", false]], "get_super_class() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubClassOfAxiom.get_super_class", false]], "get_super_property() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.get_super_property", false]], "get_super_property() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLSubPropertyAxiom.get_super_property", false]], "get_tbox_axioms() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.get_tbox_axioms", false]], "get_top_entity() (owlapy.owl_hierarchy.abstracthierarchy class method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.get_top_entity", false]], "get_top_entity() (owlapy.owl_hierarchy.classhierarchy class method)": [[19, "owlapy.owl_hierarchy.ClassHierarchy.get_top_entity", false]], "get_top_entity() (owlapy.owl_hierarchy.datatypepropertyhierarchy class method)": [[19, "owlapy.owl_hierarchy.DatatypePropertyHierarchy.get_top_entity", false]], "get_top_entity() (owlapy.owl_hierarchy.objectpropertyhierarchy class method)": [[19, "owlapy.owl_hierarchy.ObjectPropertyHierarchy.get_top_entity", false]], "get_top_level_cnf() (owlapy.utils.toplevelcnf method)": [[33, "owlapy.utils.TopLevelCNF.get_top_level_cnf", false]], "get_top_level_dnf() (owlapy.utils.topleveldnf method)": [[33, "owlapy.utils.TopLevelDNF.get_top_level_dnf", false]], "get_value() (owlapy.owl_axiom.owlannotation method)": [[16, "owlapy.owl_axiom.OWLAnnotation.get_value", false]], "get_value() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.get_value", false]], "get_variable() (owlapy.converter.variablesmapping method)": [[9, "owlapy.converter.VariablesMapping.get_variable", false]], "get_version_iri() (owlapy.owl_ontology.owlontologyid method)": [[23, "owlapy.owl_ontology.OWLOntologyID.get_version_iri", false]], "grammar (owlapy.parser.dlsyntaxparser attribute)": [[28, "owlapy.parser.DLSyntaxParser.grammar", false]], "grammar (owlapy.parser.manchesterowlsyntaxparser attribute)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.grammar", false]], "grouping_vars (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.grouping_vars", false]], "has_consistent_ontology() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.has_consistent_ontology", false]], "hascardinality (class in owlapy.meta_classes)": [[13, "owlapy.meta_classes.HasCardinality", false]], "hasfiller (class in owlapy.meta_classes)": [[13, "owlapy.meta_classes.HasFiller", false]], "hasindex (class in owlapy.utils)": [[33, "owlapy.utils.HasIndex", false]], "hasiri (class in owlapy.meta_classes)": [[13, "owlapy.meta_classes.HasIRI", false]], "hasoperands (class in owlapy.meta_classes)": [[13, "owlapy.meta_classes.HasOperands", false]], "having_conditions (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.having_conditions", false]], "ind_cnt (owlapy.converter.variablesmapping attribute)": [[9, "owlapy.converter.VariablesMapping.ind_cnt", false]], "ind_data_properties() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.ind_data_properties", false]], "ind_data_properties() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.ind_data_properties", false]], "ind_object_properties() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.ind_object_properties", false]], "ind_object_properties() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.ind_object_properties", false]], "individuals() (owlapy.class_expression.owlobjectoneof method)": [[5, "owlapy.class_expression.OWLObjectOneOf.individuals", false]], "individuals() (owlapy.class_expression.restriction.owlobjectoneof method)": [[8, "owlapy.class_expression.restriction.OWLObjectOneOf.individuals", false]], "individuals() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryIndividualAxiom.individuals", false]], "individuals_in_signature() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.individuals_in_signature", false]], "individuals_in_signature() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.individuals_in_signature", false]], "individuals_in_signature() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.individuals_in_signature", false]], "individuals_in_signature() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.individuals_in_signature", false]], "infer_axioms() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.infer_axioms", false]], "infer_axioms_and_save() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.infer_axioms_and_save", false]], "inference_types (in module run)": [[35, "run.inference_types", false]], "inference_types_mapping (owlapy.owl_reasoner.syncreasoner attribute)": [[26, "owlapy.owl_reasoner.SyncReasoner.inference_types_mapping", false]], "init() (in module owlapy.owlapi_mapper)": [[27, "owlapy.owlapi_mapper.init", false]], "instances() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.instances", false]], "instances() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.instances", false]], "instances() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.instances", false]], "instances() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.instances", false]], "integer (owlapy.vocab.xsdvocabulary attribute)": [[34, "owlapy.vocab.XSDVocabulary.INTEGER", false]], "integerowldatatype (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.IntegerOWLDatatype", false]], "iri (class in owlapy.iri)": [[12, "owlapy.iri.IRI", false]], "iri (owlapy.class_expression.owl_class.owlclass property)": [[7, "owlapy.class_expression.owl_class.OWLClass.iri", false]], "iri (owlapy.class_expression.owlclass property)": [[5, "owlapy.class_expression.OWLClass.iri", false]], "iri (owlapy.meta_classes.hasiri property)": [[13, "owlapy.meta_classes.HasIRI.iri", false]], "iri (owlapy.owl_axiom.owlannotationproperty property)": [[16, "owlapy.owl_axiom.OWLAnnotationProperty.iri", false]], "iri (owlapy.owl_datatype.owldatatype property)": [[18, "owlapy.owl_datatype.OWLDatatype.iri", false]], "iri (owlapy.owl_individual.owlnamedindividual property)": [[20, "owlapy.owl_individual.OWLNamedIndividual.iri", false]], "iri (owlapy.owl_ontology_manager.owlimportsdeclaration property)": [[24, "owlapy.owl_ontology_manager.OWLImportsDeclaration.iri", false]], "iri (owlapy.owl_property.owlproperty property)": [[25, "owlapy.owl_property.OWLProperty.iri", false]], "is_annotated() (owlapy.owl_axiom.owlaxiom method)": [[16, "owlapy.owl_axiom.OWLAxiom.is_annotated", false]], "is_annotation_axiom() (owlapy.owl_axiom.owlannotationaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationAxiom.is_annotation_axiom", false]], "is_annotation_axiom() (owlapy.owl_axiom.owlaxiom method)": [[16, "owlapy.owl_axiom.OWLAxiom.is_annotation_axiom", false]], "is_anonymous() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.is_anonymous", false]], "is_anonymous() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.is_anonymous", false]], "is_anonymous() (owlapy.owl_object.owlentity method)": [[22, "owlapy.owl_object.OWLEntity.is_anonymous", false]], "is_anonymous() (owlapy.owl_object.owlobject method)": [[22, "owlapy.owl_object.OWLObject.is_anonymous", false]], "is_anonymous() (owlapy.owl_ontology.owlontologyid method)": [[23, "owlapy.owl_ontology.OWLOntologyID.is_anonymous", false]], "is_boolean() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.is_boolean", false]], "is_child_of() (owlapy.owl_hierarchy.abstracthierarchy method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.is_child_of", false]], "is_data_property_expression() (owlapy.owl_property.owldatapropertyexpression method)": [[25, "owlapy.owl_property.OWLDataPropertyExpression.is_data_property_expression", false]], "is_data_property_expression() (owlapy.owl_property.owlpropertyexpression method)": [[25, "owlapy.owl_property.OWLPropertyExpression.is_data_property_expression", false]], "is_data_restriction() (owlapy.class_expression.owldatarestriction method)": [[5, "owlapy.class_expression.OWLDataRestriction.is_data_restriction", false]], "is_data_restriction() (owlapy.class_expression.owlrestriction method)": [[5, "owlapy.class_expression.OWLRestriction.is_data_restriction", false]], "is_data_restriction() (owlapy.class_expression.restriction.owldatarestriction method)": [[8, "owlapy.class_expression.restriction.OWLDataRestriction.is_data_restriction", false]], "is_data_restriction() (owlapy.class_expression.restriction.owlrestriction method)": [[8, "owlapy.class_expression.restriction.OWLRestriction.is_data_restriction", false]], "is_date() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.is_date", false]], "is_datetime() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.is_datetime", false]], "is_double() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.is_double", false]], "is_duration() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.is_duration", false]], "is_entailed() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.is_entailed", false]], "is_integer() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.is_integer", false]], "is_literal() (owlapy.owl_annotation.owlannotationvalue method)": [[15, "owlapy.owl_annotation.OWLAnnotationValue.is_literal", false]], "is_literal() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.is_literal", false]], "is_logical_axiom() (owlapy.owl_axiom.owlaxiom method)": [[16, "owlapy.owl_axiom.OWLAxiom.is_logical_axiom", false]], "is_logical_axiom() (owlapy.owl_axiom.owllogicalaxiom method)": [[16, "owlapy.owl_axiom.OWLLogicalAxiom.is_logical_axiom", false]], "is_modified (owlapy.owl_ontology.ontology attribute)": [[23, "owlapy.owl_ontology.Ontology.is_modified", false]], "is_nothing() (owlapy.iri.iri method)": [[12, "owlapy.iri.IRI.is_nothing", false]], "is_object_property_expression() (owlapy.owl_property.owlobjectpropertyexpression method)": [[25, "owlapy.owl_property.OWLObjectPropertyExpression.is_object_property_expression", false]], "is_object_property_expression() (owlapy.owl_property.owlpropertyexpression method)": [[25, "owlapy.owl_property.OWLPropertyExpression.is_object_property_expression", false]], "is_object_restriction() (owlapy.class_expression.owlobjectrestriction method)": [[5, "owlapy.class_expression.OWLObjectRestriction.is_object_restriction", false]], "is_object_restriction() (owlapy.class_expression.owlrestriction method)": [[5, "owlapy.class_expression.OWLRestriction.is_object_restriction", false]], "is_object_restriction() (owlapy.class_expression.restriction.owlobjectrestriction method)": [[8, "owlapy.class_expression.restriction.OWLObjectRestriction.is_object_restriction", false]], "is_object_restriction() (owlapy.class_expression.restriction.owlrestriction method)": [[8, "owlapy.class_expression.restriction.OWLRestriction.is_object_restriction", false]], "is_owl_nothing() (owlapy.class_expression.class_expression.owlanonymousclassexpression method)": [[4, "owlapy.class_expression.class_expression.OWLAnonymousClassExpression.is_owl_nothing", false]], "is_owl_nothing() (owlapy.class_expression.class_expression.owlclassexpression method)": [[4, "owlapy.class_expression.class_expression.OWLClassExpression.is_owl_nothing", false]], "is_owl_nothing() (owlapy.class_expression.owl_class.owlclass method)": [[7, "owlapy.class_expression.owl_class.OWLClass.is_owl_nothing", false]], "is_owl_nothing() (owlapy.class_expression.owlanonymousclassexpression method)": [[5, "owlapy.class_expression.OWLAnonymousClassExpression.is_owl_nothing", false]], "is_owl_nothing() (owlapy.class_expression.owlclass method)": [[5, "owlapy.class_expression.OWLClass.is_owl_nothing", false]], "is_owl_nothing() (owlapy.class_expression.owlclassexpression method)": [[5, "owlapy.class_expression.OWLClassExpression.is_owl_nothing", false]], "is_owl_thing() (owlapy.class_expression.class_expression.owlanonymousclassexpression method)": [[4, "owlapy.class_expression.class_expression.OWLAnonymousClassExpression.is_owl_thing", false]], "is_owl_thing() (owlapy.class_expression.class_expression.owlclassexpression method)": [[4, "owlapy.class_expression.class_expression.OWLClassExpression.is_owl_thing", false]], "is_owl_thing() (owlapy.class_expression.owl_class.owlclass method)": [[7, "owlapy.class_expression.owl_class.OWLClass.is_owl_thing", false]], "is_owl_thing() (owlapy.class_expression.owlanonymousclassexpression method)": [[5, "owlapy.class_expression.OWLAnonymousClassExpression.is_owl_thing", false]], "is_owl_thing() (owlapy.class_expression.owlclass method)": [[5, "owlapy.class_expression.OWLClass.is_owl_thing", false]], "is_owl_thing() (owlapy.class_expression.owlclassexpression method)": [[5, "owlapy.class_expression.OWLClassExpression.is_owl_thing", false]], "is_owl_top_data_property() (owlapy.owl_property.owldataproperty method)": [[25, "owlapy.owl_property.OWLDataProperty.is_owl_top_data_property", false]], "is_owl_top_data_property() (owlapy.owl_property.owlpropertyexpression method)": [[25, "owlapy.owl_property.OWLPropertyExpression.is_owl_top_data_property", false]], "is_owl_top_object_property() (owlapy.owl_property.owlobjectproperty method)": [[25, "owlapy.owl_property.OWLObjectProperty.is_owl_top_object_property", false]], "is_owl_top_object_property() (owlapy.owl_property.owlpropertyexpression method)": [[25, "owlapy.owl_property.OWLPropertyExpression.is_owl_top_object_property", false]], "is_parent_of() (owlapy.owl_hierarchy.abstracthierarchy method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.is_parent_of", false]], "is_reserved_vocabulary() (owlapy.iri.iri method)": [[12, "owlapy.iri.IRI.is_reserved_vocabulary", false]], "is_satisfiable() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.is_satisfiable", false]], "is_string() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.is_string", false]], "is_sub_property_of() (owlapy.owl_hierarchy.datatypepropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.DatatypePropertyHierarchy.is_sub_property_of", false]], "is_sub_property_of() (owlapy.owl_hierarchy.objectpropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.ObjectPropertyHierarchy.is_sub_property_of", false]], "is_subclass_of() (owlapy.owl_hierarchy.classhierarchy method)": [[19, "owlapy.owl_hierarchy.ClassHierarchy.is_subclass_of", false]], "is_thing() (owlapy.iri.iri method)": [[12, "owlapy.iri.IRI.is_thing", false]], "items (owlapy.utils.evaluateddescriptionset attribute)": [[33, "owlapy.utils.EvaluatedDescriptionSet.items", false]], "items() (owlapy.owl_hierarchy.abstracthierarchy method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.items", false]], "iter_count() (in module owlapy.utils)": [[33, "owlapy.utils.iter_count", false]], "key (owlapy.utils.lrucache attribute)": [[33, "owlapy.utils.LRUCache.KEY", false]], "leaves() (owlapy.owl_hierarchy.abstracthierarchy method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.leaves", false]], "length (owlapy.class_expression.owlfacet attribute)": [[5, "owlapy.class_expression.OWLFacet.LENGTH", false]], "length (owlapy.vocab.owlfacet attribute)": [[34, "owlapy.vocab.OWLFacet.LENGTH", false]], "length() (owlapy.utils.owlclassexpressionlengthmetric method)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.length", false]], "literals (in module owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.Literals", false]], "literals (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.Literals", false]], "load_ontology() (owlapy.abstracts.abstract_owl_ontology_manager.abstractowlontologymanager method)": [[1, "owlapy.abstracts.abstract_owl_ontology_manager.AbstractOWLOntologyManager.load_ontology", false]], "load_ontology() (owlapy.abstracts.abstractowlontologymanager method)": [[3, "owlapy.abstracts.AbstractOWLOntologyManager.load_ontology", false]], "load_ontology() (owlapy.ontologymanager method)": [[11, "owlapy.OntologyManager.load_ontology", false]], "load_ontology() (owlapy.owl_ontology_manager.ontologymanager method)": [[24, "owlapy.owl_ontology_manager.OntologyManager.load_ontology", false]], "load_ontology() (owlapy.owl_ontology_manager.syncontologymanager method)": [[24, "owlapy.owl_ontology_manager.SyncOntologyManager.load_ontology", false]], "lock (owlapy.utils.lrucache attribute)": [[33, "owlapy.utils.LRUCache.lock", false]], "logger (in module owlapy.abstracts.abstract_owl_reasoner)": [[2, "owlapy.abstracts.abstract_owl_reasoner.logger", false]], "logger (in module owlapy.owl_ontology)": [[23, "owlapy.owl_ontology.logger", false]], "logger (in module owlapy.owl_reasoner)": [[26, "owlapy.owl_reasoner.logger", false]], "long (owlapy.vocab.xsdvocabulary attribute)": [[34, "owlapy.vocab.XSDVocabulary.LONG", false]], "lrucache (class in owlapy.utils)": [[33, "owlapy.utils.LRUCache", false]], "main() (in module run)": [[35, "run.main", false]], "manager (owlapy.owl_ontology.syncontology attribute)": [[23, "owlapy.owl_ontology.SyncOntology.manager", false]], "manager (owlapy.owlapi_mapper.owlapimapper attribute)": [[27, "owlapy.owlapi_mapper.OWLAPIMapper.manager", false]], "manchester_grammar (in module owlapy.parser)": [[28, "owlapy.parser.MANCHESTER_GRAMMAR", false]], "manchester_to_owl_expression() (in module owlapy)": [[11, "owlapy.manchester_to_owl_expression", false]], "manchester_to_owl_expression() (in module owlapy.parser)": [[28, "owlapy.parser.manchester_to_owl_expression", false]], "manchesterowlsyntaxowlobjectrenderer (class in owlapy.render)": [[30, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer", false]], "manchesterowlsyntaxparser (class in owlapy.parser)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser", false]], "manchesterparser (in module owlapy.parser)": [[28, "owlapy.parser.ManchesterParser", false]], "manchesterrenderer (in module owlapy.render)": [[30, "owlapy.render.ManchesterRenderer", false]], "map_() (owlapy.owlapi_mapper.owlapimapper method)": [[27, "owlapy.owlapi_mapper.OWLAPIMapper.map_", false]], "map_concept() (owlapy.owl_ontology.fromowlready2 method)": [[23, "owlapy.owl_ontology.FromOwlready2.map_concept", false]], "map_concept() (owlapy.owl_ontology.toowlready2 method)": [[23, "owlapy.owl_ontology.ToOwlready2.map_concept", false]], "map_datarange() (owlapy.owl_ontology.fromowlready2 method)": [[23, "owlapy.owl_ontology.FromOwlready2.map_datarange", false]], "map_datarange() (owlapy.owl_ontology.toowlready2 method)": [[23, "owlapy.owl_ontology.ToOwlready2.map_datarange", false]], "map_object() (owlapy.owl_ontology.toowlready2 method)": [[23, "owlapy.owl_ontology.ToOwlready2.map_object", false]], "mapper (in module owlapy.render)": [[30, "owlapy.render.mapper", false]], "mapper (owlapy.owl_ontology.syncontology attribute)": [[23, "owlapy.owl_ontology.SyncOntology.mapper", false]], "mapper (owlapy.owl_reasoner.syncreasoner attribute)": [[26, "owlapy.owl_reasoner.SyncReasoner.mapper", false]], "mapping (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.mapping", false]], "max_exclusive (owlapy.class_expression.owlfacet attribute)": [[5, "owlapy.class_expression.OWLFacet.MAX_EXCLUSIVE", false]], "max_exclusive (owlapy.vocab.owlfacet attribute)": [[34, "owlapy.vocab.OWLFacet.MAX_EXCLUSIVE", false]], "max_inclusive (owlapy.class_expression.owlfacet attribute)": [[5, "owlapy.class_expression.OWLFacet.MAX_INCLUSIVE", false]], "max_inclusive (owlapy.vocab.owlfacet attribute)": [[34, "owlapy.vocab.OWLFacet.MAX_INCLUSIVE", false]], "max_length (owlapy.class_expression.owlfacet attribute)": [[5, "owlapy.class_expression.OWLFacet.MAX_LENGTH", false]], "max_length (owlapy.vocab.owlfacet attribute)": [[34, "owlapy.vocab.OWLFacet.MAX_LENGTH", false]], "maxsize (owlapy.utils.lrucache attribute)": [[33, "owlapy.utils.LRUCache.maxsize", false]], "maybe_add() (owlapy.utils.evaluateddescriptionset method)": [[33, "owlapy.utils.EvaluatedDescriptionSet.maybe_add", false]], "measurer (in module owlapy.utils)": [[33, "owlapy.utils.measurer", false]], "min_exclusive (owlapy.class_expression.owlfacet attribute)": [[5, "owlapy.class_expression.OWLFacet.MIN_EXCLUSIVE", false]], "min_exclusive (owlapy.vocab.owlfacet attribute)": [[34, "owlapy.vocab.OWLFacet.MIN_EXCLUSIVE", false]], "min_inclusive (owlapy.class_expression.owlfacet attribute)": [[5, "owlapy.class_expression.OWLFacet.MIN_INCLUSIVE", false]], "min_inclusive (owlapy.vocab.owlfacet attribute)": [[34, "owlapy.vocab.OWLFacet.MIN_INCLUSIVE", false]], "min_length (owlapy.class_expression.owlfacet attribute)": [[5, "owlapy.class_expression.OWLFacet.MIN_LENGTH", false]], "min_length (owlapy.vocab.owlfacet attribute)": [[34, "owlapy.vocab.OWLFacet.MIN_LENGTH", false]], "modal_depth (owlapy.converter.owl2sparqlconverter property)": [[9, "owlapy.converter.Owl2SparqlConverter.modal_depth", false]], "module": [[0, "module-owlapy.abstracts.abstract_owl_ontology", false], [1, "module-owlapy.abstracts.abstract_owl_ontology_manager", false], [2, "module-owlapy.abstracts.abstract_owl_reasoner", false], [3, "module-owlapy.abstracts", false], [4, "module-owlapy.class_expression.class_expression", false], [5, "module-owlapy.class_expression", false], [6, "module-owlapy.class_expression.nary_boolean_expression", false], [7, "module-owlapy.class_expression.owl_class", false], [8, "module-owlapy.class_expression.restriction", false], [9, "module-owlapy.converter", false], [10, "module-owlapy.entities", false], [11, "module-owlapy", false], [12, "module-owlapy.iri", false], [13, "module-owlapy.meta_classes", false], [14, "module-owlapy.namespaces", false], [15, "module-owlapy.owl_annotation", false], [16, "module-owlapy.owl_axiom", false], [17, "module-owlapy.owl_data_ranges", false], [18, "module-owlapy.owl_datatype", false], [19, "module-owlapy.owl_hierarchy", false], [20, "module-owlapy.owl_individual", false], [21, "module-owlapy.owl_literal", false], [22, "module-owlapy.owl_object", false], [23, "module-owlapy.owl_ontology", false], [24, "module-owlapy.owl_ontology_manager", false], [25, "module-owlapy.owl_property", false], [26, "module-owlapy.owl_reasoner", false], [27, "module-owlapy.owlapi_mapper", false], [28, "module-owlapy.parser", false], [29, "module-owlapy.providers", false], [30, "module-owlapy.render", false], [31, "module-owlapy.static_funcs", false], [32, "module-owlapy.util_owl_static_funcs", false], [33, "module-owlapy.utils", false], [34, "module-owlapy.vocab", false], [35, "module-run", false]], "more_general_roles() (owlapy.owl_hierarchy.datatypepropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.DatatypePropertyHierarchy.more_general_roles", false]], "more_general_roles() (owlapy.owl_hierarchy.objectpropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.ObjectPropertyHierarchy.more_general_roles", false]], "more_special_roles() (owlapy.owl_hierarchy.datatypepropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.DatatypePropertyHierarchy.more_special_roles", false]], "more_special_roles() (owlapy.owl_hierarchy.objectpropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.ObjectPropertyHierarchy.more_special_roles", false]], "most_general_roles() (owlapy.owl_hierarchy.datatypepropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.DatatypePropertyHierarchy.most_general_roles", false]], "most_general_roles() (owlapy.owl_hierarchy.objectpropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.ObjectPropertyHierarchy.most_general_roles", false]], "most_special_roles() (owlapy.owl_hierarchy.datatypepropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.DatatypePropertyHierarchy.most_special_roles", false]], "most_special_roles() (owlapy.owl_hierarchy.objectpropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.ObjectPropertyHierarchy.most_special_roles", false]], "move() (in module owlapy.static_funcs)": [[31, "owlapy.static_funcs.move", false]], "named_classes() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[16, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.named_classes", false]], "named_individuals (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.named_individuals", false]], "namespace (owlapy.owlapi_mapper.owlapimapper attribute)": [[27, "owlapy.owlapi_mapper.OWLAPIMapper.namespace", false]], "namespaces (class in owlapy.namespaces)": [[14, "owlapy.namespaces.Namespaces", false]], "new (owlapy.owl_ontology.syncontology attribute)": [[23, "owlapy.owl_ontology.SyncOntology.new", false]], "new_count_var() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.new_count_var", false]], "new_individual_variable() (owlapy.converter.variablesmapping method)": [[9, "owlapy.converter.VariablesMapping.new_individual_variable", false]], "new_property_variable() (owlapy.converter.variablesmapping method)": [[9, "owlapy.converter.VariablesMapping.new_property_variable", false]], "next (owlapy.utils.lrucache attribute)": [[33, "owlapy.utils.LRUCache.NEXT", false]], "nnf (class in owlapy.utils)": [[33, "owlapy.utils.NNF", false]], "ns (owlapy.namespaces.namespaces property)": [[14, "owlapy.namespaces.Namespaces.ns", false]], "ns (owlapy.parser.dlsyntaxparser attribute)": [[28, "owlapy.parser.DLSyntaxParser.ns", false]], "ns (owlapy.parser.manchesterowlsyntaxparser attribute)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.ns", false]], "numeric_datatypes (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.NUMERIC_DATATYPES", false]], "o (owlapy.utils.orderedowlobject attribute)": [[33, "id0", false], [33, "owlapy.utils.OrderedOWLObject.o", false]], "object_all_values_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.object_all_values_length", false]], "object_cardinality_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.object_cardinality_length", false]], "object_complement_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.object_complement_length", false]], "object_has_self_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.object_has_self_length", false]], "object_has_value_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.object_has_value_length", false]], "object_intersection_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.object_intersection_length", false]], "object_inverse_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.object_inverse_length", false]], "object_one_of_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.object_one_of_length", false]], "object_properties_in_signature() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.object_properties_in_signature", false]], "object_properties_in_signature() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.object_properties_in_signature", false]], "object_properties_in_signature() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.object_properties_in_signature", false]], "object_properties_in_signature() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.object_properties_in_signature", false]], "object_property_domain_axioms() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.object_property_domain_axioms", false]], "object_property_domain_axioms() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.object_property_domain_axioms", false]], "object_property_domain_axioms() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.object_property_domain_axioms", false]], "object_property_domain_axioms() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.object_property_domain_axioms", false]], "object_property_domains() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.object_property_domains", false]], "object_property_domains() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.object_property_domains", false]], "object_property_domains() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.object_property_domains", false]], "object_property_domains() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.object_property_domains", false]], "object_property_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.object_property_length", false]], "object_property_range_axioms() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.object_property_range_axioms", false]], "object_property_range_axioms() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.object_property_range_axioms", false]], "object_property_range_axioms() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.object_property_range_axioms", false]], "object_property_range_axioms() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.object_property_range_axioms", false]], "object_property_ranges() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.object_property_ranges", false]], "object_property_ranges() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.object_property_ranges", false]], "object_property_ranges() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.object_property_ranges", false]], "object_property_ranges() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.object_property_ranges", false]], "object_property_values() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.object_property_values", false]], "object_property_values() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.object_property_values", false]], "object_property_values() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.object_property_values", false]], "object_property_values() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.object_property_values", false]], "object_some_values_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.object_some_values_length", false]], "object_union_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric.object_union_length", false]], "objectpropertyhierarchy (class in owlapy.owl_hierarchy)": [[19, "owlapy.owl_hierarchy.ObjectPropertyHierarchy", false]], "ontology (class in owlapy.owl_ontology)": [[23, "owlapy.owl_ontology.Ontology", false]], "ontology (owlapy.owlapi_mapper.owlapimapper attribute)": [[27, "owlapy.owlapi_mapper.OWLAPIMapper.ontology", false]], "ontologymanager (class in owlapy)": [[11, "owlapy.OntologyManager", false]], "ontologymanager (class in owlapy.owl_ontology_manager)": [[24, "owlapy.owl_ontology_manager.OntologyManager", false]], "operands() (owlapy.class_expression.class_expression.owlobjectcomplementof method)": [[4, "owlapy.class_expression.class_expression.OWLObjectComplementOf.operands", false]], "operands() (owlapy.class_expression.nary_boolean_expression.owlnarybooleanclassexpression method)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression.operands", false]], "operands() (owlapy.class_expression.owldataoneof method)": [[5, "owlapy.class_expression.OWLDataOneOf.operands", false]], "operands() (owlapy.class_expression.owlnarybooleanclassexpression method)": [[5, "owlapy.class_expression.OWLNaryBooleanClassExpression.operands", false]], "operands() (owlapy.class_expression.owlobjectcomplementof method)": [[5, "owlapy.class_expression.OWLObjectComplementOf.operands", false]], "operands() (owlapy.class_expression.owlobjectoneof method)": [[5, "owlapy.class_expression.OWLObjectOneOf.operands", false]], "operands() (owlapy.class_expression.restriction.owldataoneof method)": [[8, "owlapy.class_expression.restriction.OWLDataOneOf.operands", false]], "operands() (owlapy.class_expression.restriction.owlobjectoneof method)": [[8, "owlapy.class_expression.restriction.OWLObjectOneOf.operands", false]], "operands() (owlapy.meta_classes.hasoperands method)": [[13, "owlapy.meta_classes.HasOperands.operands", false]], "operands() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom.operands", false]], "operands() (owlapy.owl_data_ranges.owlnarydatarange method)": [[17, "owlapy.owl_data_ranges.OWLNaryDataRange.operands", false]], "operandsettransform (class in owlapy.utils)": [[33, "owlapy.utils.OperandSetTransform", false]], "operator (owlapy.class_expression.owlfacet property)": [[5, "owlapy.class_expression.OWLFacet.operator", false]], "operator (owlapy.vocab.owlfacet property)": [[34, "owlapy.vocab.OWLFacet.operator", false]], "orderedowlobject (class in owlapy.utils)": [[33, "owlapy.utils.OrderedOWLObject", false]], "owl (in module owlapy.namespaces)": [[14, "owlapy.namespaces.OWL", false]], "owl2sparqlconverter (class in owlapy.converter)": [[9, "owlapy.converter.Owl2SparqlConverter", false]], "owl_bottom_data_property (owlapy.vocab.owlrdfvocabulary attribute)": [[34, "owlapy.vocab.OWLRDFVocabulary.OWL_BOTTOM_DATA_PROPERTY", false]], "owl_bottom_object_property (owlapy.vocab.owlrdfvocabulary attribute)": [[34, "owlapy.vocab.OWLRDFVocabulary.OWL_BOTTOM_OBJECT_PROPERTY", false]], "owl_class (owlapy.vocab.owlrdfvocabulary attribute)": [[34, "owlapy.vocab.OWLRDFVocabulary.OWL_CLASS", false]], "owl_datatype_max_exclusive_restriction() (in module owlapy.providers)": [[29, "owlapy.providers.owl_datatype_max_exclusive_restriction", false]], "owl_datatype_max_inclusive_restriction() (in module owlapy.providers)": [[29, "owlapy.providers.owl_datatype_max_inclusive_restriction", false]], "owl_datatype_min_exclusive_restriction() (in module owlapy.providers)": [[29, "owlapy.providers.owl_datatype_min_exclusive_restriction", false]], "owl_datatype_min_inclusive_restriction() (in module owlapy.providers)": [[29, "owlapy.providers.owl_datatype_min_inclusive_restriction", false]], "owl_datatype_min_max_exclusive_restriction() (in module owlapy.providers)": [[29, "owlapy.providers.owl_datatype_min_max_exclusive_restriction", false]], "owl_datatype_min_max_inclusive_restriction() (in module owlapy.providers)": [[29, "owlapy.providers.owl_datatype_min_max_inclusive_restriction", false]], "owl_expression_to_dl() (in module owlapy)": [[11, "owlapy.owl_expression_to_dl", false]], "owl_expression_to_dl() (in module owlapy.render)": [[30, "owlapy.render.owl_expression_to_dl", false]], "owl_expression_to_manchester() (in module owlapy)": [[11, "owlapy.owl_expression_to_manchester", false]], "owl_expression_to_manchester() (in module owlapy.render)": [[30, "owlapy.render.owl_expression_to_manchester", false]], "owl_expression_to_sparql() (in module owlapy)": [[11, "owlapy.owl_expression_to_sparql", false]], "owl_expression_to_sparql() (in module owlapy.converter)": [[9, "owlapy.converter.owl_expression_to_sparql", false]], "owl_expression_to_sparql_with_confusion_matrix() (in module owlapy)": [[11, "owlapy.owl_expression_to_sparql_with_confusion_matrix", false]], "owl_expression_to_sparql_with_confusion_matrix() (in module owlapy.converter)": [[9, "owlapy.converter.owl_expression_to_sparql_with_confusion_matrix", false]], "owl_named_individual (owlapy.vocab.owlrdfvocabulary attribute)": [[34, "owlapy.vocab.OWLRDFVocabulary.OWL_NAMED_INDIVIDUAL", false]], "owl_nothing (owlapy.vocab.owlrdfvocabulary attribute)": [[34, "owlapy.vocab.OWLRDFVocabulary.OWL_NOTHING", false]], "owl_thing (owlapy.vocab.owlrdfvocabulary attribute)": [[34, "owlapy.vocab.OWLRDFVocabulary.OWL_THING", false]], "owl_top_data_property (owlapy.vocab.owlrdfvocabulary attribute)": [[34, "owlapy.vocab.OWLRDFVocabulary.OWL_TOP_DATA_PROPERTY", false]], "owl_top_object_property (owlapy.vocab.owlrdfvocabulary attribute)": [[34, "owlapy.vocab.OWLRDFVocabulary.OWL_TOP_OBJECT_PROPERTY", false]], "owlannotation (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAnnotation", false]], "owlannotationassertionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom", false]], "owlannotationaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAnnotationAxiom", false]], "owlannotationobject (class in owlapy.owl_annotation)": [[15, "owlapy.owl_annotation.OWLAnnotationObject", false]], "owlannotationproperty (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAnnotationProperty", false]], "owlannotationpropertydomainaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom", false]], "owlannotationpropertyrangeaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom", false]], "owlannotationsubject (class in owlapy.owl_annotation)": [[15, "owlapy.owl_annotation.OWLAnnotationSubject", false]], "owlannotationvalue (class in owlapy.owl_annotation)": [[15, "owlapy.owl_annotation.OWLAnnotationValue", false]], "owlanonymousclassexpression (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLAnonymousClassExpression", false]], "owlanonymousclassexpression (class in owlapy.class_expression.class_expression)": [[4, "owlapy.class_expression.class_expression.OWLAnonymousClassExpression", false]], "owlapi_manager (owlapy.owl_ontology_manager.syncontologymanager attribute)": [[24, "owlapy.owl_ontology_manager.SyncOntologyManager.owlapi_manager", false]], "owlapimapper (class in owlapy.owlapi_mapper)": [[27, "owlapy.owlapi_mapper.OWLAPIMapper", false]], "owlapy": [[11, "module-owlapy", false]], "owlapy.abstracts": [[3, "module-owlapy.abstracts", false]], "owlapy.abstracts.abstract_owl_ontology": [[0, "module-owlapy.abstracts.abstract_owl_ontology", false]], "owlapy.abstracts.abstract_owl_ontology_manager": [[1, "module-owlapy.abstracts.abstract_owl_ontology_manager", false]], "owlapy.abstracts.abstract_owl_reasoner": [[2, "module-owlapy.abstracts.abstract_owl_reasoner", false]], "owlapy.class_expression": [[5, "module-owlapy.class_expression", false]], "owlapy.class_expression.class_expression": [[4, "module-owlapy.class_expression.class_expression", false]], "owlapy.class_expression.nary_boolean_expression": [[6, "module-owlapy.class_expression.nary_boolean_expression", false]], "owlapy.class_expression.owl_class": [[7, "module-owlapy.class_expression.owl_class", false]], "owlapy.class_expression.restriction": [[8, "module-owlapy.class_expression.restriction", false]], "owlapy.converter": [[9, "module-owlapy.converter", false]], "owlapy.entities": [[10, "module-owlapy.entities", false]], "owlapy.iri": [[12, "module-owlapy.iri", false]], "owlapy.meta_classes": [[13, "module-owlapy.meta_classes", false]], "owlapy.namespaces": [[14, "module-owlapy.namespaces", false]], "owlapy.owl_annotation": [[15, "module-owlapy.owl_annotation", false]], "owlapy.owl_axiom": [[16, "module-owlapy.owl_axiom", false]], "owlapy.owl_data_ranges": [[17, "module-owlapy.owl_data_ranges", false]], "owlapy.owl_datatype": [[18, "module-owlapy.owl_datatype", false]], "owlapy.owl_hierarchy": [[19, "module-owlapy.owl_hierarchy", false]], "owlapy.owl_individual": [[20, "module-owlapy.owl_individual", false]], "owlapy.owl_literal": [[21, "module-owlapy.owl_literal", false]], "owlapy.owl_object": [[22, "module-owlapy.owl_object", false]], "owlapy.owl_ontology": [[23, "module-owlapy.owl_ontology", false]], "owlapy.owl_ontology_manager": [[24, "module-owlapy.owl_ontology_manager", false]], "owlapy.owl_property": [[25, "module-owlapy.owl_property", false]], "owlapy.owl_reasoner": [[26, "module-owlapy.owl_reasoner", false]], "owlapy.owlapi_mapper": [[27, "module-owlapy.owlapi_mapper", false]], "owlapy.parser": [[28, "module-owlapy.parser", false]], "owlapy.providers": [[29, "module-owlapy.providers", false]], "owlapy.render": [[30, "module-owlapy.render", false]], "owlapy.static_funcs": [[31, "module-owlapy.static_funcs", false]], "owlapy.util_owl_static_funcs": [[32, "module-owlapy.util_owl_static_funcs", false]], "owlapy.utils": [[33, "module-owlapy.utils", false]], "owlapy.vocab": [[34, "module-owlapy.vocab", false]], "owlasymmetricobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAsymmetricObjectPropertyAxiom", false]], "owlaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAxiom", false]], "owlbooleanclassexpression (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLBooleanClassExpression", false]], "owlbooleanclassexpression (class in owlapy.class_expression.class_expression)": [[4, "owlapy.class_expression.class_expression.OWLBooleanClassExpression", false]], "owlbottomdataproperty (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.OWLBottomDataProperty", false]], "owlbottomobjectproperty (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.OWLBottomObjectProperty", false]], "owlcardinalityrestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLCardinalityRestriction", false]], "owlcardinalityrestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLCardinalityRestriction", false]], "owlclass (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLClass", false]], "owlclass (class in owlapy.class_expression.owl_class)": [[7, "owlapy.class_expression.owl_class.OWLClass", false]], "owlclassassertionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLClassAssertionAxiom", false]], "owlclassaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLClassAxiom", false]], "owlclassexpression (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLClassExpression", false]], "owlclassexpression (class in owlapy.class_expression.class_expression)": [[4, "owlapy.class_expression.class_expression.OWLClassExpression", false]], "owlclassexpressionlengthmetric (class in owlapy.utils)": [[33, "owlapy.utils.OWLClassExpressionLengthMetric", false]], "owldataallvaluesfrom (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLDataAllValuesFrom", false]], "owldataallvaluesfrom (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLDataAllValuesFrom", false]], "owldatacardinalityrestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLDataCardinalityRestriction", false]], "owldatacardinalityrestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLDataCardinalityRestriction", false]], "owldatacomplementof (class in owlapy.owl_data_ranges)": [[17, "owlapy.owl_data_ranges.OWLDataComplementOf", false]], "owldataexactcardinality (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLDataExactCardinality", false]], "owldataexactcardinality (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLDataExactCardinality", false]], "owldatahasvalue (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLDataHasValue", false]], "owldatahasvalue (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLDataHasValue", false]], "owldataintersectionof (class in owlapy.owl_data_ranges)": [[17, "owlapy.owl_data_ranges.OWLDataIntersectionOf", false]], "owldatamaxcardinality (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLDataMaxCardinality", false]], "owldatamaxcardinality (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLDataMaxCardinality", false]], "owldatamincardinality (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLDataMinCardinality", false]], "owldatamincardinality (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLDataMinCardinality", false]], "owldataoneof (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLDataOneOf", false]], "owldataoneof (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLDataOneOf", false]], "owldataproperty (class in owlapy.owl_property)": [[25, "owlapy.owl_property.OWLDataProperty", false]], "owldatapropertyassertionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDataPropertyAssertionAxiom", false]], "owldatapropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDataPropertyAxiom", false]], "owldatapropertycharacteristicaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom", false]], "owldatapropertydomainaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDataPropertyDomainAxiom", false]], "owldatapropertyexpression (class in owlapy.owl_property)": [[25, "owlapy.owl_property.OWLDataPropertyExpression", false]], "owldatapropertyrangeaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDataPropertyRangeAxiom", false]], "owldatarange (class in owlapy.owl_data_ranges)": [[17, "owlapy.owl_data_ranges.OWLDataRange", false]], "owldatarestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLDataRestriction", false]], "owldatarestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLDataRestriction", false]], "owldatasomevaluesfrom (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLDataSomeValuesFrom", false]], "owldatasomevaluesfrom (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLDataSomeValuesFrom", false]], "owldatatype (class in owlapy.owl_datatype)": [[18, "owlapy.owl_datatype.OWLDatatype", false]], "owldatatypedefinitionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom", false]], "owldatatyperestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLDatatypeRestriction", false]], "owldatatyperestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLDatatypeRestriction", false]], "owldataunionof (class in owlapy.owl_data_ranges)": [[17, "owlapy.owl_data_ranges.OWLDataUnionOf", false]], "owldeclarationaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDeclarationAxiom", false]], "owldifferentindividualsaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDifferentIndividualsAxiom", false]], "owldisjointclassesaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDisjointClassesAxiom", false]], "owldisjointdatapropertiesaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDisjointDataPropertiesAxiom", false]], "owldisjointobjectpropertiesaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDisjointObjectPropertiesAxiom", false]], "owldisjointunionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom", false]], "owlentity (class in owlapy.owl_object)": [[22, "owlapy.owl_object.OWLEntity", false]], "owlequivalentclassesaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLEquivalentClassesAxiom", false]], "owlequivalentdatapropertiesaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLEquivalentDataPropertiesAxiom", false]], "owlequivalentobjectpropertiesaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLEquivalentObjectPropertiesAxiom", false]], "owlfacet (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLFacet", false]], "owlfacet (class in owlapy.vocab)": [[34, "owlapy.vocab.OWLFacet", false]], "owlfacetrestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLFacetRestriction", false]], "owlfacetrestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLFacetRestriction", false]], "owlfunctionaldatapropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLFunctionalDataPropertyAxiom", false]], "owlfunctionalobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLFunctionalObjectPropertyAxiom", false]], "owlhaskeyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom", false]], "owlhasvaluerestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLHasValueRestriction", false]], "owlhasvaluerestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLHasValueRestriction", false]], "owlimportsdeclaration (class in owlapy.owl_ontology_manager)": [[24, "owlapy.owl_ontology_manager.OWLImportsDeclaration", false]], "owlindividual (class in owlapy.owl_individual)": [[20, "owlapy.owl_individual.OWLIndividual", false]], "owlindividualaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLIndividualAxiom", false]], "owlinversefunctionalobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLInverseFunctionalObjectPropertyAxiom", false]], "owlinverseobjectpropertiesaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom", false]], "owlirreflexiveobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLIrreflexiveObjectPropertyAxiom", false]], "owlliteral (class in owlapy.owl_literal)": [[21, "owlapy.owl_literal.OWLLiteral", false]], "owllogicalaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLLogicalAxiom", false]], "owlnamedindividual (class in owlapy.owl_individual)": [[20, "owlapy.owl_individual.OWLNamedIndividual", false]], "owlnamedobject (class in owlapy.owl_object)": [[22, "owlapy.owl_object.OWLNamedObject", false]], "owlnaryaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLNaryAxiom", false]], "owlnarybooleanclassexpression (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLNaryBooleanClassExpression", false]], "owlnarybooleanclassexpression (class in owlapy.class_expression.nary_boolean_expression)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression", false]], "owlnaryclassaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLNaryClassAxiom", false]], "owlnarydatarange (class in owlapy.owl_data_ranges)": [[17, "owlapy.owl_data_ranges.OWLNaryDataRange", false]], "owlnaryindividualaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLNaryIndividualAxiom", false]], "owlnarypropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLNaryPropertyAxiom", false]], "owlnegativedatapropertyassertionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLNegativeDataPropertyAssertionAxiom", false]], "owlnegativeobjectpropertyassertionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLNegativeObjectPropertyAssertionAxiom", false]], "owlobject (class in owlapy.owl_object)": [[22, "owlapy.owl_object.OWLObject", false]], "owlobjectallvaluesfrom (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectAllValuesFrom", false]], "owlobjectallvaluesfrom (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLObjectAllValuesFrom", false]], "owlobjectcardinalityrestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectCardinalityRestriction", false]], "owlobjectcardinalityrestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLObjectCardinalityRestriction", false]], "owlobjectcomplementof (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectComplementOf", false]], "owlobjectcomplementof (class in owlapy.class_expression.class_expression)": [[4, "owlapy.class_expression.class_expression.OWLObjectComplementOf", false]], "owlobjectexactcardinality (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectExactCardinality", false]], "owlobjectexactcardinality (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLObjectExactCardinality", false]], "owlobjecthasself (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectHasSelf", false]], "owlobjecthasself (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLObjectHasSelf", false]], "owlobjecthasvalue (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectHasValue", false]], "owlobjecthasvalue (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLObjectHasValue", false]], "owlobjectintersectionof (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectIntersectionOf", false]], "owlobjectintersectionof (class in owlapy.class_expression.nary_boolean_expression)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLObjectIntersectionOf", false]], "owlobjectinverseof (class in owlapy.owl_property)": [[25, "owlapy.owl_property.OWLObjectInverseOf", false]], "owlobjectmaxcardinality (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectMaxCardinality", false]], "owlobjectmaxcardinality (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLObjectMaxCardinality", false]], "owlobjectmincardinality (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectMinCardinality", false]], "owlobjectmincardinality (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLObjectMinCardinality", false]], "owlobjectoneof (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectOneOf", false]], "owlobjectoneof (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLObjectOneOf", false]], "owlobjectparser (class in owlapy.owl_object)": [[22, "owlapy.owl_object.OWLObjectParser", false]], "owlobjectproperty (class in owlapy.owl_property)": [[25, "owlapy.owl_property.OWLObjectProperty", false]], "owlobjectpropertyassertionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLObjectPropertyAssertionAxiom", false]], "owlobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLObjectPropertyAxiom", false]], "owlobjectpropertycharacteristicaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom", false]], "owlobjectpropertydomainaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLObjectPropertyDomainAxiom", false]], "owlobjectpropertyexpression (class in owlapy.owl_property)": [[25, "owlapy.owl_property.OWLObjectPropertyExpression", false]], "owlobjectpropertyrangeaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLObjectPropertyRangeAxiom", false]], "owlobjectrenderer (class in owlapy.owl_object)": [[22, "owlapy.owl_object.OWLObjectRenderer", false]], "owlobjectrestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectRestriction", false]], "owlobjectrestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLObjectRestriction", false]], "owlobjectsomevaluesfrom (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectSomeValuesFrom", false]], "owlobjectsomevaluesfrom (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLObjectSomeValuesFrom", false]], "owlobjectunionof (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectUnionOf", false]], "owlobjectunionof (class in owlapy.class_expression.nary_boolean_expression)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLObjectUnionOf", false]], "owlontologyid (class in owlapy.owl_ontology)": [[23, "owlapy.owl_ontology.OWLOntologyID", false]], "owlproperty (class in owlapy.owl_property)": [[25, "owlapy.owl_property.OWLProperty", false]], "owlpropertyassertionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom", false]], "owlpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLPropertyAxiom", false]], "owlpropertydomainaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLPropertyDomainAxiom", false]], "owlpropertyexpression (class in owlapy.owl_property)": [[25, "owlapy.owl_property.OWLPropertyExpression", false]], "owlpropertyrange (class in owlapy.owl_data_ranges)": [[17, "owlapy.owl_data_ranges.OWLPropertyRange", false]], "owlpropertyrangeaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLPropertyRangeAxiom", false]], "owlquantifieddatarestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLQuantifiedDataRestriction", false]], "owlquantifieddatarestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLQuantifiedDataRestriction", false]], "owlquantifiedobjectrestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLQuantifiedObjectRestriction", false]], "owlquantifiedobjectrestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLQuantifiedObjectRestriction", false]], "owlquantifiedrestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLQuantifiedRestriction", false]], "owlquantifiedrestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLQuantifiedRestriction", false]], "owlrdfvocabulary (class in owlapy.vocab)": [[34, "owlapy.vocab.OWLRDFVocabulary", false]], "owlready2_facet_keys (in module owlapy.owl_ontology)": [[23, "owlapy.owl_ontology.OWLREADY2_FACET_KEYS", false]], "owlreflexiveobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLReflexiveObjectPropertyAxiom", false]], "owlrestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLRestriction", false]], "owlrestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLRestriction", false]], "owlsameindividualaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLSameIndividualAxiom", false]], "owlsubannotationpropertyofaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom", false]], "owlsubclassofaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLSubClassOfAxiom", false]], "owlsubdatapropertyofaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLSubDataPropertyOfAxiom", false]], "owlsubobjectpropertyofaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLSubObjectPropertyOfAxiom", false]], "owlsubpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLSubPropertyAxiom", false]], "owlsymmetricobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLSymmetricObjectPropertyAxiom", false]], "owltopdataproperty (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.OWLTopDataProperty", false]], "owltopobjectproperty (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.OWLTopObjectProperty", false]], "owltransitiveobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLTransitiveObjectPropertyAxiom", false]], "owlunarypropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLUnaryPropertyAxiom", false]], "parent (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.parent", false]], "parent_var (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.parent_var", false]], "parents() (owlapy.owl_hierarchy.abstracthierarchy method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.parents", false]], "parse_boolean() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.parse_boolean", false]], "parse_date() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.parse_date", false]], "parse_datetime() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.parse_datetime", false]], "parse_double() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.parse_double", false]], "parse_duration() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.parse_duration", false]], "parse_expression() (owlapy.owl_object.owlobjectparser method)": [[22, "owlapy.owl_object.OWLObjectParser.parse_expression", false]], "parse_expression() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.parse_expression", false]], "parse_expression() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.parse_expression", false]], "parse_integer() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.parse_integer", false]], "parse_string() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.parse_string", false]], "parser (owlapy.owlapi_mapper.owlapimapper attribute)": [[27, "owlapy.owlapi_mapper.OWLAPIMapper.parser", false]], "path (owlapy.owl_ontology.syncontology attribute)": [[23, "owlapy.owl_ontology.SyncOntology.path", false]], "pattern (owlapy.class_expression.owlfacet attribute)": [[5, "owlapy.class_expression.OWLFacet.PATTERN", false]], "pattern (owlapy.vocab.owlfacet attribute)": [[34, "owlapy.vocab.OWLFacet.PATTERN", false]], "peek() (in module owlapy.converter)": [[9, "owlapy.converter.peek", false]], "prefix (owlapy.namespaces.namespaces property)": [[14, "owlapy.namespaces.Namespaces.prefix", false]], "prev (owlapy.utils.lrucache attribute)": [[33, "owlapy.utils.LRUCache.PREV", false]], "process() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.process", false]], "prop_cnt (owlapy.converter.variablesmapping attribute)": [[9, "owlapy.converter.VariablesMapping.prop_cnt", false]], "properties (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.properties", false]], "properties() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryPropertyAxiom.properties", false]], "properties_in_signature() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.properties_in_signature", false]], "rdf (in module owlapy.namespaces)": [[14, "owlapy.namespaces.RDF", false]], "rdfs (in module owlapy.namespaces)": [[14, "owlapy.namespaces.RDFS", false]], "rdfs_literal (owlapy.vocab.owlrdfvocabulary attribute)": [[34, "owlapy.vocab.OWLRDFVocabulary.RDFS_LITERAL", false]], "reasoner (owlapy.owl_reasoner.syncreasoner attribute)": [[26, "owlapy.owl_reasoner.SyncReasoner.reasoner", false]], "reminder (owlapy.class_expression.owl_class.owlclass property)": [[7, "owlapy.class_expression.owl_class.OWLClass.reminder", false]], "reminder (owlapy.class_expression.owlclass property)": [[5, "owlapy.class_expression.OWLClass.reminder", false]], "reminder (owlapy.iri.iri property)": [[12, "owlapy.iri.IRI.reminder", false]], "remove_axiom() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.remove_axiom", false]], "remove_axiom() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.remove_axiom", false]], "remove_axiom() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.remove_axiom", false]], "remove_axiom() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.remove_axiom", false]], "render() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.render", false]], "render() (owlapy.owl_object.owlobjectrenderer method)": [[22, "owlapy.owl_object.OWLObjectRenderer.render", false]], "render() (owlapy.render.dlsyntaxobjectrenderer method)": [[30, "owlapy.render.DLSyntaxObjectRenderer.render", false]], "render() (owlapy.render.manchesterowlsyntaxowlobjectrenderer method)": [[30, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer.render", false]], "renderer (owlapy.owlapi_mapper.owlapimapper attribute)": [[27, "owlapy.owlapi_mapper.OWLAPIMapper.renderer", false]], "reset() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.reset", false]], "reset_and_disable_cache() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.reset_and_disable_cache", false]], "restrict() (owlapy.owl_hierarchy.abstracthierarchy static method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.restrict", false]], "restrict_and_copy() (owlapy.owl_hierarchy.abstracthierarchy method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.restrict_and_copy", false]], "restriction_literals (in module owlapy.providers)": [[29, "owlapy.providers.Restriction_Literals", false]], "result (owlapy.utils.lrucache attribute)": [[33, "owlapy.utils.LRUCache.RESULT", false]], "root (owlapy.utils.lrucache attribute)": [[33, "owlapy.utils.LRUCache.root", false]], "roots() (owlapy.owl_hierarchy.abstracthierarchy method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.roots", false]], "run": [[35, "module-run", false]], "run_with_timeout() (in module owlapy.utils)": [[33, "owlapy.utils.run_with_timeout", false]], "same_individuals() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.same_individuals", false]], "same_individuals() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.same_individuals", false]], "same_individuals() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.same_individuals", false]], "same_individuals() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.same_individuals", false]], "save() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.save", false]], "save() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.save", false]], "save() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.save", false]], "save_owl_class_expressions() (in module owlapy.util_owl_static_funcs)": [[32, "owlapy.util_owl_static_funcs.save_owl_class_expressions", false]], "save_world() (owlapy.ontologymanager method)": [[11, "owlapy.OntologyManager.save_world", false]], "save_world() (owlapy.owl_ontology_manager.ontologymanager method)": [[24, "owlapy.owl_ontology_manager.OntologyManager.save_world", false]], "sentinel (owlapy.utils.lrucache attribute)": [[33, "id1", false], [33, "owlapy.utils.LRUCache.sentinel", false]], "set_short_form_provider() (owlapy.owl_object.owlobjectrenderer method)": [[22, "owlapy.owl_object.OWLObjectRenderer.set_short_form_provider", false]], "set_short_form_provider() (owlapy.render.dlsyntaxobjectrenderer method)": [[30, "owlapy.render.DLSyntaxObjectRenderer.set_short_form_provider", false]], "set_short_form_provider() (owlapy.render.manchesterowlsyntaxowlobjectrenderer method)": [[30, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer.set_short_form_provider", false]], "siblings() (owlapy.owl_hierarchy.abstracthierarchy method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.siblings", false]], "simplify() (owlapy.utils.operandsettransform method)": [[33, "owlapy.utils.OperandSetTransform.simplify", false]], "slots (owlapy.parser.dlsyntaxparser attribute)": [[28, "owlapy.parser.DLSyntaxParser.slots", false]], "slots (owlapy.parser.manchesterowlsyntaxparser attribute)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.slots", false]], "sort() (owlapy.utils.conceptoperandsorter method)": [[33, "owlapy.utils.ConceptOperandSorter.sort", false]], "sparql (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.sparql", false]], "stack_parent() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.stack_parent", false]], "stack_variable() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.stack_variable", false]], "startjvm() (in module owlapy.static_funcs)": [[31, "owlapy.static_funcs.startJVM", false]], "stopjvm() (in module owlapy.static_funcs)": [[31, "owlapy.static_funcs.stopJVM", false]], "str (owlapy.class_expression.owl_class.owlclass property)": [[7, "owlapy.class_expression.owl_class.OWLClass.str", false]], "str (owlapy.class_expression.owlclass property)": [[5, "owlapy.class_expression.OWLClass.str", false]], "str (owlapy.iri.iri property)": [[12, "owlapy.iri.IRI.str", false]], "str (owlapy.meta_classes.hasiri property)": [[13, "owlapy.meta_classes.HasIRI.str", false]], "str (owlapy.owl_axiom.owlannotationproperty property)": [[16, "owlapy.owl_axiom.OWLAnnotationProperty.str", false]], "str (owlapy.owl_datatype.owldatatype property)": [[18, "owlapy.owl_datatype.OWLDatatype.str", false]], "str (owlapy.owl_individual.owlnamedindividual property)": [[20, "owlapy.owl_individual.OWLNamedIndividual.str", false]], "str (owlapy.owl_ontology_manager.owlimportsdeclaration property)": [[24, "owlapy.owl_ontology_manager.OWLImportsDeclaration.str", false]], "str (owlapy.owl_property.owlproperty property)": [[25, "owlapy.owl_property.OWLProperty.str", false]], "string (owlapy.vocab.xsdvocabulary attribute)": [[34, "owlapy.vocab.XSDVocabulary.STRING", false]], "stringowldatatype (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.StringOWLDatatype", false]], "structuralreasoner (class in owlapy.owl_reasoner)": [[26, "owlapy.owl_reasoner.StructuralReasoner", false]], "sub_classes() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.sub_classes", false]], "sub_classes() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.sub_classes", false]], "sub_classes() (owlapy.owl_hierarchy.classhierarchy method)": [[19, "owlapy.owl_hierarchy.ClassHierarchy.sub_classes", false]], "sub_classes() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.sub_classes", false]], "sub_classes() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.sub_classes", false]], "sub_data_properties() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.sub_data_properties", false]], "sub_data_properties() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.sub_data_properties", false]], "sub_data_properties() (owlapy.owl_hierarchy.datatypepropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.DatatypePropertyHierarchy.sub_data_properties", false]], "sub_data_properties() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.sub_data_properties", false]], "sub_data_properties() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.sub_data_properties", false]], "sub_object_properties() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.sub_object_properties", false]], "sub_object_properties() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.sub_object_properties", false]], "sub_object_properties() (owlapy.owl_hierarchy.objectpropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.ObjectPropertyHierarchy.sub_object_properties", false]], "sub_object_properties() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.sub_object_properties", false]], "sub_object_properties() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.sub_object_properties", false]], "super_classes() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.super_classes", false]], "super_classes() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.super_classes", false]], "super_classes() (owlapy.owl_hierarchy.classhierarchy method)": [[19, "owlapy.owl_hierarchy.ClassHierarchy.super_classes", false]], "super_classes() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.super_classes", false]], "super_classes() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.super_classes", false]], "super_data_properties() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.super_data_properties", false]], "super_data_properties() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.super_data_properties", false]], "super_data_properties() (owlapy.owl_hierarchy.datatypepropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.DatatypePropertyHierarchy.super_data_properties", false]], "super_data_properties() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.super_data_properties", false]], "super_data_properties() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.super_data_properties", false]], "super_object_properties() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.super_object_properties", false]], "super_object_properties() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.super_object_properties", false]], "super_object_properties() (owlapy.owl_hierarchy.objectpropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.ObjectPropertyHierarchy.super_object_properties", false]], "super_object_properties() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.super_object_properties", false]], "super_object_properties() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.super_object_properties", false]], "symbolic_form (owlapy.class_expression.owlfacet property)": [[5, "owlapy.class_expression.OWLFacet.symbolic_form", false]], "symbolic_form (owlapy.vocab.owlfacet property)": [[34, "owlapy.vocab.OWLFacet.symbolic_form", false]], "syncontology (class in owlapy.owl_ontology)": [[23, "owlapy.owl_ontology.SyncOntology", false]], "syncontologymanager (class in owlapy.owl_ontology_manager)": [[24, "owlapy.owl_ontology_manager.SyncOntologyManager", false]], "syncreasoner (class in owlapy.owl_reasoner)": [[26, "owlapy.owl_reasoner.SyncReasoner", false]], "tbox_axioms() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.tbox_axioms", false]], "time_datatypes (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.TIME_DATATYPES", false]], "to_list() (owlapy.owlapi_mapper.owlapimapper static method)": [[27, "owlapy.owlapi_mapper.OWLAPIMapper.to_list", false]], "to_python() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.to_python", false]], "to_string_id() (owlapy.owl_object.owlentity method)": [[22, "owlapy.owl_object.OWLEntity.to_string_id", false]], "toowlready2 (class in owlapy.owl_ontology)": [[23, "owlapy.owl_ontology.ToOwlready2", false]], "toplevelcnf (class in owlapy.utils)": [[33, "owlapy.utils.TopLevelCNF", false]], "topleveldnf (class in owlapy.utils)": [[33, "owlapy.utils.TopLevelDNF", false]], "topowldatatype (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.TopOWLDatatype", false]], "total_digits (owlapy.class_expression.owlfacet attribute)": [[5, "owlapy.class_expression.OWLFacet.TOTAL_DIGITS", false]], "total_digits (owlapy.vocab.owlfacet attribute)": [[34, "owlapy.vocab.OWLFacet.TOTAL_DIGITS", false]], "translating_short_form_endpoint() (in module owlapy.render)": [[30, "owlapy.render.translating_short_form_endpoint", false]], "translating_short_form_provider() (in module owlapy.render)": [[30, "owlapy.render.translating_short_form_provider", false]], "triple() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.triple", false]], "type_index (owlapy.abstracts.abstract_owl_ontology.abstractowlontology attribute)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.type_index", false]], "type_index (owlapy.abstracts.abstractowlontology attribute)": [[3, "owlapy.abstracts.AbstractOWLOntology.type_index", false]], "type_index (owlapy.class_expression.class_expression.owlobjectcomplementof attribute)": [[4, "owlapy.class_expression.class_expression.OWLObjectComplementOf.type_index", false]], "type_index (owlapy.class_expression.nary_boolean_expression.owlobjectintersectionof attribute)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLObjectIntersectionOf.type_index", false]], "type_index (owlapy.class_expression.nary_boolean_expression.owlobjectunionof attribute)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLObjectUnionOf.type_index", false]], "type_index (owlapy.class_expression.owl_class.owlclass attribute)": [[7, "owlapy.class_expression.owl_class.OWLClass.type_index", false]], "type_index (owlapy.class_expression.owlclass attribute)": [[5, "owlapy.class_expression.OWLClass.type_index", false]], "type_index (owlapy.class_expression.owldataallvaluesfrom attribute)": [[5, "owlapy.class_expression.OWLDataAllValuesFrom.type_index", false]], "type_index (owlapy.class_expression.owldataexactcardinality attribute)": [[5, "owlapy.class_expression.OWLDataExactCardinality.type_index", false]], "type_index (owlapy.class_expression.owldatahasvalue attribute)": [[5, "owlapy.class_expression.OWLDataHasValue.type_index", false]], "type_index (owlapy.class_expression.owldatamaxcardinality attribute)": [[5, "owlapy.class_expression.OWLDataMaxCardinality.type_index", false]], "type_index (owlapy.class_expression.owldatamincardinality attribute)": [[5, "owlapy.class_expression.OWLDataMinCardinality.type_index", false]], "type_index (owlapy.class_expression.owldataoneof attribute)": [[5, "owlapy.class_expression.OWLDataOneOf.type_index", false]], "type_index (owlapy.class_expression.owldatasomevaluesfrom attribute)": [[5, "owlapy.class_expression.OWLDataSomeValuesFrom.type_index", false]], "type_index (owlapy.class_expression.owldatatyperestriction attribute)": [[5, "owlapy.class_expression.OWLDatatypeRestriction.type_index", false]], "type_index (owlapy.class_expression.owlfacetrestriction attribute)": [[5, "owlapy.class_expression.OWLFacetRestriction.type_index", false]], "type_index (owlapy.class_expression.owlobjectallvaluesfrom attribute)": [[5, "owlapy.class_expression.OWLObjectAllValuesFrom.type_index", false]], "type_index (owlapy.class_expression.owlobjectcomplementof attribute)": [[5, "owlapy.class_expression.OWLObjectComplementOf.type_index", false]], "type_index (owlapy.class_expression.owlobjectexactcardinality attribute)": [[5, "owlapy.class_expression.OWLObjectExactCardinality.type_index", false]], "type_index (owlapy.class_expression.owlobjecthasself attribute)": [[5, "owlapy.class_expression.OWLObjectHasSelf.type_index", false]], "type_index (owlapy.class_expression.owlobjecthasvalue attribute)": [[5, "owlapy.class_expression.OWLObjectHasValue.type_index", false]], "type_index (owlapy.class_expression.owlobjectintersectionof attribute)": [[5, "owlapy.class_expression.OWLObjectIntersectionOf.type_index", false]], "type_index (owlapy.class_expression.owlobjectmaxcardinality attribute)": [[5, "owlapy.class_expression.OWLObjectMaxCardinality.type_index", false]], "type_index (owlapy.class_expression.owlobjectmincardinality attribute)": [[5, "owlapy.class_expression.OWLObjectMinCardinality.type_index", false]], "type_index (owlapy.class_expression.owlobjectoneof attribute)": [[5, "owlapy.class_expression.OWLObjectOneOf.type_index", false]], "type_index (owlapy.class_expression.owlobjectsomevaluesfrom attribute)": [[5, "owlapy.class_expression.OWLObjectSomeValuesFrom.type_index", false]], "type_index (owlapy.class_expression.owlobjectunionof attribute)": [[5, "owlapy.class_expression.OWLObjectUnionOf.type_index", false]], "type_index (owlapy.class_expression.restriction.owldataallvaluesfrom attribute)": [[8, "owlapy.class_expression.restriction.OWLDataAllValuesFrom.type_index", false]], "type_index (owlapy.class_expression.restriction.owldataexactcardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLDataExactCardinality.type_index", false]], "type_index (owlapy.class_expression.restriction.owldatahasvalue attribute)": [[8, "owlapy.class_expression.restriction.OWLDataHasValue.type_index", false]], "type_index (owlapy.class_expression.restriction.owldatamaxcardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLDataMaxCardinality.type_index", false]], "type_index (owlapy.class_expression.restriction.owldatamincardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLDataMinCardinality.type_index", false]], "type_index (owlapy.class_expression.restriction.owldataoneof attribute)": [[8, "owlapy.class_expression.restriction.OWLDataOneOf.type_index", false]], "type_index (owlapy.class_expression.restriction.owldatasomevaluesfrom attribute)": [[8, "owlapy.class_expression.restriction.OWLDataSomeValuesFrom.type_index", false]], "type_index (owlapy.class_expression.restriction.owldatatyperestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLDatatypeRestriction.type_index", false]], "type_index (owlapy.class_expression.restriction.owlfacetrestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLFacetRestriction.type_index", false]], "type_index (owlapy.class_expression.restriction.owlobjectallvaluesfrom attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectAllValuesFrom.type_index", false]], "type_index (owlapy.class_expression.restriction.owlobjectexactcardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectExactCardinality.type_index", false]], "type_index (owlapy.class_expression.restriction.owlobjecthasself attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectHasSelf.type_index", false]], "type_index (owlapy.class_expression.restriction.owlobjecthasvalue attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectHasValue.type_index", false]], "type_index (owlapy.class_expression.restriction.owlobjectmaxcardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectMaxCardinality.type_index", false]], "type_index (owlapy.class_expression.restriction.owlobjectmincardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectMinCardinality.type_index", false]], "type_index (owlapy.class_expression.restriction.owlobjectoneof attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectOneOf.type_index", false]], "type_index (owlapy.class_expression.restriction.owlobjectsomevaluesfrom attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectSomeValuesFrom.type_index", false]], "type_index (owlapy.iri.iri attribute)": [[12, "owlapy.iri.IRI.type_index", false]], "type_index (owlapy.owl_data_ranges.owldatacomplementof attribute)": [[17, "owlapy.owl_data_ranges.OWLDataComplementOf.type_index", false]], "type_index (owlapy.owl_data_ranges.owldataintersectionof attribute)": [[17, "owlapy.owl_data_ranges.OWLDataIntersectionOf.type_index", false]], "type_index (owlapy.owl_data_ranges.owldataunionof attribute)": [[17, "owlapy.owl_data_ranges.OWLDataUnionOf.type_index", false]], "type_index (owlapy.owl_datatype.owldatatype attribute)": [[18, "owlapy.owl_datatype.OWLDatatype.type_index", false]], "type_index (owlapy.owl_individual.owlnamedindividual attribute)": [[20, "owlapy.owl_individual.OWLNamedIndividual.type_index", false]], "type_index (owlapy.owl_literal.owlliteral attribute)": [[21, "owlapy.owl_literal.OWLLiteral.type_index", false]], "type_index (owlapy.owl_property.owldataproperty attribute)": [[25, "owlapy.owl_property.OWLDataProperty.type_index", false]], "type_index (owlapy.owl_property.owlobjectinverseof attribute)": [[25, "owlapy.owl_property.OWLObjectInverseOf.type_index", false]], "type_index (owlapy.owl_property.owlobjectproperty attribute)": [[25, "owlapy.owl_property.OWLObjectProperty.type_index", false]], "type_index (owlapy.utils.hasindex attribute)": [[33, "owlapy.utils.HasIndex.type_index", false]], "types() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.types", false]], "types() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.types", false]], "types() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.types", false]], "types() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.types", false]], "unsatisfiable_classes() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.unsatisfiable_classes", false]], "values() (owlapy.class_expression.owldataoneof method)": [[5, "owlapy.class_expression.OWLDataOneOf.values", false]], "values() (owlapy.class_expression.restriction.owldataoneof method)": [[8, "owlapy.class_expression.restriction.OWLDataOneOf.values", false]], "variable_entities (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.variable_entities", false]], "variables (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.variables", false]], "variablesmapping (class in owlapy.converter)": [[9, "owlapy.converter.VariablesMapping", false]], "visit_abbreviated_iri() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_abbreviated_iri", false]], "visit_abbreviated_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_abbreviated_iri", false]], "visit_boolean_literal() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_boolean_literal", false]], "visit_boolean_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_boolean_literal", false]], "visit_cardinality_res() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_cardinality_res", false]], "visit_cardinality_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_cardinality_res", false]], "visit_class_expression() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_class_expression", false]], "visit_class_expression() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_class_expression", false]], "visit_class_iri() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_class_iri", false]], "visit_class_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_class_iri", false]], "visit_data_cardinality_res() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_data_cardinality_res", false]], "visit_data_cardinality_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_cardinality_res", false]], "visit_data_intersection() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_data_intersection", false]], "visit_data_intersection() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_intersection", false]], "visit_data_parentheses() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_data_parentheses", false]], "visit_data_parentheses() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_parentheses", false]], "visit_data_primary() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_data_primary", false]], "visit_data_primary() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_primary", false]], "visit_data_property_iri() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_data_property_iri", false]], "visit_data_property_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_property_iri", false]], "visit_data_some_only_res() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_data_some_only_res", false]], "visit_data_some_only_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_some_only_res", false]], "visit_data_union() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_data_union", false]], "visit_data_union() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_union", false]], "visit_data_value_res() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_data_value_res", false]], "visit_data_value_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_value_res", false]], "visit_datatype() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_datatype", false]], "visit_datatype() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datatype", false]], "visit_datatype_iri() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_datatype_iri", false]], "visit_datatype_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datatype_iri", false]], "visit_datatype_restriction() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_datatype_restriction", false]], "visit_datatype_restriction() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datatype_restriction", false]], "visit_date_literal() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_date_literal", false]], "visit_date_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_date_literal", false]], "visit_datetime_literal() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_datetime_literal", false]], "visit_datetime_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datetime_literal", false]], "visit_decimal_literal() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_decimal_literal", false]], "visit_decimal_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_decimal_literal", false]], "visit_duration_literal() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_duration_literal", false]], "visit_duration_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_duration_literal", false]], "visit_facet() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_facet", false]], "visit_facet() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_facet", false]], "visit_facet_restriction() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_facet_restriction", false]], "visit_facet_restriction() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_facet_restriction", false]], "visit_facet_restrictions() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_facet_restrictions", false]], "visit_facet_restrictions() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_facet_restrictions", false]], "visit_float_literal() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_float_literal", false]], "visit_float_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_float_literal", false]], "visit_full_iri() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_full_iri", false]], "visit_full_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_full_iri", false]], "visit_has_self() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_has_self", false]], "visit_has_self() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_has_self", false]], "visit_individual_iri() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_individual_iri", false]], "visit_individual_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_individual_iri", false]], "visit_individual_list() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_individual_list", false]], "visit_individual_list() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_individual_list", false]], "visit_integer_literal() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_integer_literal", false]], "visit_integer_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_integer_literal", false]], "visit_intersection() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_intersection", false]], "visit_intersection() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_intersection", false]], "visit_iri() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_iri", false]], "visit_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_iri", false]], "visit_literal() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_literal", false]], "visit_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_literal", false]], "visit_literal_list() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_literal_list", false]], "visit_literal_list() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_literal_list", false]], "visit_non_negative_integer() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_non_negative_integer", false]], "visit_non_negative_integer() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_non_negative_integer", false]], "visit_object_property() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_object_property", false]], "visit_object_property() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_object_property", false]], "visit_object_property_iri() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_object_property_iri", false]], "visit_object_property_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_object_property_iri", false]], "visit_parentheses() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_parentheses", false]], "visit_parentheses() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_parentheses", false]], "visit_primary() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_primary", false]], "visit_primary() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_primary", false]], "visit_quoted_string() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_quoted_string", false]], "visit_quoted_string() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_quoted_string", false]], "visit_simple_iri() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_simple_iri", false]], "visit_simple_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_simple_iri", false]], "visit_some_only_res() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_some_only_res", false]], "visit_some_only_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_some_only_res", false]], "visit_string_literal_language() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_string_literal_language", false]], "visit_string_literal_language() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_string_literal_language", false]], "visit_string_literal_no_language() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_string_literal_no_language", false]], "visit_string_literal_no_language() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_string_literal_no_language", false]], "visit_typed_literal() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_typed_literal", false]], "visit_typed_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_typed_literal", false]], "visit_union() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_union", false]], "visit_union() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_union", false]], "visit_value_res() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_value_res", false]], "visit_value_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_value_res", false]], "worst() (owlapy.utils.evaluateddescriptionset method)": [[33, "owlapy.utils.EvaluatedDescriptionSet.worst", false]], "xsd (in module owlapy.namespaces)": [[14, "owlapy.namespaces.XSD", false]], "xsdvocabulary (class in owlapy.vocab)": [[34, "owlapy.vocab.XSDVocabulary", false]]}, "objects": {"": [[11, 0, 0, "-", "owlapy"], [35, 0, 0, "-", "run"]], "owlapy": [[11, 1, 1, "", "OntologyManager"], [3, 0, 0, "-", "abstracts"], [5, 0, 0, "-", "class_expression"], [9, 0, 0, "-", "converter"], [11, 6, 1, "", "dl_to_owl_expression"], [10, 0, 0, "-", "entities"], [12, 0, 0, "-", "iri"], [11, 6, 1, "", "manchester_to_owl_expression"], [13, 0, 0, "-", "meta_classes"], [14, 0, 0, "-", "namespaces"], [15, 0, 0, "-", "owl_annotation"], [16, 0, 0, "-", "owl_axiom"], [17, 0, 0, "-", "owl_data_ranges"], [18, 0, 0, "-", "owl_datatype"], [11, 6, 1, "", "owl_expression_to_dl"], [11, 6, 1, "", "owl_expression_to_manchester"], [11, 6, 1, "", "owl_expression_to_sparql"], [11, 6, 1, "", "owl_expression_to_sparql_with_confusion_matrix"], [19, 0, 0, "-", "owl_hierarchy"], [20, 0, 0, "-", "owl_individual"], [21, 0, 0, "-", "owl_literal"], [22, 0, 0, "-", "owl_object"], [23, 0, 0, "-", "owl_ontology"], [24, 0, 0, "-", "owl_ontology_manager"], [25, 0, 0, "-", "owl_property"], [26, 0, 0, "-", "owl_reasoner"], [27, 0, 0, "-", "owlapi_mapper"], [28, 0, 0, "-", "parser"], [29, 0, 0, "-", "providers"], [30, 0, 0, "-", "render"], [31, 0, 0, "-", "static_funcs"], [32, 0, 0, "-", "util_owl_static_funcs"], [33, 0, 0, "-", "utils"], [34, 0, 0, "-", "vocab"]], "owlapy.OntologyManager": [[11, 2, 1, "", "__slots__"], [11, 3, 1, "", "apply_change"], [11, 3, 1, "", "create_ontology"], [11, 3, 1, "", "load_ontology"], [11, 3, 1, "", "save_world"]], "owlapy.abstracts": [[3, 1, 1, "", "AbstractOWLOntology"], [3, 1, 1, "", "AbstractOWLOntologyChange"], [3, 1, 1, "", "AbstractOWLOntologyManager"], [3, 1, 1, "", "AbstractOWLReasoner"], [0, 0, 0, "-", "abstract_owl_ontology"], [1, 0, 0, "-", "abstract_owl_ontology_manager"], [2, 0, 0, "-", "abstract_owl_reasoner"]], "owlapy.abstracts.AbstractOWLOntology": [[3, 2, 1, "", "__slots__"], [3, 3, 1, "", "add_axiom"], [3, 3, 1, "", "classes_in_signature"], [3, 3, 1, "", "data_properties_in_signature"], [3, 3, 1, "", "data_property_domain_axioms"], [3, 3, 1, "", "data_property_range_axioms"], [3, 3, 1, "", "equivalent_classes_axioms"], [3, 3, 1, "", "general_class_axioms"], [3, 3, 1, "", "get_ontology_id"], [3, 3, 1, "", "get_owl_ontology_manager"], [3, 3, 1, "", "individuals_in_signature"], [3, 3, 1, "", "is_anonymous"], [3, 3, 1, "", "object_properties_in_signature"], [3, 3, 1, "", "object_property_domain_axioms"], [3, 3, 1, "", "object_property_range_axioms"], [3, 3, 1, "", "remove_axiom"], [3, 3, 1, "", "save"], [3, 2, 1, "", "type_index"]], "owlapy.abstracts.AbstractOWLOntologyChange": [[3, 2, 1, "", "__slots__"], [3, 3, 1, "", "get_ontology"]], "owlapy.abstracts.AbstractOWLOntologyManager": [[3, 3, 1, "", "apply_change"], [3, 3, 1, "", "create_ontology"], [3, 3, 1, "", "load_ontology"]], "owlapy.abstracts.AbstractOWLReasoner": [[3, 2, 1, "", "__slots__"], [3, 3, 1, "", "all_data_property_values"], [3, 3, 1, "", "data_property_domains"], [3, 3, 1, "", "data_property_ranges"], [3, 3, 1, "", "data_property_values"], [3, 3, 1, "", "different_individuals"], [3, 3, 1, "", "disjoint_classes"], [3, 3, 1, "", "disjoint_data_properties"], [3, 3, 1, "", "disjoint_object_properties"], [3, 3, 1, "", "equivalent_classes"], [3, 3, 1, "", "equivalent_data_properties"], [3, 3, 1, "", "equivalent_object_properties"], [3, 3, 1, "", "get_root_ontology"], [3, 3, 1, "", "ind_data_properties"], [3, 3, 1, "", "ind_object_properties"], [3, 3, 1, "", "instances"], [3, 3, 1, "", "object_property_domains"], [3, 3, 1, "", "object_property_ranges"], [3, 3, 1, "", "object_property_values"], [3, 3, 1, "", "same_individuals"], [3, 3, 1, "", "sub_classes"], [3, 3, 1, "", "sub_data_properties"], [3, 3, 1, "", "sub_object_properties"], [3, 3, 1, "", "super_classes"], [3, 3, 1, "", "super_data_properties"], [3, 3, 1, "", "super_object_properties"], [3, 3, 1, "", "types"]], "owlapy.abstracts.abstract_owl_ontology": [[0, 1, 1, "", "AbstractOWLOntology"]], "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology": [[0, 2, 1, "", "__slots__"], [0, 3, 1, "", "add_axiom"], [0, 3, 1, "", "classes_in_signature"], [0, 3, 1, "", "data_properties_in_signature"], [0, 3, 1, "", "data_property_domain_axioms"], [0, 3, 1, "", "data_property_range_axioms"], [0, 3, 1, "", "equivalent_classes_axioms"], [0, 3, 1, "", "general_class_axioms"], [0, 3, 1, "", "get_ontology_id"], [0, 3, 1, "", "get_owl_ontology_manager"], [0, 3, 1, "", "individuals_in_signature"], [0, 3, 1, "", "is_anonymous"], [0, 3, 1, "", "object_properties_in_signature"], [0, 3, 1, "", "object_property_domain_axioms"], [0, 3, 1, "", "object_property_range_axioms"], [0, 3, 1, "", "remove_axiom"], [0, 3, 1, "", "save"], [0, 2, 1, "", "type_index"]], "owlapy.abstracts.abstract_owl_ontology_manager": [[1, 1, 1, "", "AbstractOWLOntologyChange"], [1, 1, 1, "", "AbstractOWLOntologyManager"]], "owlapy.abstracts.abstract_owl_ontology_manager.AbstractOWLOntologyChange": [[1, 2, 1, "", "__slots__"], [1, 3, 1, "", "get_ontology"]], "owlapy.abstracts.abstract_owl_ontology_manager.AbstractOWLOntologyManager": [[1, 3, 1, "", "apply_change"], [1, 3, 1, "", "create_ontology"], [1, 3, 1, "", "load_ontology"]], "owlapy.abstracts.abstract_owl_reasoner": [[2, 1, 1, "", "AbstractOWLReasoner"], [2, 4, 1, "", "logger"]], "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner": [[2, 2, 1, "", "__slots__"], [2, 3, 1, "", "all_data_property_values"], [2, 3, 1, "", "data_property_domains"], [2, 3, 1, "", "data_property_ranges"], [2, 3, 1, "", "data_property_values"], [2, 3, 1, "", "different_individuals"], [2, 3, 1, "", "disjoint_classes"], [2, 3, 1, "", "disjoint_data_properties"], [2, 3, 1, "", "disjoint_object_properties"], [2, 3, 1, "", "equivalent_classes"], [2, 3, 1, "", "equivalent_data_properties"], [2, 3, 1, "", "equivalent_object_properties"], [2, 3, 1, "", "get_root_ontology"], [2, 3, 1, "", "ind_data_properties"], [2, 3, 1, "", "ind_object_properties"], [2, 3, 1, "", "instances"], [2, 3, 1, "", "object_property_domains"], [2, 3, 1, "", "object_property_ranges"], [2, 3, 1, "", "object_property_values"], [2, 3, 1, "", "same_individuals"], [2, 3, 1, "", "sub_classes"], [2, 3, 1, "", "sub_data_properties"], [2, 3, 1, "", "sub_object_properties"], [2, 3, 1, "", "super_classes"], [2, 3, 1, "", "super_data_properties"], [2, 3, 1, "", "super_object_properties"], [2, 3, 1, "", "types"]], "owlapy.class_expression": [[5, 1, 1, "", "OWLAnonymousClassExpression"], [5, 1, 1, "", "OWLBooleanClassExpression"], [5, 1, 1, "", "OWLCardinalityRestriction"], [5, 1, 1, "", "OWLClass"], [5, 1, 1, "", "OWLClassExpression"], [5, 1, 1, "", "OWLDataAllValuesFrom"], [5, 1, 1, "", "OWLDataCardinalityRestriction"], [5, 1, 1, "", "OWLDataExactCardinality"], [5, 1, 1, "", "OWLDataHasValue"], [5, 1, 1, "", "OWLDataMaxCardinality"], [5, 1, 1, "", "OWLDataMinCardinality"], [5, 1, 1, "", "OWLDataOneOf"], [5, 1, 1, "", "OWLDataRestriction"], [5, 1, 1, "", "OWLDataSomeValuesFrom"], [5, 1, 1, "", "OWLDatatypeRestriction"], [5, 1, 1, "", "OWLFacet"], [5, 1, 1, "", "OWLFacetRestriction"], [5, 1, 1, "", "OWLHasValueRestriction"], [5, 1, 1, "", "OWLNaryBooleanClassExpression"], [5, 1, 1, "", "OWLObjectAllValuesFrom"], [5, 1, 1, "", "OWLObjectCardinalityRestriction"], [5, 1, 1, "", "OWLObjectComplementOf"], [5, 1, 1, "", "OWLObjectExactCardinality"], [5, 1, 1, "", "OWLObjectHasSelf"], [5, 1, 1, "", "OWLObjectHasValue"], [5, 1, 1, "", "OWLObjectIntersectionOf"], [5, 1, 1, "", "OWLObjectMaxCardinality"], [5, 1, 1, "", "OWLObjectMinCardinality"], [5, 1, 1, "", "OWLObjectOneOf"], [5, 1, 1, "", "OWLObjectRestriction"], [5, 1, 1, "", "OWLObjectSomeValuesFrom"], [5, 1, 1, "", "OWLObjectUnionOf"], [5, 1, 1, "", "OWLQuantifiedDataRestriction"], [5, 1, 1, "", "OWLQuantifiedObjectRestriction"], [5, 1, 1, "", "OWLQuantifiedRestriction"], [5, 1, 1, "", "OWLRestriction"], [4, 0, 0, "-", "class_expression"], [6, 0, 0, "-", "nary_boolean_expression"], [7, 0, 0, "-", "owl_class"], [8, 0, 0, "-", "restriction"]], "owlapy.class_expression.OWLAnonymousClassExpression": [[5, 3, 1, "", "get_nnf"], [5, 3, 1, "", "get_object_complement_of"], [5, 3, 1, "", "is_owl_nothing"], [5, 3, 1, "", "is_owl_thing"]], "owlapy.class_expression.OWLBooleanClassExpression": [[5, 2, 1, "", "__slots__"]], "owlapy.class_expression.OWLCardinalityRestriction": [[5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_cardinality"], [5, 3, 1, "", "get_filler"]], "owlapy.class_expression.OWLClass": [[5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_nnf"], [5, 3, 1, "", "get_object_complement_of"], [5, 5, 1, "", "iri"], [5, 3, 1, "", "is_owl_nothing"], [5, 3, 1, "", "is_owl_thing"], [5, 5, 1, "", "reminder"], [5, 5, 1, "", "str"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLClassExpression": [[5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_nnf"], [5, 3, 1, "", "get_object_complement_of"], [5, 3, 1, "", "is_owl_nothing"], [5, 3, 1, "", "is_owl_thing"]], "owlapy.class_expression.OWLDataAllValuesFrom": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_property"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLDataCardinalityRestriction": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_property"]], "owlapy.class_expression.OWLDataExactCardinality": [[5, 2, 1, "", "__slots__"], [5, 3, 1, "", "as_intersection_of_min_max"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLDataHasValue": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "as_some_values_from"], [5, 3, 1, "", "get_property"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLDataMaxCardinality": [[5, 2, 1, "", "__slots__"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLDataMinCardinality": [[5, 2, 1, "", "__slots__"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLDataOneOf": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 3, 1, "", "operands"], [5, 2, 1, "", "type_index"], [5, 3, 1, "", "values"]], "owlapy.class_expression.OWLDataRestriction": [[5, 2, 1, "", "__slots__"], [5, 3, 1, "", "is_data_restriction"]], "owlapy.class_expression.OWLDataSomeValuesFrom": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_property"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLDatatypeRestriction": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_datatype"], [5, 3, 1, "", "get_facet_restrictions"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLFacet": [[5, 2, 1, "", "FRACTION_DIGITS"], [5, 2, 1, "", "LENGTH"], [5, 2, 1, "", "MAX_EXCLUSIVE"], [5, 2, 1, "", "MAX_INCLUSIVE"], [5, 2, 1, "", "MAX_LENGTH"], [5, 2, 1, "", "MIN_EXCLUSIVE"], [5, 2, 1, "", "MIN_INCLUSIVE"], [5, 2, 1, "", "MIN_LENGTH"], [5, 2, 1, "", "PATTERN"], [5, 2, 1, "", "TOTAL_DIGITS"], [5, 3, 1, "", "from_str"], [5, 5, 1, "", "operator"], [5, 5, 1, "", "symbolic_form"]], "owlapy.class_expression.OWLFacetRestriction": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_facet"], [5, 3, 1, "", "get_facet_value"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLHasValueRestriction": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_filler"]], "owlapy.class_expression.OWLNaryBooleanClassExpression": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "operands"]], "owlapy.class_expression.OWLObjectAllValuesFrom": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_property"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectCardinalityRestriction": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_property"]], "owlapy.class_expression.OWLObjectComplementOf": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_operand"], [5, 3, 1, "", "operands"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectExactCardinality": [[5, 2, 1, "", "__slots__"], [5, 3, 1, "", "as_intersection_of_min_max"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectHasSelf": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_property"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectHasValue": [[5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "as_some_values_from"], [5, 3, 1, "", "get_property"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectIntersectionOf": [[5, 2, 1, "", "__slots__"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectMaxCardinality": [[5, 2, 1, "", "__slots__"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectMinCardinality": [[5, 2, 1, "", "__slots__"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectOneOf": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "as_object_union_of"], [5, 3, 1, "", "individuals"], [5, 3, 1, "", "operands"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectRestriction": [[5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_property"], [5, 3, 1, "", "is_object_restriction"]], "owlapy.class_expression.OWLObjectSomeValuesFrom": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_property"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectUnionOf": [[5, 2, 1, "", "__slots__"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLQuantifiedDataRestriction": [[5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_filler"]], "owlapy.class_expression.OWLQuantifiedObjectRestriction": [[5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_filler"]], "owlapy.class_expression.OWLQuantifiedRestriction": [[5, 2, 1, "", "__slots__"]], "owlapy.class_expression.OWLRestriction": [[5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_property"], [5, 3, 1, "", "is_data_restriction"], [5, 3, 1, "", "is_object_restriction"]], "owlapy.class_expression.class_expression": [[4, 1, 1, "", "OWLAnonymousClassExpression"], [4, 1, 1, "", "OWLBooleanClassExpression"], [4, 1, 1, "", "OWLClassExpression"], [4, 1, 1, "", "OWLObjectComplementOf"]], "owlapy.class_expression.class_expression.OWLAnonymousClassExpression": [[4, 3, 1, "", "get_nnf"], [4, 3, 1, "", "get_object_complement_of"], [4, 3, 1, "", "is_owl_nothing"], [4, 3, 1, "", "is_owl_thing"]], "owlapy.class_expression.class_expression.OWLBooleanClassExpression": [[4, 2, 1, "", "__slots__"]], "owlapy.class_expression.class_expression.OWLClassExpression": [[4, 2, 1, "", "__slots__"], [4, 3, 1, "", "get_nnf"], [4, 3, 1, "", "get_object_complement_of"], [4, 3, 1, "", "is_owl_nothing"], [4, 3, 1, "", "is_owl_thing"]], "owlapy.class_expression.class_expression.OWLObjectComplementOf": [[4, 3, 1, "", "__eq__"], [4, 3, 1, "", "__hash__"], [4, 3, 1, "", "__repr__"], [4, 2, 1, "", "__slots__"], [4, 3, 1, "", "get_operand"], [4, 3, 1, "", "operands"], [4, 2, 1, "", "type_index"]], "owlapy.class_expression.nary_boolean_expression": [[6, 1, 1, "", "OWLNaryBooleanClassExpression"], [6, 1, 1, "", "OWLObjectIntersectionOf"], [6, 1, 1, "", "OWLObjectUnionOf"]], "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression": [[6, 3, 1, "", "__eq__"], [6, 3, 1, "", "__hash__"], [6, 3, 1, "", "__repr__"], [6, 2, 1, "", "__slots__"], [6, 3, 1, "", "operands"]], "owlapy.class_expression.nary_boolean_expression.OWLObjectIntersectionOf": [[6, 2, 1, "", "__slots__"], [6, 2, 1, "", "type_index"]], "owlapy.class_expression.nary_boolean_expression.OWLObjectUnionOf": [[6, 2, 1, "", "__slots__"], [6, 2, 1, "", "type_index"]], "owlapy.class_expression.owl_class": [[7, 1, 1, "", "OWLClass"]], "owlapy.class_expression.owl_class.OWLClass": [[7, 2, 1, "", "__slots__"], [7, 3, 1, "", "get_nnf"], [7, 3, 1, "", "get_object_complement_of"], [7, 5, 1, "", "iri"], [7, 3, 1, "", "is_owl_nothing"], [7, 3, 1, "", "is_owl_thing"], [7, 5, 1, "", "reminder"], [7, 5, 1, "", "str"], [7, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction": [[8, 4, 1, "", "Literals"], [8, 1, 1, "", "OWLCardinalityRestriction"], [8, 1, 1, "", "OWLDataAllValuesFrom"], [8, 1, 1, "", "OWLDataCardinalityRestriction"], [8, 1, 1, "", "OWLDataExactCardinality"], [8, 1, 1, "", "OWLDataHasValue"], [8, 1, 1, "", "OWLDataMaxCardinality"], [8, 1, 1, "", "OWLDataMinCardinality"], [8, 1, 1, "", "OWLDataOneOf"], [8, 1, 1, "", "OWLDataRestriction"], [8, 1, 1, "", "OWLDataSomeValuesFrom"], [8, 1, 1, "", "OWLDatatypeRestriction"], [8, 1, 1, "", "OWLFacetRestriction"], [8, 1, 1, "", "OWLHasValueRestriction"], [8, 1, 1, "", "OWLObjectAllValuesFrom"], [8, 1, 1, "", "OWLObjectCardinalityRestriction"], [8, 1, 1, "", "OWLObjectExactCardinality"], [8, 1, 1, "", "OWLObjectHasSelf"], [8, 1, 1, "", "OWLObjectHasValue"], [8, 1, 1, "", "OWLObjectMaxCardinality"], [8, 1, 1, "", "OWLObjectMinCardinality"], [8, 1, 1, "", "OWLObjectOneOf"], [8, 1, 1, "", "OWLObjectRestriction"], [8, 1, 1, "", "OWLObjectSomeValuesFrom"], [8, 1, 1, "", "OWLQuantifiedDataRestriction"], [8, 1, 1, "", "OWLQuantifiedObjectRestriction"], [8, 1, 1, "", "OWLQuantifiedRestriction"], [8, 1, 1, "", "OWLRestriction"]], "owlapy.class_expression.restriction.OWLCardinalityRestriction": [[8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_cardinality"], [8, 3, 1, "", "get_filler"]], "owlapy.class_expression.restriction.OWLDataAllValuesFrom": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_property"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLDataCardinalityRestriction": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_property"]], "owlapy.class_expression.restriction.OWLDataExactCardinality": [[8, 2, 1, "", "__slots__"], [8, 3, 1, "", "as_intersection_of_min_max"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLDataHasValue": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "as_some_values_from"], [8, 3, 1, "", "get_property"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLDataMaxCardinality": [[8, 2, 1, "", "__slots__"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLDataMinCardinality": [[8, 2, 1, "", "__slots__"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLDataOneOf": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 3, 1, "", "operands"], [8, 2, 1, "", "type_index"], [8, 3, 1, "", "values"]], "owlapy.class_expression.restriction.OWLDataRestriction": [[8, 2, 1, "", "__slots__"], [8, 3, 1, "", "is_data_restriction"]], "owlapy.class_expression.restriction.OWLDataSomeValuesFrom": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_property"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLDatatypeRestriction": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_datatype"], [8, 3, 1, "", "get_facet_restrictions"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLFacetRestriction": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_facet"], [8, 3, 1, "", "get_facet_value"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLHasValueRestriction": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_filler"]], "owlapy.class_expression.restriction.OWLObjectAllValuesFrom": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_property"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLObjectCardinalityRestriction": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_property"]], "owlapy.class_expression.restriction.OWLObjectExactCardinality": [[8, 2, 1, "", "__slots__"], [8, 3, 1, "", "as_intersection_of_min_max"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLObjectHasSelf": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_property"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLObjectHasValue": [[8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "as_some_values_from"], [8, 3, 1, "", "get_property"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLObjectMaxCardinality": [[8, 2, 1, "", "__slots__"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLObjectMinCardinality": [[8, 2, 1, "", "__slots__"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLObjectOneOf": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "as_object_union_of"], [8, 3, 1, "", "individuals"], [8, 3, 1, "", "operands"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLObjectRestriction": [[8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_property"], [8, 3, 1, "", "is_object_restriction"]], "owlapy.class_expression.restriction.OWLObjectSomeValuesFrom": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_property"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLQuantifiedDataRestriction": [[8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_filler"]], "owlapy.class_expression.restriction.OWLQuantifiedObjectRestriction": [[8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_filler"]], "owlapy.class_expression.restriction.OWLQuantifiedRestriction": [[8, 2, 1, "", "__slots__"]], "owlapy.class_expression.restriction.OWLRestriction": [[8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_property"], [8, 3, 1, "", "is_data_restriction"], [8, 3, 1, "", "is_object_restriction"]], "owlapy.converter": [[9, 1, 1, "", "Owl2SparqlConverter"], [9, 1, 1, "", "VariablesMapping"], [9, 4, 1, "", "converter"], [9, 6, 1, "", "owl_expression_to_sparql"], [9, 6, 1, "", "owl_expression_to_sparql_with_confusion_matrix"], [9, 6, 1, "", "peek"]], "owlapy.converter.Owl2SparqlConverter": [[9, 2, 1, "", "__slots__"], [9, 3, 1, "", "append"], [9, 3, 1, "", "append_triple"], [9, 3, 1, "", "as_confusion_matrix_query"], [9, 3, 1, "", "as_query"], [9, 2, 1, "", "ce"], [9, 2, 1, "", "cnt"], [9, 3, 1, "", "convert"], [9, 5, 1, "", "current_variable"], [9, 3, 1, "", "forAll"], [9, 3, 1, "", "forAllDeMorgan"], [9, 2, 1, "", "for_all_de_morgan"], [9, 2, 1, "", "grouping_vars"], [9, 2, 1, "", "having_conditions"], [9, 2, 1, "", "mapping"], [9, 5, 1, "", "modal_depth"], [9, 2, 1, "", "named_individuals"], [9, 3, 1, "", "new_count_var"], [9, 2, 1, "", "parent"], [9, 2, 1, "", "parent_var"], [9, 3, 1, "", "process"], [9, 2, 1, "", "properties"], [9, 3, 1, "", "render"], [9, 2, 1, "", "sparql"], [9, 3, 1, "", "stack_parent"], [9, 3, 1, "", "stack_variable"], [9, 3, 1, "", "triple"], [9, 2, 1, "", "variable_entities"], [9, 2, 1, "", "variables"]], "owlapy.converter.VariablesMapping": [[9, 3, 1, "", "__contains__"], [9, 3, 1, "", "__getitem__"], [9, 2, 1, "", "__slots__"], [9, 2, 1, "", "class_cnt"], [9, 2, 1, "", "dict"], [9, 3, 1, "", "get_variable"], [9, 2, 1, "", "ind_cnt"], [9, 3, 1, "", "new_individual_variable"], [9, 3, 1, "", "new_property_variable"], [9, 2, 1, "", "prop_cnt"]], "owlapy.iri": [[12, 1, 1, "", "IRI"]], "owlapy.iri.IRI": [[12, 3, 1, "", "__eq__"], [12, 3, 1, "", "__hash__"], [12, 3, 1, "", "__repr__"], [12, 2, 1, "", "__slots__"], [12, 3, 1, "", "as_iri"], [12, 3, 1, "", "as_str"], [12, 3, 1, "", "create"], [12, 3, 1, "", "get_namespace"], [12, 3, 1, "", "get_remainder"], [12, 3, 1, "", "is_nothing"], [12, 3, 1, "", "is_reserved_vocabulary"], [12, 3, 1, "", "is_thing"], [12, 5, 1, "", "reminder"], [12, 5, 1, "", "str"], [12, 2, 1, "", "type_index"]], "owlapy.meta_classes": [[13, 1, 1, "", "HasCardinality"], [13, 1, 1, "", "HasFiller"], [13, 1, 1, "", "HasIRI"], [13, 1, 1, "", "HasOperands"]], "owlapy.meta_classes.HasCardinality": [[13, 2, 1, "", "__slots__"], [13, 3, 1, "", "get_cardinality"]], "owlapy.meta_classes.HasFiller": [[13, 2, 1, "", "__slots__"], [13, 3, 1, "", "get_filler"]], "owlapy.meta_classes.HasIRI": [[13, 2, 1, "", "__slots__"], [13, 5, 1, "", "iri"], [13, 5, 1, "", "str"]], "owlapy.meta_classes.HasOperands": [[13, 2, 1, "", "__slots__"], [13, 3, 1, "", "operands"]], "owlapy.namespaces": [[14, 1, 1, "", "Namespaces"], [14, 4, 1, "", "OWL"], [14, 4, 1, "", "RDF"], [14, 4, 1, "", "RDFS"], [14, 4, 1, "", "XSD"]], "owlapy.namespaces.Namespaces": [[14, 3, 1, "", "__eq__"], [14, 3, 1, "", "__hash__"], [14, 3, 1, "", "__repr__"], [14, 2, 1, "", "__slots__"], [14, 5, 1, "", "ns"], [14, 5, 1, "", "prefix"]], "owlapy.owl_annotation": [[15, 1, 1, "", "OWLAnnotationObject"], [15, 1, 1, "", "OWLAnnotationSubject"], [15, 1, 1, "", "OWLAnnotationValue"]], "owlapy.owl_annotation.OWLAnnotationObject": [[15, 2, 1, "", "__slots__"], [15, 3, 1, "", "as_anonymous_individual"], [15, 3, 1, "", "as_iri"]], "owlapy.owl_annotation.OWLAnnotationSubject": [[15, 2, 1, "", "__slots__"]], "owlapy.owl_annotation.OWLAnnotationValue": [[15, 2, 1, "", "__slots__"], [15, 3, 1, "", "as_literal"], [15, 3, 1, "", "is_literal"]], "owlapy.owl_axiom": [[16, 1, 1, "", "OWLAnnotation"], [16, 1, 1, "", "OWLAnnotationAssertionAxiom"], [16, 1, 1, "", "OWLAnnotationAxiom"], [16, 1, 1, "", "OWLAnnotationProperty"], [16, 1, 1, "", "OWLAnnotationPropertyDomainAxiom"], [16, 1, 1, "", "OWLAnnotationPropertyRangeAxiom"], [16, 1, 1, "", "OWLAsymmetricObjectPropertyAxiom"], [16, 1, 1, "", "OWLAxiom"], [16, 1, 1, "", "OWLClassAssertionAxiom"], [16, 1, 1, "", "OWLClassAxiom"], [16, 1, 1, "", "OWLDataPropertyAssertionAxiom"], [16, 1, 1, "", "OWLDataPropertyAxiom"], [16, 1, 1, "", "OWLDataPropertyCharacteristicAxiom"], [16, 1, 1, "", "OWLDataPropertyDomainAxiom"], [16, 1, 1, "", "OWLDataPropertyRangeAxiom"], [16, 1, 1, "", "OWLDatatypeDefinitionAxiom"], [16, 1, 1, "", "OWLDeclarationAxiom"], [16, 1, 1, "", "OWLDifferentIndividualsAxiom"], [16, 1, 1, "", "OWLDisjointClassesAxiom"], [16, 1, 1, "", "OWLDisjointDataPropertiesAxiom"], [16, 1, 1, "", "OWLDisjointObjectPropertiesAxiom"], [16, 1, 1, "", "OWLDisjointUnionAxiom"], [16, 1, 1, "", "OWLEquivalentClassesAxiom"], [16, 1, 1, "", "OWLEquivalentDataPropertiesAxiom"], [16, 1, 1, "", "OWLEquivalentObjectPropertiesAxiom"], [16, 1, 1, "", "OWLFunctionalDataPropertyAxiom"], [16, 1, 1, "", "OWLFunctionalObjectPropertyAxiom"], [16, 1, 1, "", "OWLHasKeyAxiom"], [16, 1, 1, "", "OWLIndividualAxiom"], [16, 1, 1, "", "OWLInverseFunctionalObjectPropertyAxiom"], [16, 1, 1, "", "OWLInverseObjectPropertiesAxiom"], [16, 1, 1, "", "OWLIrreflexiveObjectPropertyAxiom"], [16, 1, 1, "", "OWLLogicalAxiom"], [16, 1, 1, "", "OWLNaryAxiom"], [16, 1, 1, "", "OWLNaryClassAxiom"], [16, 1, 1, "", "OWLNaryIndividualAxiom"], [16, 1, 1, "", "OWLNaryPropertyAxiom"], [16, 1, 1, "", "OWLNegativeDataPropertyAssertionAxiom"], [16, 1, 1, "", "OWLNegativeObjectPropertyAssertionAxiom"], [16, 1, 1, "", "OWLObjectPropertyAssertionAxiom"], [16, 1, 1, "", "OWLObjectPropertyAxiom"], [16, 1, 1, "", "OWLObjectPropertyCharacteristicAxiom"], [16, 1, 1, "", "OWLObjectPropertyDomainAxiom"], [16, 1, 1, "", "OWLObjectPropertyRangeAxiom"], [16, 1, 1, "", "OWLPropertyAssertionAxiom"], [16, 1, 1, "", "OWLPropertyAxiom"], [16, 1, 1, "", "OWLPropertyDomainAxiom"], [16, 1, 1, "", "OWLPropertyRangeAxiom"], [16, 1, 1, "", "OWLReflexiveObjectPropertyAxiom"], [16, 1, 1, "", "OWLSameIndividualAxiom"], [16, 1, 1, "", "OWLSubAnnotationPropertyOfAxiom"], [16, 1, 1, "", "OWLSubClassOfAxiom"], [16, 1, 1, "", "OWLSubDataPropertyOfAxiom"], [16, 1, 1, "", "OWLSubObjectPropertyOfAxiom"], [16, 1, 1, "", "OWLSubPropertyAxiom"], [16, 1, 1, "", "OWLSymmetricObjectPropertyAxiom"], [16, 1, 1, "", "OWLTransitiveObjectPropertyAxiom"], [16, 1, 1, "", "OWLUnaryPropertyAxiom"]], "owlapy.owl_axiom.OWLAnnotation": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_property"], [16, 3, 1, "", "get_value"]], "owlapy.owl_axiom.OWLAnnotationAssertionAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_property"], [16, 3, 1, "", "get_subject"], [16, 3, 1, "", "get_value"]], "owlapy.owl_axiom.OWLAnnotationAxiom": [[16, 2, 1, "", "__slots__"], [16, 3, 1, "", "is_annotation_axiom"]], "owlapy.owl_axiom.OWLAnnotationProperty": [[16, 2, 1, "", "__slots__"], [16, 5, 1, "", "iri"], [16, 5, 1, "", "str"]], "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_domain"], [16, 3, 1, "", "get_property"]], "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_property"], [16, 3, 1, "", "get_range"]], "owlapy.owl_axiom.OWLAsymmetricObjectPropertyAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLAxiom": [[16, 2, 1, "", "__slots__"], [16, 3, 1, "", "annotations"], [16, 3, 1, "", "is_annotated"], [16, 3, 1, "", "is_annotation_axiom"], [16, 3, 1, "", "is_logical_axiom"]], "owlapy.owl_axiom.OWLClassAssertionAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_class_expression"], [16, 3, 1, "", "get_individual"]], "owlapy.owl_axiom.OWLClassAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyAssertionAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyDomainAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyRangeAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_datarange"], [16, 3, 1, "", "get_datatype"]], "owlapy.owl_axiom.OWLDeclarationAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_entity"]], "owlapy.owl_axiom.OWLDifferentIndividualsAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointClassesAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointDataPropertiesAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointObjectPropertiesAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointUnionAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_class_expressions"], [16, 3, 1, "", "get_owl_class"], [16, 3, 1, "", "get_owl_disjoint_classes_axiom"], [16, 3, 1, "", "get_owl_equivalent_classes_axiom"]], "owlapy.owl_axiom.OWLEquivalentClassesAxiom": [[16, 2, 1, "", "__slots__"], [16, 3, 1, "", "contains_named_equivalent_class"], [16, 3, 1, "", "contains_owl_nothing"], [16, 3, 1, "", "contains_owl_thing"], [16, 3, 1, "", "named_classes"]], "owlapy.owl_axiom.OWLEquivalentDataPropertiesAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLEquivalentObjectPropertiesAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLFunctionalDataPropertyAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLFunctionalObjectPropertyAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLHasKeyAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_class_expression"], [16, 3, 1, "", "get_property_expressions"], [16, 3, 1, "", "operands"]], "owlapy.owl_axiom.OWLIndividualAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLInverseFunctionalObjectPropertyAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom": [[16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_first_property"], [16, 3, 1, "", "get_second_property"]], "owlapy.owl_axiom.OWLIrreflexiveObjectPropertyAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLLogicalAxiom": [[16, 2, 1, "", "__slots__"], [16, 3, 1, "", "is_logical_axiom"]], "owlapy.owl_axiom.OWLNaryAxiom": [[16, 2, 1, "", "__slots__"], [16, 3, 1, "", "as_pairwise_axioms"]], "owlapy.owl_axiom.OWLNaryClassAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "as_pairwise_axioms"], [16, 3, 1, "", "class_expressions"]], "owlapy.owl_axiom.OWLNaryIndividualAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "as_pairwise_axioms"], [16, 3, 1, "", "individuals"]], "owlapy.owl_axiom.OWLNaryPropertyAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "as_pairwise_axioms"], [16, 3, 1, "", "properties"]], "owlapy.owl_axiom.OWLNegativeDataPropertyAssertionAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLNegativeObjectPropertyAssertionAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyAssertionAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyDomainAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyRangeAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLPropertyAssertionAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_object"], [16, 3, 1, "", "get_property"], [16, 3, 1, "", "get_subject"]], "owlapy.owl_axiom.OWLPropertyAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLPropertyDomainAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_domain"]], "owlapy.owl_axiom.OWLPropertyRangeAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_range"]], "owlapy.owl_axiom.OWLReflexiveObjectPropertyAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSameIndividualAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_sub_property"], [16, 3, 1, "", "get_super_property"]], "owlapy.owl_axiom.OWLSubClassOfAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_sub_class"], [16, 3, 1, "", "get_super_class"]], "owlapy.owl_axiom.OWLSubDataPropertyOfAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSubObjectPropertyOfAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSubPropertyAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_sub_property"], [16, 3, 1, "", "get_super_property"]], "owlapy.owl_axiom.OWLSymmetricObjectPropertyAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLTransitiveObjectPropertyAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLUnaryPropertyAxiom": [[16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_property"]], "owlapy.owl_data_ranges": [[17, 1, 1, "", "OWLDataComplementOf"], [17, 1, 1, "", "OWLDataIntersectionOf"], [17, 1, 1, "", "OWLDataRange"], [17, 1, 1, "", "OWLDataUnionOf"], [17, 1, 1, "", "OWLNaryDataRange"], [17, 1, 1, "", "OWLPropertyRange"]], "owlapy.owl_data_ranges.OWLDataComplementOf": [[17, 3, 1, "", "__eq__"], [17, 3, 1, "", "__hash__"], [17, 3, 1, "", "__repr__"], [17, 3, 1, "", "get_data_range"], [17, 2, 1, "", "type_index"]], "owlapy.owl_data_ranges.OWLDataIntersectionOf": [[17, 2, 1, "", "__slots__"], [17, 2, 1, "", "type_index"]], "owlapy.owl_data_ranges.OWLDataUnionOf": [[17, 2, 1, "", "__slots__"], [17, 2, 1, "", "type_index"]], "owlapy.owl_data_ranges.OWLNaryDataRange": [[17, 3, 1, "", "__eq__"], [17, 3, 1, "", "__hash__"], [17, 3, 1, "", "__repr__"], [17, 2, 1, "", "__slots__"], [17, 3, 1, "", "operands"]], "owlapy.owl_datatype": [[18, 1, 1, "", "OWLDatatype"]], "owlapy.owl_datatype.OWLDatatype": [[18, 2, 1, "", "__slots__"], [18, 5, 1, "", "iri"], [18, 5, 1, "", "str"], [18, 2, 1, "", "type_index"]], "owlapy.owl_hierarchy": [[19, 1, 1, "", "AbstractHierarchy"], [19, 1, 1, "", "ClassHierarchy"], [19, 1, 1, "", "DatatypePropertyHierarchy"], [19, 1, 1, "", "ObjectPropertyHierarchy"]], "owlapy.owl_hierarchy.AbstractHierarchy": [[19, 3, 1, "", "__contains__"], [19, 3, 1, "", "__len__"], [19, 2, 1, "", "__slots__"], [19, 3, 1, "", "children"], [19, 3, 1, "", "get_bottom_entity"], [19, 3, 1, "", "get_top_entity"], [19, 3, 1, "", "is_child_of"], [19, 3, 1, "", "is_parent_of"], [19, 3, 1, "", "items"], [19, 3, 1, "", "leaves"], [19, 3, 1, "", "parents"], [19, 3, 1, "", "restrict"], [19, 3, 1, "", "restrict_and_copy"], [19, 3, 1, "", "roots"], [19, 3, 1, "", "siblings"]], "owlapy.owl_hierarchy.ClassHierarchy": [[19, 3, 1, "", "get_bottom_entity"], [19, 3, 1, "", "get_top_entity"], [19, 3, 1, "", "is_subclass_of"], [19, 3, 1, "", "sub_classes"], [19, 3, 1, "", "super_classes"]], "owlapy.owl_hierarchy.DatatypePropertyHierarchy": [[19, 3, 1, "", "get_bottom_entity"], [19, 3, 1, "", "get_top_entity"], [19, 3, 1, "", "is_sub_property_of"], [19, 3, 1, "", "more_general_roles"], [19, 3, 1, "", "more_special_roles"], [19, 3, 1, "", "most_general_roles"], [19, 3, 1, "", "most_special_roles"], [19, 3, 1, "", "sub_data_properties"], [19, 3, 1, "", "super_data_properties"]], "owlapy.owl_hierarchy.ObjectPropertyHierarchy": [[19, 3, 1, "", "get_bottom_entity"], [19, 3, 1, "", "get_top_entity"], [19, 3, 1, "", "is_sub_property_of"], [19, 3, 1, "", "more_general_roles"], [19, 3, 1, "", "more_special_roles"], [19, 3, 1, "", "most_general_roles"], [19, 3, 1, "", "most_special_roles"], [19, 3, 1, "", "sub_object_properties"], [19, 3, 1, "", "super_object_properties"]], "owlapy.owl_individual": [[20, 1, 1, "", "OWLIndividual"], [20, 1, 1, "", "OWLNamedIndividual"]], "owlapy.owl_individual.OWLIndividual": [[20, 2, 1, "", "__slots__"]], "owlapy.owl_individual.OWLNamedIndividual": [[20, 2, 1, "", "__slots__"], [20, 5, 1, "", "iri"], [20, 5, 1, "", "str"], [20, 2, 1, "", "type_index"]], "owlapy.owl_literal": [[21, 4, 1, "", "BooleanOWLDatatype"], [21, 4, 1, "", "DateOWLDatatype"], [21, 4, 1, "", "DateTimeOWLDatatype"], [21, 4, 1, "", "DoubleOWLDatatype"], [21, 4, 1, "", "DurationOWLDatatype"], [21, 4, 1, "", "IntegerOWLDatatype"], [21, 4, 1, "", "Literals"], [21, 4, 1, "", "NUMERIC_DATATYPES"], [21, 4, 1, "", "OWLBottomDataProperty"], [21, 4, 1, "", "OWLBottomObjectProperty"], [21, 1, 1, "", "OWLLiteral"], [21, 4, 1, "", "OWLTopDataProperty"], [21, 4, 1, "", "OWLTopObjectProperty"], [21, 4, 1, "", "StringOWLDatatype"], [21, 4, 1, "", "TIME_DATATYPES"], [21, 4, 1, "", "TopOWLDatatype"]], "owlapy.owl_literal.OWLLiteral": [[21, 2, 1, "", "__slots__"], [21, 3, 1, "", "as_literal"], [21, 3, 1, "", "get_datatype"], [21, 3, 1, "", "get_literal"], [21, 3, 1, "", "is_boolean"], [21, 3, 1, "", "is_date"], [21, 3, 1, "", "is_datetime"], [21, 3, 1, "", "is_double"], [21, 3, 1, "", "is_duration"], [21, 3, 1, "", "is_integer"], [21, 3, 1, "", "is_literal"], [21, 3, 1, "", "is_string"], [21, 3, 1, "", "parse_boolean"], [21, 3, 1, "", "parse_date"], [21, 3, 1, "", "parse_datetime"], [21, 3, 1, "", "parse_double"], [21, 3, 1, "", "parse_duration"], [21, 3, 1, "", "parse_integer"], [21, 3, 1, "", "parse_string"], [21, 3, 1, "", "to_python"], [21, 2, 1, "", "type_index"]], "owlapy.owl_object": [[22, 1, 1, "", "OWLEntity"], [22, 1, 1, "", "OWLNamedObject"], [22, 1, 1, "", "OWLObject"], [22, 1, 1, "", "OWLObjectParser"], [22, 1, 1, "", "OWLObjectRenderer"]], "owlapy.owl_object.OWLEntity": [[22, 2, 1, "", "__slots__"], [22, 3, 1, "", "is_anonymous"], [22, 3, 1, "", "to_string_id"]], "owlapy.owl_object.OWLNamedObject": [[22, 3, 1, "", "__eq__"], [22, 3, 1, "", "__hash__"], [22, 3, 1, "", "__lt__"], [22, 3, 1, "", "__repr__"], [22, 2, 1, "", "__slots__"]], "owlapy.owl_object.OWLObject": [[22, 3, 1, "", "__eq__"], [22, 3, 1, "", "__hash__"], [22, 3, 1, "", "__repr__"], [22, 2, 1, "", "__slots__"], [22, 3, 1, "", "is_anonymous"]], "owlapy.owl_object.OWLObjectParser": [[22, 3, 1, "", "parse_expression"]], "owlapy.owl_object.OWLObjectRenderer": [[22, 3, 1, "", "render"], [22, 3, 1, "", "set_short_form_provider"]], "owlapy.owl_ontology": [[23, 1, 1, "", "FromOwlready2"], [23, 1, 1, "", "OWLOntologyID"], [23, 4, 1, "", "OWLREADY2_FACET_KEYS"], [23, 1, 1, "", "Ontology"], [23, 1, 1, "", "SyncOntology"], [23, 1, 1, "", "ToOwlready2"], [23, 4, 1, "", "logger"]], "owlapy.owl_ontology.FromOwlready2": [[23, 2, 1, "", "__slots__"], [23, 3, 1, "", "map_concept"], [23, 3, 1, "", "map_datarange"]], "owlapy.owl_ontology.OWLOntologyID": [[23, 3, 1, "", "__eq__"], [23, 3, 1, "", "__repr__"], [23, 2, 1, "", "__slots__"], [23, 3, 1, "", "get_default_document_iri"], [23, 3, 1, "", "get_ontology_iri"], [23, 3, 1, "", "get_version_iri"], [23, 3, 1, "", "is_anonymous"]], "owlapy.owl_ontology.Ontology": [[23, 3, 1, "", "__eq__"], [23, 3, 1, "", "__hash__"], [23, 3, 1, "", "__len__"], [23, 3, 1, "", "__repr__"], [23, 2, 1, "", "__slots__"], [23, 3, 1, "", "abox_axioms_between_individuals"], [23, 3, 1, "", "abox_axioms_between_individuals_and_classes"], [23, 3, 1, "", "add_axiom"], [23, 3, 1, "", "classes_in_signature"], [23, 3, 1, "", "data_properties_in_signature"], [23, 3, 1, "", "data_property_domain_axioms"], [23, 3, 1, "", "data_property_range_axioms"], [23, 3, 1, "", "equivalent_classes_axioms"], [23, 3, 1, "", "general_class_axioms"], [23, 3, 1, "", "get_ontology_id"], [23, 3, 1, "", "get_original_iri"], [23, 3, 1, "", "get_owl_ontology_manager"], [23, 3, 1, "", "individuals_in_signature"], [23, 2, 1, "", "is_modified"], [23, 3, 1, "", "object_properties_in_signature"], [23, 3, 1, "", "object_property_domain_axioms"], [23, 3, 1, "", "object_property_range_axioms"], [23, 3, 1, "", "properties_in_signature"], [23, 3, 1, "", "remove_axiom"], [23, 3, 1, "", "save"], [23, 3, 1, "", "tbox_axioms"]], "owlapy.owl_ontology.SyncOntology": [[23, 3, 1, "", "__eq__"], [23, 3, 1, "", "__hash__"], [23, 3, 1, "", "__repr__"], [23, 3, 1, "", "add_axiom"], [23, 3, 1, "", "classes_in_signature"], [23, 3, 1, "", "data_properties_in_signature"], [23, 3, 1, "", "data_property_domain_axioms"], [23, 3, 1, "", "data_property_range_axioms"], [23, 3, 1, "", "equivalent_classes_axioms"], [23, 3, 1, "", "general_class_axioms"], [23, 3, 1, "", "get_abox_axioms"], [23, 3, 1, "", "get_ontology_id"], [23, 3, 1, "", "get_owl_ontology_manager"], [23, 3, 1, "", "get_owlapi_ontology"], [23, 3, 1, "", "get_signature"], [23, 3, 1, "", "get_tbox_axioms"], [23, 3, 1, "", "individuals_in_signature"], [23, 2, 1, "", "manager"], [23, 2, 1, "", "mapper"], [23, 2, 1, "", "new"], [23, 3, 1, "", "object_properties_in_signature"], [23, 3, 1, "", "object_property_domain_axioms"], [23, 3, 1, "", "object_property_range_axioms"], [23, 2, 1, "", "path"], [23, 3, 1, "", "remove_axiom"]], "owlapy.owl_ontology.ToOwlready2": [[23, 2, 1, "", "__slots__"], [23, 3, 1, "", "map_concept"], [23, 3, 1, "", "map_datarange"], [23, 3, 1, "", "map_object"]], "owlapy.owl_ontology_manager": [[24, 1, 1, "", "AddImport"], [24, 1, 1, "", "OWLImportsDeclaration"], [24, 1, 1, "", "OntologyManager"], [24, 1, 1, "", "SyncOntologyManager"]], "owlapy.owl_ontology_manager.AddImport": [[24, 2, 1, "", "__slots__"], [24, 3, 1, "", "get_import_declaration"]], "owlapy.owl_ontology_manager.OWLImportsDeclaration": [[24, 2, 1, "", "__slots__"], [24, 5, 1, "", "iri"], [24, 5, 1, "", "str"]], "owlapy.owl_ontology_manager.OntologyManager": [[24, 2, 1, "", "__slots__"], [24, 3, 1, "", "apply_change"], [24, 3, 1, "", "create_ontology"], [24, 3, 1, "", "load_ontology"], [24, 3, 1, "", "save_world"]], "owlapy.owl_ontology_manager.SyncOntologyManager": [[24, 3, 1, "", "apply_change"], [24, 3, 1, "", "create_ontology"], [24, 3, 1, "", "get_owlapi_manager"], [24, 3, 1, "", "load_ontology"], [24, 2, 1, "", "owlapi_manager"]], "owlapy.owl_property": [[25, 1, 1, "", "OWLDataProperty"], [25, 1, 1, "", "OWLDataPropertyExpression"], [25, 1, 1, "", "OWLObjectInverseOf"], [25, 1, 1, "", "OWLObjectProperty"], [25, 1, 1, "", "OWLObjectPropertyExpression"], [25, 1, 1, "", "OWLProperty"], [25, 1, 1, "", "OWLPropertyExpression"]], "owlapy.owl_property.OWLDataProperty": [[25, 2, 1, "", "__slots__"], [25, 3, 1, "", "is_owl_top_data_property"], [25, 2, 1, "", "type_index"]], "owlapy.owl_property.OWLDataPropertyExpression": [[25, 2, 1, "", "__slots__"], [25, 3, 1, "", "is_data_property_expression"]], "owlapy.owl_property.OWLObjectInverseOf": [[25, 3, 1, "", "__eq__"], [25, 3, 1, "", "__hash__"], [25, 3, 1, "", "__repr__"], [25, 2, 1, "", "__slots__"], [25, 3, 1, "", "get_inverse"], [25, 3, 1, "", "get_inverse_property"], [25, 3, 1, "", "get_named_property"], [25, 2, 1, "", "type_index"]], "owlapy.owl_property.OWLObjectProperty": [[25, 2, 1, "", "__slots__"], [25, 3, 1, "", "get_inverse_property"], [25, 3, 1, "", "get_named_property"], [25, 3, 1, "", "is_owl_top_object_property"], [25, 2, 1, "", "type_index"]], "owlapy.owl_property.OWLObjectPropertyExpression": [[25, 2, 1, "", "__slots__"], [25, 3, 1, "", "get_inverse_property"], [25, 3, 1, "", "get_named_property"], [25, 3, 1, "", "is_object_property_expression"]], "owlapy.owl_property.OWLProperty": [[25, 2, 1, "", "__slots__"], [25, 5, 1, "", "iri"], [25, 5, 1, "", "str"]], "owlapy.owl_property.OWLPropertyExpression": [[25, 2, 1, "", "__slots__"], [25, 3, 1, "", "is_data_property_expression"], [25, 3, 1, "", "is_object_property_expression"], [25, 3, 1, "", "is_owl_top_data_property"], [25, 3, 1, "", "is_owl_top_object_property"]], "owlapy.owl_reasoner": [[26, 1, 1, "", "StructuralReasoner"], [26, 1, 1, "", "SyncReasoner"], [26, 4, 1, "", "logger"]], "owlapy.owl_reasoner.StructuralReasoner": [[26, 2, 1, "", "__slots__"], [26, 3, 1, "", "all_data_property_values"], [26, 2, 1, "", "class_cache"], [26, 3, 1, "", "data_property_domains"], [26, 3, 1, "", "data_property_values"], [26, 3, 1, "", "different_individuals"], [26, 3, 1, "", "disjoint_classes"], [26, 3, 1, "", "disjoint_data_properties"], [26, 3, 1, "", "disjoint_object_properties"], [26, 3, 1, "", "equivalent_classes"], [26, 3, 1, "", "equivalent_data_properties"], [26, 3, 1, "", "equivalent_object_properties"], [26, 3, 1, "", "get_instances_from_owl_class"], [26, 3, 1, "", "get_root_ontology"], [26, 3, 1, "", "instances"], [26, 3, 1, "", "object_property_domains"], [26, 3, 1, "", "object_property_ranges"], [26, 3, 1, "", "object_property_values"], [26, 3, 1, "", "reset"], [26, 3, 1, "", "reset_and_disable_cache"], [26, 3, 1, "", "same_individuals"], [26, 3, 1, "", "sub_classes"], [26, 3, 1, "", "sub_data_properties"], [26, 3, 1, "", "sub_object_properties"], [26, 3, 1, "", "super_classes"], [26, 3, 1, "", "super_data_properties"], [26, 3, 1, "", "super_object_properties"], [26, 3, 1, "", "types"]], "owlapy.owl_reasoner.SyncReasoner": [[26, 3, 1, "", "data_property_domains"], [26, 3, 1, "", "data_property_values"], [26, 3, 1, "", "different_individuals"], [26, 3, 1, "", "disjoint_classes"], [26, 3, 1, "", "disjoint_data_properties"], [26, 3, 1, "", "disjoint_object_properties"], [26, 3, 1, "", "equivalent_classes"], [26, 3, 1, "", "equivalent_data_properties"], [26, 3, 1, "", "equivalent_object_properties"], [26, 3, 1, "", "generate_and_save_inferred_class_assertion_axioms"], [26, 3, 1, "", "get_root_ontology"], [26, 3, 1, "", "has_consistent_ontology"], [26, 3, 1, "", "infer_axioms"], [26, 3, 1, "", "infer_axioms_and_save"], [26, 2, 1, "", "inference_types_mapping"], [26, 3, 1, "", "instances"], [26, 3, 1, "", "is_entailed"], [26, 3, 1, "", "is_satisfiable"], [26, 2, 1, "", "mapper"], [26, 3, 1, "", "object_property_domains"], [26, 3, 1, "", "object_property_ranges"], [26, 3, 1, "", "object_property_values"], [26, 2, 1, "", "reasoner"], [26, 3, 1, "", "same_individuals"], [26, 3, 1, "", "sub_classes"], [26, 3, 1, "", "sub_data_properties"], [26, 3, 1, "", "sub_object_properties"], [26, 3, 1, "", "super_classes"], [26, 3, 1, "", "super_data_properties"], [26, 3, 1, "", "super_object_properties"], [26, 3, 1, "", "types"], [26, 3, 1, "", "unsatisfiable_classes"]], "owlapy.owlapi_mapper": [[27, 1, 1, "", "OWLAPIMapper"], [27, 6, 1, "", "init"]], "owlapy.owlapi_mapper.OWLAPIMapper": [[27, 2, 1, "", "manager"], [27, 3, 1, "", "map_"], [27, 2, 1, "", "namespace"], [27, 2, 1, "", "ontology"], [27, 2, 1, "", "parser"], [27, 2, 1, "", "renderer"], [27, 3, 1, "", "to_list"]], "owlapy.parser": [[28, 1, 1, "", "DLSyntaxParser"], [28, 4, 1, "", "DL_GRAMMAR"], [28, 4, 1, "", "DLparser"], [28, 4, 1, "", "MANCHESTER_GRAMMAR"], [28, 1, 1, "", "ManchesterOWLSyntaxParser"], [28, 4, 1, "", "ManchesterParser"], [28, 6, 1, "", "dl_to_owl_expression"], [28, 6, 1, "", "manchester_to_owl_expression"]], "owlapy.parser.DLSyntaxParser": [[28, 3, 1, "", "generic_visit"], [28, 2, 1, "", "grammar"], [28, 2, 1, "", "ns"], [28, 3, 1, "", "parse_expression"], [28, 2, 1, "", "slots"], [28, 3, 1, "", "visit_abbreviated_iri"], [28, 3, 1, "", "visit_boolean_literal"], [28, 3, 1, "", "visit_cardinality_res"], [28, 3, 1, "", "visit_class_expression"], [28, 3, 1, "", "visit_class_iri"], [28, 3, 1, "", "visit_data_cardinality_res"], [28, 3, 1, "", "visit_data_intersection"], [28, 3, 1, "", "visit_data_parentheses"], [28, 3, 1, "", "visit_data_primary"], [28, 3, 1, "", "visit_data_property_iri"], [28, 3, 1, "", "visit_data_some_only_res"], [28, 3, 1, "", "visit_data_union"], [28, 3, 1, "", "visit_data_value_res"], [28, 3, 1, "", "visit_datatype"], [28, 3, 1, "", "visit_datatype_iri"], [28, 3, 1, "", "visit_datatype_restriction"], [28, 3, 1, "", "visit_date_literal"], [28, 3, 1, "", "visit_datetime_literal"], [28, 3, 1, "", "visit_decimal_literal"], [28, 3, 1, "", "visit_duration_literal"], [28, 3, 1, "", "visit_facet"], [28, 3, 1, "", "visit_facet_restriction"], [28, 3, 1, "", "visit_facet_restrictions"], [28, 3, 1, "", "visit_float_literal"], [28, 3, 1, "", "visit_full_iri"], [28, 3, 1, "", "visit_has_self"], [28, 3, 1, "", "visit_individual_iri"], [28, 3, 1, "", "visit_individual_list"], [28, 3, 1, "", "visit_integer_literal"], [28, 3, 1, "", "visit_intersection"], [28, 3, 1, "", "visit_iri"], [28, 3, 1, "", "visit_literal"], [28, 3, 1, "", "visit_literal_list"], [28, 3, 1, "", "visit_non_negative_integer"], [28, 3, 1, "", "visit_object_property"], [28, 3, 1, "", "visit_object_property_iri"], [28, 3, 1, "", "visit_parentheses"], [28, 3, 1, "", "visit_primary"], [28, 3, 1, "", "visit_quoted_string"], [28, 3, 1, "", "visit_simple_iri"], [28, 3, 1, "", "visit_some_only_res"], [28, 3, 1, "", "visit_string_literal_language"], [28, 3, 1, "", "visit_string_literal_no_language"], [28, 3, 1, "", "visit_typed_literal"], [28, 3, 1, "", "visit_union"], [28, 3, 1, "", "visit_value_res"]], "owlapy.parser.ManchesterOWLSyntaxParser": [[28, 3, 1, "", "generic_visit"], [28, 2, 1, "", "grammar"], [28, 2, 1, "", "ns"], [28, 3, 1, "", "parse_expression"], [28, 2, 1, "", "slots"], [28, 3, 1, "", "visit_abbreviated_iri"], [28, 3, 1, "", "visit_boolean_literal"], [28, 3, 1, "", "visit_cardinality_res"], [28, 3, 1, "", "visit_class_expression"], [28, 3, 1, "", "visit_class_iri"], [28, 3, 1, "", "visit_data_cardinality_res"], [28, 3, 1, "", "visit_data_intersection"], [28, 3, 1, "", "visit_data_parentheses"], [28, 3, 1, "", "visit_data_primary"], [28, 3, 1, "", "visit_data_property_iri"], [28, 3, 1, "", "visit_data_some_only_res"], [28, 3, 1, "", "visit_data_union"], [28, 3, 1, "", "visit_data_value_res"], [28, 3, 1, "", "visit_datatype"], [28, 3, 1, "", "visit_datatype_iri"], [28, 3, 1, "", "visit_datatype_restriction"], [28, 3, 1, "", "visit_date_literal"], [28, 3, 1, "", "visit_datetime_literal"], [28, 3, 1, "", "visit_decimal_literal"], [28, 3, 1, "", "visit_duration_literal"], [28, 3, 1, "", "visit_facet"], [28, 3, 1, "", "visit_facet_restriction"], [28, 3, 1, "", "visit_facet_restrictions"], [28, 3, 1, "", "visit_float_literal"], [28, 3, 1, "", "visit_full_iri"], [28, 3, 1, "", "visit_has_self"], [28, 3, 1, "", "visit_individual_iri"], [28, 3, 1, "", "visit_individual_list"], [28, 3, 1, "", "visit_integer_literal"], [28, 3, 1, "", "visit_intersection"], [28, 3, 1, "", "visit_iri"], [28, 3, 1, "", "visit_literal"], [28, 3, 1, "", "visit_literal_list"], [28, 3, 1, "", "visit_non_negative_integer"], [28, 3, 1, "", "visit_object_property"], [28, 3, 1, "", "visit_object_property_iri"], [28, 3, 1, "", "visit_parentheses"], [28, 3, 1, "", "visit_primary"], [28, 3, 1, "", "visit_quoted_string"], [28, 3, 1, "", "visit_simple_iri"], [28, 3, 1, "", "visit_some_only_res"], [28, 3, 1, "", "visit_string_literal_language"], [28, 3, 1, "", "visit_string_literal_no_language"], [28, 3, 1, "", "visit_typed_literal"], [28, 3, 1, "", "visit_union"], [28, 3, 1, "", "visit_value_res"]], "owlapy.providers": [[29, 4, 1, "", "Restriction_Literals"], [29, 6, 1, "", "owl_datatype_max_exclusive_restriction"], [29, 6, 1, "", "owl_datatype_max_inclusive_restriction"], [29, 6, 1, "", "owl_datatype_min_exclusive_restriction"], [29, 6, 1, "", "owl_datatype_min_inclusive_restriction"], [29, 6, 1, "", "owl_datatype_min_max_exclusive_restriction"], [29, 6, 1, "", "owl_datatype_min_max_inclusive_restriction"]], "owlapy.render": [[30, 1, 1, "", "DLSyntaxObjectRenderer"], [30, 4, 1, "", "DLrenderer"], [30, 1, 1, "", "ManchesterOWLSyntaxOWLObjectRenderer"], [30, 4, 1, "", "ManchesterRenderer"], [30, 4, 1, "", "mapper"], [30, 6, 1, "", "owl_expression_to_dl"], [30, 6, 1, "", "owl_expression_to_manchester"], [30, 6, 1, "", "translating_short_form_endpoint"], [30, 6, 1, "", "translating_short_form_provider"]], "owlapy.render.DLSyntaxObjectRenderer": [[30, 2, 1, "", "__slots__"], [30, 3, 1, "", "render"], [30, 3, 1, "", "set_short_form_provider"]], "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer": [[30, 2, 1, "", "__slots__"], [30, 3, 1, "", "render"], [30, 3, 1, "", "set_short_form_provider"]], "owlapy.static_funcs": [[31, 6, 1, "", "download_external_files"], [31, 6, 1, "", "move"], [31, 6, 1, "", "startJVM"], [31, 6, 1, "", "stopJVM"]], "owlapy.util_owl_static_funcs": [[32, 6, 1, "", "save_owl_class_expressions"]], "owlapy.utils": [[33, 1, 1, "", "ConceptOperandSorter"], [33, 1, 1, "", "EvaluatedDescriptionSet"], [33, 1, 1, "", "HasIndex"], [33, 1, 1, "", "LRUCache"], [33, 1, 1, "", "NNF"], [33, 1, 1, "", "OWLClassExpressionLengthMetric"], [33, 1, 1, "", "OperandSetTransform"], [33, 1, 1, "", "OrderedOWLObject"], [33, 1, 1, "", "TopLevelCNF"], [33, 1, 1, "", "TopLevelDNF"], [33, 6, 1, "", "as_index"], [33, 6, 1, "", "combine_nary_expressions"], [33, 6, 1, "", "concept_reducer"], [33, 6, 1, "", "concept_reducer_properties"], [33, 6, 1, "", "get_expression_length"], [33, 6, 1, "", "iter_count"], [33, 4, 1, "", "measurer"], [33, 6, 1, "", "run_with_timeout"]], "owlapy.utils.ConceptOperandSorter": [[33, 3, 1, "", "sort"]], "owlapy.utils.EvaluatedDescriptionSet": [[33, 3, 1, "", "__iter__"], [33, 2, 1, "", "__slots__"], [33, 3, 1, "", "best"], [33, 3, 1, "", "best_quality_value"], [33, 3, 1, "", "clean"], [33, 2, 1, "", "items"], [33, 3, 1, "", "maybe_add"], [33, 3, 1, "", "worst"]], "owlapy.utils.HasIndex": [[33, 3, 1, "", "__eq__"], [33, 2, 1, "", "type_index"]], "owlapy.utils.LRUCache": [[33, 2, 1, "", "KEY"], [33, 2, 1, "", "NEXT"], [33, 2, 1, "", "PREV"], [33, 2, 1, "", "RESULT"], [33, 3, 1, "", "__contains__"], [33, 3, 1, "", "__getitem__"], [33, 3, 1, "", "__setitem__"], [33, 2, 1, "", "cache"], [33, 3, 1, "", "cache_clear"], [33, 2, 1, "", "cache_get"], [33, 3, 1, "", "cache_info"], [33, 2, 1, "", "cache_len"], [33, 2, 1, "", "full"], [33, 2, 1, "", "lock"], [33, 2, 1, "", "maxsize"], [33, 2, 1, "", "root"], [33, 2, 1, "id1", "sentinel"]], "owlapy.utils.NNF": [[33, 3, 1, "", "get_class_nnf"]], "owlapy.utils.OWLClassExpressionLengthMetric": [[33, 2, 1, "", "__slots__"], [33, 2, 1, "", "class_length"], [33, 2, 1, "", "data_all_values_length"], [33, 2, 1, "", "data_cardinality_length"], [33, 2, 1, "", "data_complement_length"], [33, 2, 1, "", "data_has_value_length"], [33, 2, 1, "", "data_intersection_length"], [33, 2, 1, "", "data_one_of_length"], [33, 2, 1, "", "data_property_length"], [33, 2, 1, "", "data_some_values_length"], [33, 2, 1, "", "data_union_length"], [33, 2, 1, "", "datatype_length"], [33, 3, 1, "", "get_default"], [33, 3, 1, "", "length"], [33, 2, 1, "", "object_all_values_length"], [33, 2, 1, "", "object_cardinality_length"], [33, 2, 1, "", "object_complement_length"], [33, 2, 1, "", "object_has_self_length"], [33, 2, 1, "", "object_has_value_length"], [33, 2, 1, "", "object_intersection_length"], [33, 2, 1, "", "object_inverse_length"], [33, 2, 1, "", "object_one_of_length"], [33, 2, 1, "", "object_property_length"], [33, 2, 1, "", "object_some_values_length"], [33, 2, 1, "", "object_union_length"]], "owlapy.utils.OperandSetTransform": [[33, 3, 1, "", "simplify"]], "owlapy.utils.OrderedOWLObject": [[33, 3, 1, "", "__eq__"], [33, 3, 1, "", "__lt__"], [33, 2, 1, "", "__slots__"], [33, 2, 1, "id0", "o"]], "owlapy.utils.TopLevelCNF": [[33, 3, 1, "", "get_top_level_cnf"]], "owlapy.utils.TopLevelDNF": [[33, 3, 1, "", "get_top_level_dnf"]], "owlapy.vocab": [[34, 1, 1, "", "OWLFacet"], [34, 1, 1, "", "OWLRDFVocabulary"], [34, 1, 1, "", "XSDVocabulary"]], "owlapy.vocab.OWLFacet": [[34, 2, 1, "", "FRACTION_DIGITS"], [34, 2, 1, "", "LENGTH"], [34, 2, 1, "", "MAX_EXCLUSIVE"], [34, 2, 1, "", "MAX_INCLUSIVE"], [34, 2, 1, "", "MAX_LENGTH"], [34, 2, 1, "", "MIN_EXCLUSIVE"], [34, 2, 1, "", "MIN_INCLUSIVE"], [34, 2, 1, "", "MIN_LENGTH"], [34, 2, 1, "", "PATTERN"], [34, 2, 1, "", "TOTAL_DIGITS"], [34, 3, 1, "", "from_str"], [34, 5, 1, "", "operator"], [34, 5, 1, "", "symbolic_form"]], "owlapy.vocab.OWLRDFVocabulary": [[34, 2, 1, "", "OWL_BOTTOM_DATA_PROPERTY"], [34, 2, 1, "", "OWL_BOTTOM_OBJECT_PROPERTY"], [34, 2, 1, "", "OWL_CLASS"], [34, 2, 1, "", "OWL_NAMED_INDIVIDUAL"], [34, 2, 1, "", "OWL_NOTHING"], [34, 2, 1, "", "OWL_THING"], [34, 2, 1, "", "OWL_TOP_DATA_PROPERTY"], [34, 2, 1, "", "OWL_TOP_OBJECT_PROPERTY"], [34, 2, 1, "", "RDFS_LITERAL"]], "owlapy.vocab.XSDVocabulary": [[34, 2, 1, "", "BOOLEAN"], [34, 2, 1, "", "DATE"], [34, 2, 1, "", "DATE_TIME"], [34, 2, 1, "", "DATE_TIME_STAMP"], [34, 2, 1, "", "DECIMAL"], [34, 2, 1, "", "DOUBLE"], [34, 2, 1, "", "DURATION"], [34, 2, 1, "", "FLOAT"], [34, 2, 1, "", "INTEGER"], [34, 2, 1, "", "LONG"], [34, 2, 1, "", "STRING"]], "run": [[35, 6, 1, "", "get_default_arguments"], [35, 4, 1, "", "inference_types"], [35, 6, 1, "", "main"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "attribute", "Python attribute"], "3": ["py", "method", "Python method"], "4": ["py", "data", "Python data"], "5": ["py", "property", "Python property"], "6": ["py", "function", "Python function"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:attribute", "3": "py:method", "4": "py:data", "5": "py:property", "6": "py:function"}, "terms": {"": [2, 3, 26, 28, 30, 39, 42, 43], "0": [5, 8, 9, 12, 33, 37, 41], "01": 12, "02": 12, "07": 12, "1": [0, 3, 5, 6, 8, 9, 16, 17, 26, 33, 37, 38, 39, 40, 41, 43], "10": [33, 37, 38], "100": 37, "1000": [2, 3, 26, 37], "1001": [5, 7], "1002": 25, "1003": 25, "1004": 25, "1005": [20, 37], "1017": 37, "1019": 37, "1020": 37, "1023": 37, "1026": 37, "1029": 37, "103": 37, "1036": 37, "1042": 37, "1043": 37, "1045": 37, "1058": 37, "1059": 37, "106": 37, "1074": 37, "1076": 37, "1077": 37, "1083": 37, "1086": 37, "1089": 37, "1092": 37, "1097": 37, "11": 37, "110": 37, "1100": 37, "1102": 37, "1104": 37, "1109": 37, "111": 37, "1114": 37, "1117": 37, "112": 37, "1123": 37, "113": 37, "1130": 37, "114": 37, "1140": 37, "1150": 37, "1152": 37, "1157": 37, "116": 37, "1162": 37, "1164": 37, "1166": 37, "1167": 37, "1173": 37, "1186": 37, "1188": 37, "1190": 37, "1191": 37, "12": 37, "1202": 37, "1209": 37, "1229": 37, "124": 37, "1247": 37, "125": 37, "126": 37, "1260": 37, "1262": 37, "1263": 37, "1267": 37, "1270": 37, "1271": 37, "128": 37, "129": 37, "13": 38, "130": 37, "131": 37, "1312": 37, "1316": 37, "1320": 37, "133": 37, "1334": 37, "1346": 37, "1349": 37, "136": 37, "1364": 37, "138": 37, "141": 37, "142": 37, "144": 37, "1453": 37, "1459": 37, "1467": 37, "147": 37, "148": 37, "150": 37, "1506": 37, "151": 37, "152": 37, "1527": 37, "153": 37, "155": 37, "1558": 37, "157": 37, "158": 37, "1590": 37, "16": 37, "162": 37, "164": 37, "169": 37, "17": [37, 39], "170": 37, "171": 37, "173": 37, "174": 37, "175": 37, "176": 37, "179": 37, "182": 37, "184": 37, "185": 37, "187": 37, "189": 37, "19": 37, "190": 37, "193": 37, "195": 37, "196": 37, "1999": 12, "2": [0, 3, 4, 5, 7, 8, 10, 16, 17, 20, 22, 23, 25, 33, 37, 38, 41, 42, 43], "20": 37, "200": 37, "2000": 12, "2001": [12, 21], "2002": 12, "202": 37, "203": 37, "206": 37, "208": 37, "209": 37, "21": 37, "217": 37, "218": 37, "22": 12, "221": 37, "222": 37, "229": 37, "230": 37, "233": 37, "235": 37, "236": 37, "237": 37, "24": 37, "240": 37, "243": 37, "244": 37, "245": 37, "246": 37, "247": 37, "248": 37, "249": 37, "25": 37, "251": 37, "252": 37, "253": 37, "256": 37, "257": 37, "258": 37, "26": 37, "260": 37, "261": 37, "262": 37, "263": 37, "264": 37, "265": 37, "268": 37, "269": 37, "27": 37, "272": 37, "273": 37, "276": 37, "277": 37, "279": 37, "280": 37, "283": 37, "285": 37, "286": 37, "287": 37, "288": 37, "289": 37, "29": 37, "291": 37, "293": 37, "294": 37, "295": 37, "299": 37, "2nd": 39, "3": [33, 37, 38], "30": 37, "3001": [5, 6], "3002": [5, 6], "3003": [4, 5], "3004": [5, 8], "3005": [5, 8], "3006": [5, 8], "3007": [5, 8], "3008": [5, 8], "3009": [5, 8], "301": 37, "3010": [5, 8], "3011": [5, 8], "3012": [5, 8], "3013": [5, 8], "3014": [5, 8], "3015": [5, 8], "3016": [5, 8], "3017": [5, 8], "302": 37, "303": 37, "304": 37, "306": 37, "307": 37, "308": 37, "31": 37, "311": 37, "312": 37, "313": 37, "315": 37, "316": 37, "317": 37, "32": 37, "321": 37, "323": 37, "325": 37, "326": 37, "327": 37, "328": 37, "329": 37, "33": 37, "332": 37, "334": 37, "335": 37, "336": 37, "337": 37, "338": 37, "339": 37, "34": 37, "340": 37, "341": 37, "342": 37, "343": 37, "345": 37, "346": 37, "347": 37, "350": 37, "355": 37, "357": 37, "359": 37, "36": 37, "361": 37, "365": 37, "366": 37, "367": 37, "37": 37, "370": 37, "371": 37, "373": 37, "374": 37, "376": 37, "378": 37, "379": 37, "38": 37, "380": 37, "381": 37, "382": 37, "385": 37, "387": 37, "388": 37, "39": 37, "391": 37, "394": 37, "398": 37, "4": [33, 37], "40": 37, "400": 37, "4001": 18, "4002": 17, "4003": [5, 8], "4004": 17, "4005": 17, "4006": [5, 8], "4007": [5, 8], "4008": 21, "401": 37, "404": 37, "406": 37, "408": 37, "409": 37, "41": 37, "415": 37, "416": 37, "417": 37, "419": 37, "42": 37, "420": 37, "423": 37, "427": 37, "429": 37, "43": 37, "430": 37, "431": 37, "433": 37, "434": 37, "435": 37, "436": 37, "437": 37, "439": 37, "44": 37, "440": 37, "441": 37, "442": 37, "443": 37, "445": 37, "447": 37, "45": 37, "451": 37, "452": 37, "454": 37, "455": 37, "456": 37, "459": 37, "46": 37, "460": 37, "461": 37, "462": 37, "463": 37, "464": 37, "465": 37, "466": 37, "467": 37, "469": 37, "471": 37, "472": 37, "473": 37, "475": 37, "477": 37, "478": 37, "479": 37, "481": 37, "482": 37, "483": 37, "484": 37, "485": 37, "488": 37, "489": 37, "49": 37, "491": 37, "492": 37, "493": 37, "494": 37, "497": 37, "498": 37, "499": 37, "5": [33, 40], "50": 37, "502": 37, "505": 37, "506": 37, "508": 37, "509": 37, "510": 37, "511": 37, "513": 37, "514": 37, "515": 37, "518": 37, "519": 37, "52": 37, "521": 37, "522": 37, "523": 37, "525": 37, "526": 37, "530": 37, "534": 37, "536": 37, "538": 37, "54": 37, "542": 37, "546": 37, "548": 37, "55": 37, "550": 37, "552": 37, "554": 37, "555": 37, "558": 37, "559": 37, "56": 37, "560": 37, "561": 37, "562": 37, "563": 37, "564": 37, "566": 37, "569": 37, "57": 37, "570": 37, "572": 37, "574": 37, "575": 37, "576": 37, "578": 37, "579": 37, "58": 37, "580": 37, "581": 37, "582": 37, "583": 37, "584": 37, "587": 37, "588": 37, "59": 37, "591": 37, "5919": 37, "592": 37, "593": 37, "596": 37, "597": 37, "6": [33, 37], "601": 37, "605": 37, "607": 37, "609": 37, "610": 37, "616": 37, "619": 37, "62": 37, "620": 37, "621": 37, "623": 37, "625": 37, "627": 37, "628": 37, "629": 37, "63": 37, "631": 37, "635": 37, "636": 37, "639": 37, "642": 37, "643": 37, "645": 37, "647": 37, "648": 37, "651": 37, "652": 37, "656": 37, "66": 37, "662": 37, "663": 37, "666": 37, "667": 37, "67": 37, "670": 37, "674": 37, "675": 37, "678": 37, "679": 37, "68": 37, "683": 37, "684": 37, "689": 37, "69": 37, "692": 37, "693": 37, "695": 37, "696": 37, "697": 37, "700": 37, "701": 37, "705": 37, "706": 37, "709": 37, "71": 37, "711": 37, "712": 37, "714": 37, "716": 37, "719": 37, "720": 37, "723": 37, "727": 37, "731": 37, "734": 37, "736": 37, "737": 37, "738": 37, "741": 37, "742": 37, "746": 37, "75": 37, "750": 37, "751": 37, "752": 37, "753": 37, "754": 37, "756": 37, "758": 37, "76": 37, "762": 37, "763": 37, "765": 37, "766": 37, "767": 37, "77": 37, "770": 37, "771": 37, "778": 37, "779": 37, "78": 37, "780": 37, "787": 37, "789": 37, "79": 37, "792": 37, "794": 37, "795": 37, "798": 37, "799": 37, "80": 37, "801": 37, "803": 37, "804": 37, "805": 37, "807": 37, "81": 37, "811": 37, "813": 37, "816": 37, "818": 37, "82": 37, "822": 37, "823": 37, "825": 37, "828": 37, "83": 37, "830": 37, "831": 37, "834": 37, "835": 37, "837": 37, "84": 37, "840": 37, "841": 37, "844": 37, "845": 37, "85": 37, "853": 37, "859": 37, "86": 37, "861": 37, "864": 37, "865": 37, "867": 37, "870": 37, "873": 37, "876": 37, "878": 37, "887": 37, "89": 37, "890": 37, "894": 37, "9": [37, 40], "90": 37, "904": 37, "907": 37, "908": 37, "909": 37, "91": 37, "916": 37, "917": 37, "92": 37, "920": 37, "928": 37, "929": 37, "931": 37, "933": 37, "936": 37, "937": 37, "94": 37, "941": 37, "942": 37, "95": 37, "951": 37, "956": 37, "961": 37, "962": 37, "963": 37, "966": 37, "967": 37, "968": 37, "97": 37, "971": 37, "979": 37, "98": 37, "984": 37, "985": 37, "986": 37, "988": 37, "99": 37, "992": 37, "993": 37, "A": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 13, 15, 16, 17, 19, 21, 23, 24, 25, 26, 30, 32, 33, 42], "As": [39, 40, 43], "BY": 43, "By": [25, 32, 39, 41], "For": [5, 8, 13, 24, 25, 33, 39, 41, 42], "If": [0, 2, 3, 9, 19, 23, 26, 30, 32, 37, 39, 41, 42], "In": [4, 5, 8, 10, 13, 16, 25, 37, 39, 41, 42, 43], "It": [1, 3, 11, 16, 24, 39, 41, 42, 43], "NOT": [9, 11], "On": [39, 42], "One": 33, "Such": [5, 8, 16], "That": [40, 41], "The": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 30, 32, 33, 37, 39, 40, 41, 42, 43], "Then": 39, "There": 42, "These": [5, 8, 16], "To": [39, 40, 41, 42, 43], "With": 40, "_": 19, "__contains__": [9, 19, 33], "__eq__": [4, 5, 6, 8, 12, 14, 16, 17, 22, 23, 25, 33], "__getitem__": [9, 33], "__hash__": [4, 5, 6, 8, 12, 14, 16, 17, 22, 23, 25], "__init__": 37, "__iter__": 33, "__len__": [19, 23], "__lt__": [22, 33], "__module__": 31, "__repr__": [4, 5, 6, 8, 12, 14, 16, 17, 22, 23, 25], "__setitem__": 33, "__slots__": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 30, 33], "__weakref__": 12, "_annot": 16, "_c": 16, "_cardin": [5, 8], "_chain": 33, "_children_map": 19, "_cl": 16, "_class_express": 16, "_cls_to_ind": 26, "_datarang": 16, "_datatyp": 16, "_declar": 24, "_domain": 16, "_ent_set": 19, "_entiti": 16, "_f": [5, 8], "_facet": [5, 8], "_facet_restrict": [5, 8], "_filler": [5, 8], "_first": 16, "_has_prop": 26, "_hasindex": 33, "_ind_set": 26, "_individu": 16, "_inverse_properti": 25, "_iri": [5, 7, 16, 18, 20, 23, 24, 25], "_is_noth": [5, 7], "_is_th": [5, 7], "_k": 33, "_liter": [5, 8], "_m": [0, 3, 23], "_manag": 23, "_max_siz": 33, "_n": [14, 33], "_namespac": 12, "_no_render_th": 30, "_o": 33, "_object": 16, "_oi": [0, 3], "_om": 23, "_ont": 24, "_onto": 23, "_ontologi": 26, "_ontology_iri": 23, "_operand": [4, 5, 6, 17], "_order": 33, "_p": 16, "_parents_map": 19, "_parents_map_tran": 19, "_prefix": 14, "_properti": [5, 8, 16], "_property_express": 16, "_r": 16, "_rang": 16, "_remaind": 12, "_second": 16, "_sfp": 30, "_simple_short_form_provid": 30, "_sm": 23, "_so": 27, "_sub_class": 16, "_sub_properti": 16, "_subject": 16, "_super_class": 16, "_super_properti": 16, "_t": [5, 8, 13], "_type": [5, 8, 19], "_u": 19, "_v": [5, 8, 33], "_valu": [5, 8, 16], "_version_iri": 23, "_vocabulari": [5, 34], "_world": [11, 23, 24, 26], "_x": [5, 34], "a0": [5, 8], "a1": [5, 8, 16], "a2": 16, "abc": 30, "abcmeta": 30, "abl": [40, 42], "about": [36, 39, 40, 41, 42, 43], "abov": [39, 40], "abox": [23, 42], "abox_axioms_between_individu": 23, "abox_axioms_between_individuals_and_class": 23, "abstract": [4, 5, 8, 9, 11, 13, 16, 19, 21, 22, 23, 24, 25, 26, 28, 33, 37, 39, 40], "abstract_owl_ontologi": [1, 2, 3, 23, 24, 26, 37], "abstract_owl_ontology_manag": [3, 11, 24, 37], "abstract_owl_reason": [3, 19, 26, 37], "abstracthierarchi": 19, "abstractmethod": [13, 19], "abstractowlontologi": [0, 1, 2, 3, 23, 24, 26, 41], "abstractowlontologychang": [1, 3, 11, 24], "abstractowlontologymanag": [1, 3, 11, 24], "abstractowlreason": [2, 3, 19, 26, 41], "accept": 42, "access": [1, 3, 11, 13, 24, 39, 40], "accord": [5, 8, 43], "account": [2, 3, 26], "across": 28, "act": 16, "activ": 38, "actual": [11, 24, 25], "ad": [24, 26, 39, 42], "adapt": [33, 39, 42], "add": [0, 3, 23, 40, 42, 43], "add_axiom": [0, 3, 23, 39, 40], "addimport": 24, "addit": [40, 42], "affect": [16, 39, 42], "after": [40, 42], "ag": 39, "again": 41, "against": 30, "ai": [5, 8, 16], "aj": 16, "alch": [41, 42], "algorithm": 43, "all": [0, 2, 3, 5, 6, 8, 10, 16, 17, 18, 19, 23, 26, 28, 33, 39, 40, 41, 42, 43], "all_data_property_valu": [2, 3, 26], "allow": [16, 18, 19, 39, 41], "along": 16, "alreadi": [39, 40, 43], "also": [0, 1, 3, 11, 16, 21, 23, 24, 39, 40, 41, 42, 43], "altern": 19, "although": [1, 3, 11, 24, 40], "alwai": [18, 19, 41], "an": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 30, 31, 32, 33, 36, 37, 38, 40, 41, 43], "analog": [16, 18, 21], "ancestor": [2, 3, 26], "ani": [2, 3, 16, 18, 26, 30, 37, 42], "anna": 41, "anna_typ": 41, "annot": [10, 15, 16, 21, 38], "annotation_assert": 16, "annotation_property_domain": 16, "annotation_property_rang": 16, "annotation_subproperti": 16, "annotationassert": 16, "annotationproperti": 16, "annotationpropertydomain": 16, "annotationpropertyrang": 16, "anonym": [2, 3, 4, 5, 15, 16, 20, 23, 26, 38, 42, 43], "anoth": [41, 42], "answer": 40, "anymor": 40, "anyth": 22, "ap": 16, "ap1": 16, "ap2": 16, "api": [1, 3, 11, 24, 26, 40, 42, 43], "apibind": 24, "apidocs_5": 24, "appear": [2, 3, 16, 26], "append": 9, "append_tripl": 9, "appli": [0, 1, 3, 11, 23, 24, 33, 42, 43], "applic": [1, 3, 16], "apply_chang": [1, 3, 11, 24], "appreci": 37, "appropri": 43, "ar": [0, 2, 3, 4, 5, 6, 8, 9, 10, 11, 16, 17, 18, 20, 21, 23, 25, 26, 30, 37, 38, 39, 40, 41, 42, 43], "aren": 25, "arg": [26, 31, 33], "argument": [23, 39, 41, 42], "aris": 39, "ariti": [5, 8, 16, 17, 18], "around": 40, "arr": 9, "arrai": 9, "as_anonymous_individu": 15, "as_confusion_matrix_queri": 9, "as_index": 33, "as_intersection_of_min_max": [5, 8], "as_iri": [12, 15], "as_liter": [15, 21], "as_object_union_of": [5, 8], "as_pairwise_axiom": 16, "as_queri": 9, "as_some_values_from": [5, 8], "as_str": 12, "assert": [16, 26], "assertionerror": 32, "assign": 39, "associ": [14, 18, 26, 30, 33, 39, 42], "assum": [1, 3, 11, 24, 41], "assumpt": 16, "asymmetr": 16, "asymmetri": 16, "asymmetricobjectproperti": 16, "atleast": [2, 3], "atom": [36, 42], "attribut": [25, 31, 37, 39, 42], "autom": 39, "automat": [31, 40, 42], "av": 16, "avail": [41, 42], "avali": 26, "awesom": 40, "axiom": [0, 2, 3, 4, 5, 6, 8, 13, 16, 17, 23, 26, 32, 38, 40, 42], "axiomat": 16, "axioms_to_add": 42, "axioms_to_remov": 42, "b": [19, 33, 42], "base": [0, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 30, 33, 34, 38, 40, 41, 42], "basi": 39, "basic": [16, 36, 39, 41], "becaus": [40, 42], "befor": 42, "begin": 43, "being": [5, 8, 16, 18, 40], "belong": [0, 3, 23, 41], "below": [41, 42], "best": 33, "best_quality_valu": 33, "better": 37, "between": [39, 40, 41], "binari": 33, "bind": 16, "block": 10, "bool": [0, 2, 3, 4, 5, 7, 8, 9, 11, 12, 15, 16, 19, 21, 22, 23, 25, 26, 33, 34], "boolean": [4, 5, 6, 21, 34, 41, 42], "booleanowldatatyp": 21, "both": [16, 43], "bottom": [2, 3, 26], "bottomdataproperti": [2, 3, 26], "bottomobjectproperti": [2, 3, 26], "briefli": 42, "build": [10, 42], "built": [4, 5, 7, 18, 38], "bundl": 23, "c": [0, 2, 3, 5, 8, 9, 11, 16, 23, 26, 33, 42], "cach": [26, 33, 41], "cache_clear": 33, "cache_get": 33, "cache_info": 33, "cache_len": 33, "caglardemir8": 37, "calcul": 33, "call": [1, 3, 11, 24, 25, 31, 39], "callabl": [5, 30, 33, 34], "can": [0, 1, 2, 3, 5, 7, 8, 11, 15, 16, 17, 19, 21, 23, 24, 25, 26, 30, 33, 39, 40, 41, 42, 43], "cannot": [0, 3, 16, 23, 40], "capabl": 41, "car": 25, "cardin": [5, 8, 13, 33, 43], "case": [1, 3, 5, 8, 11, 13, 24, 28, 37, 40, 41, 43], "cast": 33, "cd": 12, "ce": [2, 3, 5, 8, 9, 16, 26, 33, 43], "ce1": [5, 6, 16], "ce2": 16, "cei": [5, 6, 16], "cej": 16, "cen": [5, 6, 16], "certain": 41, "chain": 42, "chang": [0, 1, 3, 11, 23, 24, 42], "changeappli": [1, 3, 11, 24], "check": [0, 3, 26, 30, 39, 40, 41, 42, 43], "child": [19, 39, 43], "child_class": 39, "child_class_declaration_axiom": 39, "children": [19, 28], "choic": 38, "choos": 40, "cl": [33, 40], "class": [10, 31, 32, 36, 38, 42], "class_assert": 16, "class_assertion_axiom": 39, "class_cach": 26, "class_cnt": 9, "class_express": [0, 2, 3, 9, 11, 16, 19, 23, 26, 28, 29, 32, 33, 37, 39, 40, 41, 43], "class_length": 33, "classassert": [2, 3, 16, 26], "classconstruct": 23, "classes_in_signatur": [0, 3, 23, 40], "classexpress": [4, 5], "classhierarchi": 19, "classmethod": 19, "classvar": 33, "clean": 33, "clear": 33, "clone": 38, "closur": [2, 3, 26], "cls_": 16, "cnt": 9, "code": [5, 8, 39, 40, 42], "coincid": [12, 16], "collect": [0, 3, 13, 23], "com": [37, 38, 39, 40, 41, 42, 43], "combin": 33, "combine_nary_express": 33, "come": [16, 42], "commit": 37, "commut": 33, "compar": 42, "complement": [4, 5, 7, 17, 33], "complement_of_data_rang": 17, "complex": [0, 3, 16, 23, 36, 38, 41, 42], "compon": [33, 41], "comput": 39, "concept": [23, 33, 39, 42, 43], "concept_reduc": 33, "concept_reducer_properti": 33, "conceptoperandsort": 33, "concret": 39, "conda": 38, "condit": [4, 5], "configur": [22, 30], "conjunct": [5, 8, 33], "connect": [5, 8, 16, 25], "consid": [25, 41, 42], "consider": 41, "consist": [0, 3, 5, 8, 12, 21, 23, 26, 40], "constant": [5, 8, 13, 33], "constitut": 10, "construct": [16, 30, 38, 39, 42, 43], "constructor": 29, "contact": [37, 38], "contain": [0, 2, 3, 5, 6, 8, 9, 11, 16, 17, 18, 19, 23, 26, 33, 39, 40, 41, 43], "contains_named_equivalent_class": 16, "contains_owl_noth": 16, "contains_owl_th": 16, "content": 39, "context": 33, "continu": 42, "contribut": 36, "conveni": [0, 1, 3, 5, 8, 11, 23, 24, 26, 41, 43], "convers": [9, 40], "convert": [11, 27, 33, 36, 37, 38, 39], "copi": 39, "correct": 43, "correspond": [12, 25], "could": 16, "count": [9, 11, 33, 43], "counterpart": 38, "cover": [16, 37, 41, 42], "coverag": 36, "creat": [1, 3, 11, 12, 23, 24, 29, 32, 37, 38, 39, 40, 41, 42, 43], "create_ontologi": [1, 3, 11, 24], "current": [31, 32, 37, 38], "current_vari": 9, "cwa": 41, "d": [2, 3, 5, 8, 26, 42], "data": [0, 2, 3, 5, 8, 10, 13, 16, 17, 18, 19, 21, 23, 25, 26, 33, 36, 38, 42], "data_all_values_length": 33, "data_cardinality_length": 33, "data_complement_length": 33, "data_has_value_length": 33, "data_intersection_length": 33, "data_one_of_length": 33, "data_properti": 25, "data_properties_in_signatur": [0, 3, 23], "data_property_domain": [2, 3, 16, 26], "data_property_domain_axiom": [0, 3, 23], "data_property_length": 33, "data_property_rang": [2, 3, 16], "data_property_range_axiom": [0, 3, 23], "data_property_valu": [2, 3, 26, 41], "data_rang": 17, "data_some_values_length": 33, "data_subproperti": 16, "data_union_length": 33, "dataallvaluesfrom": [5, 8, 16], "datacomplementof": [5, 8, 17], "dataexactcardin": 5, "datahasvalu": [5, 8], "dataintersectionof": 17, "datamaxcardin": [5, 8, 16], "datamincardin": [5, 8], "dataoneof": [5, 8, 17], "datapropertyassert": [2, 3, 16, 26], "datapropertycomplementof": [2, 3, 26], "datapropertydomain": 16, "datapropertyrang": 16, "datarang": [16, 17], "dataset": 41, "datasomevaluesfrom": [2, 3, 5, 8, 16, 26], "datatyp": [2, 3, 5, 8, 10, 16, 17, 18, 21, 26, 29, 33], "datatype_definit": 16, "datatype_length": 33, "datatype_restrict": [5, 8], "datatypedefinit": 16, "datatypepropertyhierarchi": 19, "datatyperestrict": [5, 8, 17], "dataunionof": 17, "date": [21, 34], "date_tim": 34, "date_time_stamp": 34, "dateowldatatyp": 21, "datetim": [21, 34], "datetimeowldatatyp": 21, "datetimestamp": 34, "de": 38, "debug": 30, "decid": 42, "decim": 34, "declar": [16, 24, 33, 39], "deduc": 42, "def": 33, "default": [23, 26, 28, 32, 33, 38, 39, 40, 41], "defin": [10, 16, 33, 39, 41, 42], "definit": [16, 25, 42], "deleg": 42, "denot": [16, 18, 21], "depend": [16, 26, 31, 33, 41, 42], "deploi": 24, "deprec": 12, "deriv": 16, "descend": [2, 3, 26], "describ": [25, 37, 41], "descript": [28, 35, 38], "desir": 26, "detach": 31, "determin": [0, 3, 4, 5, 7, 8, 12, 23, 25, 26], "develop": 42, "diagram": 43, "dice": [32, 38], "dict": [9, 30], "dictionari": 30, "differ": [0, 2, 3, 5, 8, 16, 18, 23, 25, 26, 30, 39, 40, 41, 42], "different_individu": [2, 3, 26], "differenti": 40, "differentindividu": [2, 3, 16, 26], "direct": [2, 3, 19, 26, 41, 42], "directclassassert": [2, 3, 26], "directli": [0, 3, 23, 43], "directori": [26, 39, 43], "directsubclassof": [2, 3, 26], "directsubdatapropertyof": [2, 3, 26], "directsubobjectpropertyof": [2, 3, 26], "disjoint": [2, 3, 16, 26, 42], "disjoint_class": [2, 3, 16, 26, 42], "disjoint_data_properti": [2, 3, 16, 26], "disjoint_object_properti": [2, 3, 16, 26], "disjoint_union_of_class_express": 16, "disjointclass": [0, 3, 16, 23], "disjointdataproperti": 16, "disjointobjectproperti": 16, "disjointunion": 16, "disjunct": 33, "distinct": [16, 43], "distribut": 42, "dl": [5, 8, 20, 30, 36], "dl_express": [11, 28], "dl_grammar": 28, "dl_to_owl_express": [11, 28, 43], "dlparser": 28, "dlrender": 30, "dlsyntaxobjectrender": 30, "dlsyntaxpars": 28, "do": [23, 39, 40, 41], "doc": 40, "document": [1, 3, 11, 14, 23, 24, 31, 41, 42, 43], "document_iri": [0, 3, 23], "doe": [0, 3, 4, 5, 7, 32, 36, 39, 41, 42, 43], "doesn": [16, 23], "domain": [2, 3, 16, 26, 39, 41, 42, 43], "don": [40, 42], "done": [39, 40], "doubl": [21, 34], "doubleowldatatyp": 21, "down": 31, "download_external_fil": 31, "downward": 19, "dp": [2, 3, 26], "dp_assertion_axiom": 39, "dpe": [5, 8, 16], "dpe1": [5, 8, 16], "dpe2": 16, "dpei": [5, 8, 16], "dpej": 16, "dpen": [5, 8, 16], "dr": [5, 8, 16, 17], "dr1": 17, "dri": 17, "drn": 17, "dt": [5, 8, 16], "due": 41, "durat": [21, 34], "durationowldatatyp": 21, "dure": [22, 30], "e": [2, 3, 4, 5, 6, 8, 9, 13, 16, 17, 22, 25, 26, 27, 30, 33, 38, 39, 42], "each": [2, 3, 5, 8, 16, 17, 18, 21, 26, 33, 39, 41, 42], "earlier": 40, "easi": 43, "easili": 42, "either": [15, 16, 25, 40], "element": [9, 14, 33], "els": [2, 3, 23, 26, 41], "empti": [0, 1, 2, 3, 11, 23, 24, 26], "enabl": 42, "end": [32, 41], "endpoint": 30, "ensur": 33, "entail": [2, 3, 26, 42], "entiti": [2, 3, 9, 11, 16, 18, 19, 20, 22, 23, 26, 27, 30, 38, 39, 43], "enum": [5, 34], "enumer": [5, 8, 34], "enumeration_of_individu": [5, 8], "enumeration_of_liter": [5, 8], "environ": 42, "equal": [0, 3, 12, 16, 17, 23], "equival": [0, 2, 3, 4, 5, 6, 7, 8, 13, 16, 17, 23, 26, 32, 41, 42], "equivalent_class": [2, 3, 16, 26, 41, 42], "equivalent_classes_axiom": [0, 3, 23], "equivalent_data_properti": [2, 3, 16, 26], "equivalent_object_properti": [2, 3, 16, 26, 41, 42], "equivalent_to_haschild": 41, "equivalentclass": [0, 2, 3, 16, 23, 26], "equivalentdataproperti": [2, 3, 16, 26], "equivalentobjectproperti": [2, 3, 16, 26], "etc": [22, 33, 41], "evaluateddescriptionset": 33, "even": 28, "ever": 40, "everi": [38, 39, 41, 42, 43], "evolv": 39, "exact": [5, 8], "exact_cardin": [5, 8], "exactli": [5, 8, 16], "exampl": [2, 3, 9, 11, 22, 24, 25, 30, 32, 33, 36, 37, 39, 41, 43], "example_reason": 42, "except": 33, "exclud": [16, 23], "exclus": 29, "execut": [40, 41], "exist": [9, 11, 16, 19], "existenti": [5, 8, 16], "existential_quantification_2": [5, 8], "expect": [1, 3, 11, 24], "explain": 42, "explan": 42, "explicitli": [5, 8, 16, 42], "explor": 43, "expr1": 32, "expr2": 32, "express": [0, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 16, 22, 23, 25, 26, 27, 28, 32, 33, 36, 38, 39, 41, 42], "expression_str": [22, 28], "expressionop": 16, "extens": [5, 8, 14, 16], "extra": [40, 41], "f": [40, 42], "f1": [5, 8], "facet": [5, 8, 34], "facet_restrict": [5, 8], "fact": [41, 42], "factori": 19, "fals": [2, 3, 9, 11, 12, 19, 23, 26, 30, 33, 41, 42], "famili": [39, 40, 41, 43], "familiar": 41, "fast": 26, "faster": 41, "fastinstancecheckerreason": [41, 42], "father": [39, 40, 41], "feel": 37, "femal": 43, "fi": [5, 8], "fic": 42, "field": [26, 33], "file": [11, 24, 26, 32, 39], "filler": [5, 8, 13, 43], "filter": [9, 11], "final": [0, 3, 4, 5, 6, 7, 8, 12, 14, 17, 18, 20, 21, 25, 34, 39], "find": [36, 37, 42, 43], "first": [16, 39, 41, 42], "firstli": 39, "float": [21, 33, 34], "fn": [5, 8], "focu": 38, "folder": [37, 40], "follow": [16, 28, 33, 39, 41, 42, 43], "for_all_de_morgan": [9, 11], "foral": 9, "foralldemorgan": 9, "form": [4, 5, 7, 8, 16, 21, 22, 25, 30, 33], "formal": [4, 5, 39], "format": [9, 26, 32, 43], "former": [16, 18], "found": 30, "four": 43, "fraction": 43, "fraction_digit": [5, 34], "frag": 9, "framework": [37, 41], "free": [37, 40], "freed": 40, "frequent": 39, "from": [2, 3, 9, 11, 16, 20, 23, 26, 30, 31, 32, 33, 38, 39, 40, 41, 42, 43], "from_str": [5, 34], "fromowlready2": 23, "ftp_link": 31, "full": [33, 41, 42], "func": 33, "function": [16, 25, 26, 36, 38, 40, 41, 42], "functional_object_properti": 16, "functionaldataproperti": 16, "functionalobjectproperti": 16, "functool": 33, "fundament": [10, 16], "further": [36, 41], "g": [4, 5, 6, 8, 13, 16, 17, 25, 30, 33, 42], "gain": 39, "gap": 38, "gener": [0, 3, 5, 8, 9, 11, 13, 16, 19, 23, 26, 30, 31, 33, 37], "general_class_axiom": [0, 3, 23], "generate_and_save_inferred_class_assertion_axiom": 26, "generic_visit": 28, "get": [0, 1, 2, 3, 4, 5, 6, 7, 8, 13, 16, 17, 18, 20, 21, 23, 24, 25, 26, 37, 39, 41, 42], "get_abox_axiom": 23, "get_bottom_ent": 19, "get_cardin": [5, 8, 13], "get_class_express": 16, "get_class_nnf": 33, "get_data_rang": 17, "get_datarang": 16, "get_datatyp": [5, 8, 16, 21], "get_default": 33, "get_default_argu": 35, "get_default_document_iri": 23, "get_domain": 16, "get_ent": 16, "get_expression_length": 33, "get_facet": [5, 8], "get_facet_restrict": [5, 8], "get_facet_valu": [5, 8], "get_fil": [5, 8, 13], "get_first_properti": 16, "get_import_declar": 24, "get_individu": 16, "get_instances_from_owl_class": 26, "get_invers": 25, "get_inverse_properti": 25, "get_liter": 21, "get_named_properti": 25, "get_namespac": 12, "get_nnf": [4, 5, 7], "get_object": 16, "get_object_complement_of": [4, 5, 7], "get_ontologi": [1, 3], "get_ontology_id": [0, 3, 23], "get_ontology_iri": 23, "get_operand": [4, 5], "get_original_iri": 23, "get_owl_class": 16, "get_owl_disjoint_classes_axiom": 16, "get_owl_equivalent_classes_axiom": 16, "get_owl_ontology_manag": [0, 1, 3, 11, 23, 24], "get_owlapi_manag": 24, "get_owlapi_ontologi": 23, "get_properti": [5, 8, 16], "get_property_express": 16, "get_rang": 16, "get_remaind": 12, "get_root_ontologi": [2, 3, 26], "get_second_properti": 16, "get_signatur": 23, "get_sub_class": 16, "get_sub_properti": 16, "get_subject": 16, "get_super_class": 16, "get_super_properti": 16, "get_tbox_axiom": 23, "get_top_ent": 19, "get_top_level_cnf": 33, "get_top_level_dnf": 33, "get_valu": 16, "get_vari": 9, "get_version_iri": 23, "git": 38, "github": [24, 37, 38], "give": [41, 42], "given": [2, 3, 19, 20, 26, 30, 40, 42], "gmail": 37, "go": 40, "goal": 41, "good": 37, "grammar": 28, "graph": 38, "group": [33, 38, 43], "grouping_var": 9, "guid": [39, 40, 41, 42], "h": 42, "ha": [0, 1, 3, 5, 8, 11, 17, 22, 23, 24, 33, 41, 42], "handi": 42, "handl": [39, 40], "has_at_least_one_child": 43, "has_consistent_ontologi": [26, 40], "hasag": 39, "hasage_dp": 39, "hasage_dp_declaration_axiom": 39, "hascardin": [5, 8, 13], "haschild": [41, 43], "haschild_domain": 41, "haschild_rang": 41, "haschild_sub_properti": 41, "hasfil": [5, 8, 13], "hasindex": 33, "hasiri": [13, 18, 22, 24], "haskei": 16, "hasoperand": [4, 5, 6, 8, 13, 16, 17], "haspar": 39, "hasparent_op": 39, "hasparent_op_declaration_axiom": 39, "haspart": 25, "hasvalu": [5, 8], "have": [0, 1, 3, 11, 13, 23, 24, 36, 37, 39, 40, 41, 42, 43], "having_condit": 9, "heinz": 39, "help": 41, "helper": 9, "here": [39, 41, 42, 43], "hermit": [26, 40, 41, 42], "hide": 31, "hierarch": 43, "hierarchi": [16, 19, 41], "hierarchy_down": 19, "high": 25, "holder": 33, "host": 31, "how": [0, 3, 23, 36, 39, 40, 41, 42], "howev": [40, 43], "html": 24, "http": [4, 5, 6, 7, 8, 9, 11, 12, 16, 17, 18, 20, 21, 24, 25, 28, 30, 32, 38, 39, 40, 41, 43], "i": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 28, 30, 31, 32, 33, 36, 37, 39, 40, 41, 42, 43], "i1": 25, "i2": 25, "id": 23, "idea": [39, 42], "identifi": [0, 1, 3, 10, 11, 14, 16, 20, 23, 24, 38], "ignor": 19, "impl": 33, "implement": [1, 3, 11, 24, 28, 39, 41, 42], "implementor": 40, "impli": 16, "import": [2, 3, 16, 23, 24, 26, 31, 32, 39, 40, 41, 43], "import_declar": 24, "import_iri": 24, "includ": [0, 3, 16, 21, 23, 38], "include_imports_closur": 23, "inclus": 29, "incomplet": [26, 41], "ind": [2, 3, 26, 39, 40, 41], "ind2": [2, 3], "ind_cnt": 9, "ind_data_properti": [2, 3, 41], "ind_object_properti": [2, 3, 41], "independ": 39, "index": [33, 39], "indirect": [2, 3, 26], "individu": [0, 2, 3, 4, 5, 6, 7, 8, 10, 13, 15, 16, 17, 18, 20, 21, 23, 25, 26, 38, 39, 40, 41, 42, 43], "individual_equ": 16, "individual_inequ": 16, "individual_value_restrict": [5, 8], "individuals_in_signatur": [0, 3, 23, 39, 41], "inequ": 16, "infer": [26, 39, 40, 42], "infer_axiom": [26, 40], "infer_axioms_and_sav": 26, "infer_data_property_valu": 42, "infer_property_valu": 42, "inference_typ": [26, 35], "inference_types_map": 26, "inferred_axiom": 26, "inferredclassassertionaxiomgener": [26, 35], "inferreddatapropertycharacteristicaxiomgener": 26, "inferreddisjointclassesaxiomgener": 26, "inferredequivalentclassaxiomgener": 26, "inferredequivalentdatapropertiesaxiomgener": 26, "inferredequivalentobjectpropertyaxiomgener": 26, "inferredinverseobjectpropertiesaxiomgener": 26, "inferredobjectpropertycharacteristicaxiomgener": 26, "inferredsubclassaxiomgener": [26, 35], "inferredsubdatapropertyaxiomgener": 26, "inferredsubobjectpropertyaxiomgener": 26, "info": 19, "inform": [23, 30, 38], "inherit": [33, 40, 41], "init": 27, "initi": [31, 41, 42], "inplac": 23, "insid": [36, 42], "inspect": 39, "instal": [36, 42], "instanc": [1, 2, 3, 4, 5, 6, 8, 9, 11, 16, 23, 24, 26, 30, 33, 36, 39, 40, 42], "instanti": 42, "instead": [9, 11, 39, 41], "int": [2, 3, 5, 8, 9, 13, 21, 23, 26, 28, 33], "integ": [5, 8, 13, 21, 33, 34, 39], "integerowldatatyp": 21, "intend": 40, "interchang": 42, "interfac": [5, 8, 13, 15, 16, 22, 25, 33, 38], "intern": 31, "interpret": [5, 8], "intersect": [5, 6, 17, 33], "intersection_of_class_express": [5, 6], "intersection_of_data_rang": 17, "introduc": 40, "inv": 25, "invers": [16, 25, 33], "inverse_object_properti": 25, "inverse_object_properties_2": 16, "inversefunctionalobjectproperti": 16, "inverseobjectproperti": 16, "inverseof": 25, "io": 24, "ir": 10, "iri": [0, 1, 3, 5, 7, 11, 13, 15, 16, 18, 20, 22, 23, 24, 25, 28, 30, 37, 39, 41, 43], "irreflex": 16, "irreflexive_object_properti": 16, "irreflexiveobjectproperti": 16, "is_annot": 16, "is_annotation_axiom": 16, "is_anonym": [0, 3, 22, 23], "is_boolean": 21, "is_child_of": 19, "is_dat": 21, "is_data_property_express": 25, "is_data_restrict": [5, 8], "is_datetim": 21, "is_doubl": 21, "is_dur": 21, "is_entail": 26, "is_integ": 21, "is_liter": [15, 21], "is_logical_axiom": 16, "is_modifi": 23, "is_noth": 12, "is_object_property_express": 25, "is_object_restrict": [5, 8], "is_owl_noth": [4, 5, 7], "is_owl_th": [4, 5, 7], "is_owl_top_data_properti": 25, "is_owl_top_object_properti": 25, "is_parent_of": 19, "is_reserved_vocabulari": 12, "is_satisfi": 26, "is_str": 21, "is_sub_property_of": 19, "is_subclass_of": 19, "is_th": 12, "isn": 40, "isol": 39, "ispartof": 25, "issu": [30, 37, 42], "item": [9, 19, 33], "iter": [0, 2, 3, 4, 5, 6, 8, 9, 11, 13, 16, 17, 19, 23, 26, 30, 33, 40, 41], "iter_count": 33, "its": [0, 1, 2, 3, 11, 16, 22, 23, 24, 26, 38, 41, 42], "itself": 16, "j": [2, 3, 16, 26, 42], "jar": 31, "java": [27, 31, 38, 40, 41, 42], "jdk": 42, "jfact": [40, 41], "jpype": [31, 40], "jre": 42, "just": [1, 3, 11, 24, 40, 42, 43], "jvm": [31, 40], "k": 42, "keep": [40, 41], "kei": [16, 30, 33], "keyerror": 33, "kg": [39, 40, 41], "kind": [16, 18], "kit": 42, "know": [37, 42], "knowledg": [2, 3, 25, 26, 38, 39, 42], "kt": 33, "kwarg": 33, "l": [2, 3, 26], "label": [2, 3, 26], "lambda": 33, "languag": [14, 21, 38], "larger": 16, "last": 9, "latter": [16, 39], "lead": 30, "learn": [38, 39, 43], "least": [5, 6, 8, 17, 25, 43], "leav": [19, 28], "length": [5, 33, 34], "let": [2, 3, 26, 39, 41, 43], "level": [16, 25, 33, 42], "lexic": 21, "librari": [37, 38, 40, 41, 43], "licens": 38, "like": [38, 40, 41, 42, 43], "limit": [2, 3, 26, 41], "line": 39, "link": 33, "linux": 42, "list": [9, 16, 26, 27, 28, 31, 32, 33, 38, 39, 41, 42], "liter": [2, 3, 5, 8, 15, 16, 17, 18, 21, 25, 26, 30, 38, 39, 41, 42], "literal_17": 39, "literal_value_restrict": [5, 8], "load": [1, 2, 3, 11, 23, 24, 26, 36, 40], "load_ontologi": [1, 3, 11, 24, 39, 40, 41], "locat": [0, 3, 23], "lock": 33, "logger": [2, 23, 26], "logic": [10, 16, 28, 38, 40], "long": [34, 40], "longer": 40, "look": 37, "lookup_nam": 33, "loos": [38, 40], "low": 42, "lru": 33, "lru_cach": 33, "lrucach": 33, "lt": [5, 8, 16], "lt1": [5, 8], "lti": [5, 8], "ltn": [5, 8], "m": [16, 28], "machin": [31, 38, 39, 40, 42], "maco": 42, "made": [39, 41, 42, 43], "mai": [0, 3, 23, 39, 41, 42], "main": [1, 3, 11, 16, 18, 24, 35, 41, 43], "maintain": 38, "make": [28, 39, 40, 41, 42], "male": [40, 41, 43], "male_equivalent_class": 41, "male_individu": 41, "male_sub_class": 41, "male_super_class": 41, "manag": [0, 1, 3, 11, 23, 24, 26, 27, 38, 39, 40, 41, 42], "manchest": [28, 30, 36, 38], "manchester_express": [11, 28], "manchester_grammar": 28, "manchester_to_owl_express": [11, 28, 43], "manchesterowlsyntaxowlobjectrender": 30, "manchesterowlsyntaxpars": 28, "manchesterpars": 28, "manchesterrender": 30, "mandat": 24, "manipul": 38, "manual": 40, "manuscript": 37, "map": [1, 3, 9, 11, 19, 23, 24, 27, 30, 33, 40], "map_": 27, "map_concept": 23, "map_datarang": 23, "map_object": 23, "mapper": [23, 26, 30, 40, 41], "marker": 15, "markup": 14, "match": [0, 3, 23, 30], "max": [5, 8, 29, 43], "max_": 29, "max_exclus": [5, 34], "max_inclus": [5, 34], "max_length": [5, 34], "max_siz": 33, "maximum": [5, 8], "maximum_cardin": [5, 8], "maxsiz": 33, "mayb": 26, "maybe_add": 33, "mean": [16, 39, 40, 41], "meaning": 33, "measur": 33, "memori": [39, 41], "mention": [40, 42], "merg": 43, "meta": 13, "meta_class": [4, 5, 6, 8, 11, 16, 17, 18, 22, 24, 37], "method": [0, 1, 3, 4, 5, 7, 8, 11, 14, 22, 23, 24, 26, 28, 31, 39, 40, 41, 42, 43], "might": [24, 33], "min": [5, 8, 29, 43], "min_": 29, "min_exclus": [5, 34], "min_inclus": [5, 34], "min_length": [5, 34], "mind": [40, 41, 42], "minimum": [5, 8], "minimum_cardin": [5, 8], "miss": [33, 37, 40, 41], "mit": 38, "modal_depth": 9, "model": [9, 23], "modif": [39, 40], "modifi": [0, 3, 23, 36], "modul": 40, "moment": 42, "more": [5, 8, 16, 19, 26, 32, 33, 36, 39, 40, 41, 42, 43], "more_general_rol": 19, "more_special_rol": 19, "most": [5, 8, 16, 19, 28, 40, 42], "most_general_rol": 19, "most_special_rol": 19, "move": 31, "multipl": [5, 8, 16, 26, 39, 42], "must": [0, 2, 3, 5, 8, 16, 17, 20, 23, 26, 30, 32], "mutagenesi": 41, "my_ontologi": 32, "n": [2, 3, 5, 6, 8, 12, 14, 16, 17, 26, 28, 33, 38], "name": [2, 3, 4, 5, 7, 9, 10, 12, 14, 16, 20, 22, 25, 26, 33, 34, 37, 39, 41, 42, 43], "named_class": 16, "named_individu": [9, 11, 20], "namedindividu": [9, 11], "namespac": [11, 12, 27, 28, 32, 34, 37, 39, 41, 43], "nari": [6, 33], "nary_boolean_express": [5, 8, 37], "ncname": 12, "necessari": 40, "necessarili": 25, "need": [0, 3, 23, 39, 40, 42, 43], "neg": [5, 8, 9, 11, 13, 16], "negat": [4, 5, 7, 33], "negation_default": [26, 41], "negative_data_property_assert": 16, "negative_exampl": [9, 11], "negative_object_property_assert": 16, "negativedatapropertyassert": 16, "negativeobjectpropertyassert": 16, "neither": 32, "nest": [9, 11, 33], "new": [1, 3, 11, 16, 23, 24, 26, 40], "new_count_var": 9, "new_individual_vari": 9, "new_property_vari": 9, "newli": [1, 3, 11, 24], "next": [33, 39, 41], "nnf": [4, 5, 7, 33], "no_render_th": 30, "node": [2, 3, 26, 28, 33], "nodevisitor": 28, "nomin": [5, 8], "non": [2, 3, 5, 8, 13, 24, 26], "none": [0, 3, 9, 11, 12, 15, 16, 19, 21, 22, 23, 24, 26, 28, 30, 31, 32, 33, 35], "nonneg": [5, 8], "nor": 32, "normal": [4, 5, 7, 33], "notat": [38, 43], "note": [2, 3, 21, 25, 36, 41, 42], "noth": [0, 2, 3, 4, 5, 7, 12, 23, 26], "notic": [40, 43], "now": [28, 39, 41, 43], "number": [18, 33], "numeric_datatyp": 21, "o": [11, 22, 23, 30, 33], "obj": 33, "object": [0, 2, 3, 4, 5, 7, 8, 10, 13, 15, 16, 17, 18, 20, 22, 23, 24, 25, 26, 27, 28, 30, 31, 33, 36, 42], "object_": [9, 16], "object_all_values_length": 33, "object_cardinality_length": 33, "object_complement_length": 33, "object_has_self_length": 33, "object_has_value_length": 33, "object_intersection_length": 33, "object_inverse_length": 33, "object_one_of_length": 33, "object_properti": [25, 41], "object_properties_in_signatur": [0, 3, 23, 39], "object_properties_valu": 41, "object_property_domain": [2, 3, 16, 26, 41, 42], "object_property_domain_axiom": [0, 3, 23], "object_property_length": 33, "object_property_rang": [2, 3, 16, 26, 41], "object_property_range_axiom": [0, 3, 23], "object_property_valu": [2, 3, 26, 41, 42], "object_some_values_length": 33, "object_subproperti": 16, "object_union_length": 33, "objectallvaluesfrom": [5, 8, 16], "objectcomplementof": [2, 3, 4, 5, 26], "objectexactcardin": [5, 8], "objecthasself": [5, 8, 16], "objecthasvalu": [5, 8], "objectintersectionof": [5, 6], "objectinverseof": [2, 3, 16, 25, 26], "objectmaxcardin": [5, 8], "objectmincardin": [5, 8, 43], "objectoneof": [5, 8], "objectproperti": 43, "objectpropertyassert": [2, 3, 16, 26], "objectpropertychain": 16, "objectpropertycomplementof": [2, 3, 26], "objectpropertydomain": 16, "objectpropertyhierarchi": 19, "objectpropertyrang": 16, "objectsomevaluesfrom": [2, 3, 5, 8, 16, 26], "objectunionof": [5, 6], "objet": 19, "obtain": [0, 3, 5, 8, 23, 25, 26], "offer": [36, 41], "often": 42, "onc": 40, "one": [1, 2, 3, 5, 6, 8, 11, 16, 17, 18, 24, 25, 32, 33, 39, 40, 41, 42, 43], "oneof": [5, 8], "onli": [0, 2, 3, 5, 8, 9, 11, 16, 23, 25, 26, 32, 40, 41, 42, 43], "only_nam": [26, 41, 42], "onto": [38, 39, 41], "ontolearn": [30, 38], "ontologi": [0, 1, 2, 3, 10, 11, 16, 20, 22, 23, 24, 26, 27, 32, 36, 38, 40, 41, 43], "ontology_iri": 23, "ontologymanag": [11, 24, 39, 41], "ontosampl": 38, "op": [2, 3, 4, 5, 8, 16, 26, 41], "ope1": 16, "ope2": 16, "opei": 16, "opej": 16, "opem": 16, "open": [16, 37, 38], "openllet": [40, 41], "oper": [5, 33, 34, 42], "operand": [0, 3, 4, 5, 6, 8, 13, 16, 17, 23, 33], "operandsettransform": 33, "opt": 33, "optim": 39, "option": [23, 26, 30, 32], "order": 33, "orderedowlobject": 33, "org": [4, 5, 6, 7, 8, 9, 11, 12, 16, 17, 18, 20, 21, 24, 25, 28, 30, 32], "origin": [26, 42], "other": [4, 5, 6, 8, 12, 14, 16, 17, 22, 23, 25, 33, 39, 40, 41, 42, 43], "otherwis": [12, 15, 21, 26], "our": [37, 39, 41, 42], "out": 40, "output": 26, "output_format": 26, "output_path": 26, "over": [2, 3, 26, 30, 38, 40, 41], "overcom": 42, "owl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 36, 38, 39, 40, 41, 43], "owl2": [4, 5, 6, 7, 8, 9, 11, 16, 17, 18, 20, 21, 25, 28], "owl2sparqlconvert": 9, "owl_annot": [11, 12, 16, 21, 37], "owl_axiom": [0, 3, 11, 23, 26, 37, 39, 40], "owl_bottom_data_properti": 34, "owl_bottom_object_properti": 34, "owl_class": [5, 34, 37], "owl_data_rang": [2, 3, 4, 5, 8, 11, 18, 23, 28, 33, 37], "owl_datatyp": [5, 8, 11, 16, 21, 28, 37], "owl_datatype_max_exclusive_restrict": 29, "owl_datatype_max_inclusive_restrict": 29, "owl_datatype_min_exclusive_restrict": 29, "owl_datatype_min_inclusive_restrict": 29, "owl_datatype_min_max_exclusive_restrict": 29, "owl_datatype_min_max_inclusive_restrict": 29, "owl_expression_to_dl": [11, 30, 43], "owl_expression_to_manchest": [11, 30, 43], "owl_expression_to_sparql": [9, 11, 43], "owl_expression_to_sparql_with_confusion_matrix": [9, 11], "owl_hierarchi": 11, "owl_individu": [0, 2, 3, 5, 8, 9, 11, 16, 23, 26, 28, 37], "owl_liter": [2, 3, 5, 8, 11, 16, 26, 28, 37, 39], "owl_named_individu": 34, "owl_noth": 34, "owl_object": [0, 2, 3, 5, 7, 8, 9, 11, 15, 16, 17, 18, 20, 23, 25, 26, 28, 30, 33, 37], "owl_ontologi": [11, 24, 26, 37], "owl_ontology_manag": [11, 37, 39, 40, 41], "owl_properti": [0, 2, 3, 5, 8, 11, 16, 19, 23, 26, 28, 37, 39, 41, 43], "owl_reason": [11, 37, 40, 41], "owl_th": 34, "owl_top_data_properti": 34, "owl_top_object_properti": 34, "owlannot": [0, 3, 16, 23], "owlannotationassertionaxiom": 16, "owlannotationaxiom": 16, "owlannotationobject": 15, "owlannotationproperti": 16, "owlannotationpropertydomainaxiom": 16, "owlannotationpropertyrangeaxiom": 16, "owlannotationsubject": [12, 15, 16], "owlannotationvalu": [12, 15, 16, 21], "owlanonymousclassexpress": [4, 5, 8], "owlanonymousindividu": 16, "owlapi": [37, 39, 41, 42, 43], "owlapi_manag": 24, "owlapi_mapp": [11, 37], "owlapimapp": [27, 40], "owlasymmetricobjectpropertyaxiom": 16, "owlaxiom": [0, 3, 16, 23, 26, 40], "owlbooleanclassexpress": [4, 5, 6], "owlbottomdataproperti": 21, "owlbottomobjectproperti": 21, "owlc": 24, "owlcardinalityrestrict": [5, 8], "owlclass": [0, 2, 3, 5, 7, 16, 19, 23, 26, 28, 39, 40, 41, 43], "owlclassassertionaxiom": [16, 39], "owlclassaxiom": [0, 3, 16, 23], "owlclassexpress": [2, 3, 4, 5, 6, 7, 8, 9, 11, 16, 23, 26, 28, 32, 33, 41], "owlclassexpressionlengthmetr": 33, "owldataallvaluesfrom": [5, 8], "owldatacardinalityrestrict": [5, 8, 28], "owldatacomplementof": 17, "owldataexactcardin": [5, 8], "owldatahasvalu": [5, 8, 28], "owldataintersectionof": 17, "owldatamaxcardin": [5, 8], "owldatamincardin": [5, 8], "owldataoneof": [5, 8, 28], "owldataproperti": [0, 2, 3, 19, 23, 25, 26, 28, 39], "owldatapropertyassertionaxiom": [16, 39], "owldatapropertyaxiom": 16, "owldatapropertycharacteristicaxiom": 16, "owldatapropertydomainaxiom": [0, 3, 16, 23], "owldatapropertyexpress": [5, 8, 16, 25], "owldatapropertyrangeaxiom": [0, 3, 16, 23], "owldatarang": [2, 3, 5, 8, 16, 17, 18, 23, 28, 33], "owldatarestrict": [5, 8], "owldatasomevaluesfrom": [5, 8], "owldatatyp": [5, 8, 16, 18, 21, 28], "owldatatypedefinitionaxiom": 16, "owldatatyperestrict": [5, 8, 28, 29], "owldataunionof": 17, "owldeclarationaxiom": [16, 39, 40], "owldifferentindividualsaxiom": 16, "owldisjointclassesaxiom": 16, "owldisjointdatapropertiesaxiom": 16, "owldisjointobjectpropertiesaxiom": 16, "owldisjointunionaxiom": 16, "owlent": [2, 3, 5, 7, 9, 16, 18, 20, 22, 25, 26, 30], "owlequivalentclassesaxiom": [0, 3, 16, 23, 39], "owlequivalentdatapropertiesaxiom": 16, "owlequivalentobjectpropertiesaxiom": 16, "owlfacet": [5, 8, 28, 34], "owlfacetrestrict": [5, 8, 28], "owlfunctionaldatapropertyaxiom": 16, "owlfunctionalobjectpropertyaxiom": 16, "owlhaskeyaxiom": 16, "owlhasvaluerestrict": [5, 8], "owlimportsdeclar": 24, "owlindividu": [5, 8, 16, 20], "owlindividualaxiom": 16, "owlinversefunctionalobjectpropertyaxiom": 16, "owlinverseobjectpropertiesaxiom": 16, "owlirreflexiveobjectpropertyaxiom": 16, "owlliter": [2, 3, 5, 8, 16, 21, 26, 28, 39, 41], "owllogicalaxiom": 16, "owlmanag": 24, "owlnamedindividu": [0, 2, 3, 9, 11, 20, 23, 26, 28, 41], "owlnamedobject": 22, "owlnaryaxiom": 16, "owlnarybooleanclassexpress": [5, 6], "owlnaryclassaxiom": 16, "owlnarydatarang": 17, "owlnaryindividualaxiom": 16, "owlnarypropertyaxiom": 16, "owlnegativedatapropertyassertionaxiom": 16, "owlnegativeobjectpropertyassertionaxiom": 16, "owlobject": [0, 3, 5, 8, 11, 15, 16, 17, 20, 22, 23, 25, 30, 33], "owlobjectallvaluesfrom": [5, 8, 9], "owlobjectcardinalityrestrict": [5, 8, 28, 33], "owlobjectcomplementof": [4, 5, 7], "owlobjectexactcardin": [5, 8], "owlobjecthasself": [5, 8, 28], "owlobjecthasvalu": [5, 8, 28], "owlobjectintersectionof": [5, 6, 8, 43], "owlobjectinverseof": 25, "owlobjectmaxcardin": [5, 8, 43], "owlobjectmincardin": [5, 8, 43], "owlobjectoneof": [5, 8, 28], "owlobjectpars": [22, 28], "owlobjectproperti": [0, 2, 3, 19, 23, 25, 26, 28, 39, 41, 43], "owlobjectpropertyassertionaxiom": [16, 39], "owlobjectpropertyaxiom": 16, "owlobjectpropertycharacteristicaxiom": 16, "owlobjectpropertydomainaxiom": [0, 3, 16, 23], "owlobjectpropertyexpress": [2, 3, 5, 8, 16, 25, 26, 28], "owlobjectpropertyrangeaxiom": [0, 3, 16, 23], "owlobjectrender": [22, 30], "owlobjectrestrict": [5, 8], "owlobjectsomevaluesfrom": [5, 8, 43], "owlobjectunionof": [5, 6, 33], "owlontologi": [0, 1, 3, 11, 23, 24, 39, 40], "owlontologyid": [0, 3, 23], "owlontologymanag": [0, 1, 3, 11, 23, 24, 39, 40], "owlproperti": [16, 23, 25], "owlpropertyassertionaxiom": 16, "owlpropertyaxiom": 16, "owlpropertydomainaxiom": 16, "owlpropertyexpress": [5, 8, 16, 25], "owlpropertyrang": [4, 5, 17], "owlpropertyrangeaxiom": 16, "owlquantifieddatarestrict": [5, 8, 28], "owlquantifiedobjectrestrict": [5, 8, 28, 33], "owlquantifiedrestrict": [5, 8], "owlrdfvocabulari": 34, "owlready2": [23, 39, 41, 42], "owlready2_facet_kei": 23, "owlreason": [2, 3, 26, 30, 40], "owlreflexiveobjectpropertyaxiom": 16, "owlrestrict": [5, 8], "owlsameindividualaxiom": 16, "owlsubannotationpropertyofaxiom": 16, "owlsubclassofaxiom": [16, 39], "owlsubdatapropertyofaxiom": 16, "owlsubobjectpropertyofaxiom": 16, "owlsubpropertyaxiom": 16, "owlsymmetricobjectpropertyaxiom": 16, "owltopdataproperti": 21, "owltopobjectproperti": 21, "owltransitiveobjectpropertyaxiom": 16, "owlunarypropertyaxiom": 16, "own": 42, "p": [2, 3, 5, 8, 23, 25, 26, 33, 42], "packag": [31, 36, 38, 40, 42], "paderborn": 38, "page": 37, "pair": [5, 8, 25, 33], "pairwis": 16, "panda": 21, "parallel": 39, "paramet": [0, 1, 2, 3, 5, 8, 9, 11, 13, 16, 19, 22, 23, 24, 26, 27, 28, 30, 31, 32, 33, 42], "parameter": 33, "parent": [9, 19], "parent_var": 9, "pars": [21, 22, 28, 38, 43], "parse_boolean": 21, "parse_d": 21, "parse_datetim": 21, "parse_doubl": 21, "parse_dur": 21, "parse_express": [22, 28], "parse_integ": 21, "parse_str": 21, "parser": [11, 27, 37], "parsimoni": 28, "part": [25, 40, 43], "particular": [2, 3, 5, 8, 21, 26, 39, 42], "particularli": 42, "pass": [39, 43], "path": [11, 23, 24, 32, 41], "pattern": [5, 9, 11, 34], "pcwa": 41, "pe": [2, 3, 23, 26], "peek": 9, "pellet": [40, 41, 42], "perfect": 38, "perform": [39, 40, 41], "person": 43, "pertain": 24, "pip3": 38, "plai": 40, "pleas": 37, "point": [1, 3, 11, 24, 37], "pop": 41, "posit": [9, 11, 16, 33], "positive_data_property_assert": 16, "positive_exampl": [9, 11], "positive_object_property_assert": 16, "possibl": [39, 40, 41, 42], "possibli": [0, 3, 23, 25], "potenti": [2, 3, 26], "power": [38, 41], "precis": 39, "predic": [9, 30], "predict": 32, "prefer": 42, "prefix": 14, "present": 40, "prev": 33, "previou": [39, 42], "previous": 39, "print": [30, 39, 40, 41, 43], "problem": [9, 11], "proce": 41, "process": [9, 41], "program": 42, "project": [9, 11, 36, 38], "prop_cnt": 9, "properti": [0, 2, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 33, 34, 36, 38, 42], "properties_in_signatur": 23, "property_": 16, "property_cach": [26, 41], "property_express": 16, "protocol": 33, "provid": [11, 14, 22, 30, 37, 38, 39, 40, 41, 42], "publish": 38, "pull": 37, "purpos": [30, 31, 42], "py": [5, 37, 40], "pypi": 38, "python": [24, 27, 33, 36, 38, 39, 40, 41, 42], "quadstor": [11, 24, 39, 42], "qualifi": 14, "quantif": 16, "quantifi": [5, 8, 9, 11, 13], "queri": [9, 11, 19, 30, 38], "question": 36, "r": [5, 8, 9, 11, 33, 42], "r1": 42, "r2": 42, "rais": [1, 3, 11, 24, 32], "rang": [2, 3, 5, 8, 13, 16, 17, 18, 23, 26, 38, 41, 42], "range_": 16, "rather": 18, "rdf": [2, 3, 12, 14, 16, 18, 21, 26, 32, 34], "rdf_format": [23, 32], "rdfs_liter": 34, "rdfxml": [23, 32], "re": 28, "real": 42, "reason": [2, 3, 19, 26, 30, 36, 38, 39, 40], "recurs": 33, "reduc": 33, "reduct": 33, "refer": [14, 16, 18, 25, 37, 39, 40, 41, 42], "reflect": 42, "reflex": 16, "reflexive_object_properti": 16, "reflexiveobjectproperti": 16, "relat": [40, 42], "relationship": [39, 43], "relev": 42, "remaind": [5, 12, 34, 39], "remind": [5, 7, 12], "remov": [0, 3, 19, 23, 42], "remove_axiom": [0, 3, 23, 39], "render": [9, 11, 22, 27, 37, 38], "rendit": [22, 30], "replac": 16, "report": [33, 36], "repositori": 38, "repres": [0, 1, 3, 4, 5, 7, 8, 16, 17, 19, 20, 21, 22, 23, 24, 25, 28, 38, 39, 42, 43], "represent": [1, 3, 5, 7, 11, 13, 16, 18, 19, 20, 23, 24, 25, 36], "request": 37, "requir": [39, 41, 43], "research": [32, 38], "reserv": [12, 20], "reset": 26, "reset_and_disable_cach": 26, "resolv": 24, "resourc": [36, 40], "respect": [2, 3, 4, 5, 26, 40], "restart": 40, "restrict": [5, 13, 18, 19, 25, 29, 33, 37, 43], "restrict_and_copi": 19, "restriction_liter": 29, "result": [2, 3, 5, 8, 17, 26, 28, 33, 42, 43], "retriev": [0, 2, 3, 23, 26, 30, 38, 41, 42], "return": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 30, 33, 40, 41, 42], "role": 19, "root": [2, 3, 9, 11, 19, 26, 33], "root_ontologi": 19, "root_vari": [9, 11], "roughli": 16, "rule": [30, 42], "run": [39, 42], "run_with_timeout": 33, "runtim": 42, "s_1": 43, "sai": [23, 39, 43], "said": [4, 5, 10, 43], "same": [2, 3, 16, 17, 26, 33, 39, 40, 41, 42], "same_individu": [2, 3, 26], "samea": [4, 5, 6, 8, 13, 16, 17], "sameindividu": [2, 3, 16, 26], "satisfi": [4, 5, 26], "save": [0, 3, 11, 23, 24, 26, 32, 36, 38], "save_owl_class_express": 32, "save_world": [11, 24, 39], "scenario": [40, 42], "schema": 12, "scienc": 38, "script": 42, "search": [0, 3, 23, 42], "second": [2, 3, 16, 26, 30, 39, 41, 43], "secondli": 39, "see": [0, 3, 19, 23, 39, 40, 43], "seen": [5, 8, 16], "select": 43, "self": [5, 8, 33, 40], "semant": [5, 8, 16], "semanticweb": 24, "sens": 28, "sentinel": 33, "separ": 39, "sequenc": [5, 8], "serial": 32, "serv": [38, 39, 40, 41], "set": [0, 1, 2, 3, 4, 5, 7, 9, 10, 11, 16, 18, 19, 21, 23, 24, 25, 26, 31, 32, 33, 41, 42], "set_short_form_provid": [22, 30], "sever": 39, "shall": 26, "share": 33, "short": [22, 30], "short_form_provid": [22, 30], "shortcut": [5, 8, 16], "shorten": [22, 30, 33], "should": [0, 1, 2, 3, 11, 12, 19, 21, 23, 24, 26, 33, 41, 42], "show": [39, 40, 41, 42, 43], "shut": 31, "shutdownjvm": 40, "sibl": 19, "side": 39, "signal": 33, "signatur": [0, 3, 10, 23, 26, 38, 39, 40, 41], "signific": 40, "similar": 16, "similarli": 42, "simp": [5, 8], "simpl": [13, 14, 30, 40, 41, 42, 43], "simpler": [5, 8], "simplest": 25, "simpli": [39, 43], "simplic": 42, "simplifi": [2, 3, 5, 8, 26, 33], "sinc": [0, 3, 20, 23], "singl": [0, 3, 23, 32, 33], "singleton": [5, 8], "situat": [1, 3, 11, 24], "six": 43, "slightli": 41, "slot": 28, "small": 40, "so": [2, 3, 28, 39, 40, 42, 43], "softwar": 38, "some": [5, 8, 16, 25, 33, 39, 40, 41, 43], "some_modul": 32, "some_new_class": 40, "someexpression1": 32, "someexpression2": 32, "somehow": 40, "someowlclass": 30, "sometim": [16, 39], "sort": [16, 33], "sortedset": 33, "sourc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 38], "space": [5, 8, 18, 21], "sparql": [9, 11, 30, 36, 38], "speak": [16, 41], "specif": [0, 3, 4, 5, 8, 16, 17, 19, 22, 23, 25, 30, 38, 39, 40, 42, 43], "specifi": [0, 1, 2, 3, 4, 5, 8, 11, 12, 23, 24, 26, 30, 32, 41, 42, 43], "speech": 39, "speed": 41, "sphinx": 31, "sqlite3": [11, 24, 39], "stack_par": 9, "stack_vari": 9, "standard": [5, 8], "start": [12, 31, 37, 39, 40], "startjvm": [31, 40], "state": [11, 16, 24, 26, 42], "statement": [24, 39, 41], "static": [5, 12, 19, 27, 31, 33, 34, 40], "static_func": [11, 37, 40], "static_funct": 40, "statist": 33, "step": 39, "stmt": 37, "stop": 40, "stopjvm": [31, 40], "store": [30, 39, 41], "str": [1, 3, 5, 7, 9, 11, 12, 13, 14, 16, 18, 20, 21, 22, 23, 24, 25, 26, 28, 30, 31, 32, 34], "stream": [2, 3, 16, 26, 27], "stream_obj": 27, "strict": [2, 3, 26], "strictli": 40, "strictsubclassof": [2, 3, 26], "strictsubdatapropertyof": [2, 3, 26], "strictsubobjectpropertyof": [2, 3, 26], "string": [1, 3, 5, 7, 11, 12, 13, 16, 18, 20, 21, 22, 24, 25, 28, 30, 34, 43], "stringowldatatyp": 21, "structur": [0, 3, 4, 5, 8, 23, 38, 39, 41, 43], "structural_reason": 41, "structuralreason": [26, 41], "style": 38, "sub": [0, 2, 3, 16, 19, 23, 26, 41, 42], "sub_class": [2, 3, 16, 19, 26, 41, 42], "sub_data_properti": [2, 3, 19, 26], "sub_object_properti": [2, 3, 19, 26, 41, 42], "sub_properti": [16, 19, 26, 41], "subannotationpropertyof": 16, "subclass": [0, 2, 3, 16, 19, 23, 26, 28, 41, 42], "subclass_axiom": 16, "subclassof": 16, "subdatapropertyof": 16, "subject": [2, 3, 9, 15, 16, 26, 41], "submodul": 36, "subobjectpropertyof": 16, "subproperti": [2, 3, 16, 26], "subsumpt": 42, "successfulli": [1, 3, 11, 24], "suitabl": 39, "super": [2, 3, 16, 19, 26, 42], "super_class": [2, 3, 16, 19, 26, 41, 42], "super_data_properti": [2, 3, 19, 26], "super_object_properti": [2, 3, 19, 26], "super_properti": [16, 19], "superclass": [19, 26, 41, 42], "support": [26, 32, 41, 42], "suppos": 39, "sure": [28, 40], "symbolic_form": [5, 34], "symmetr": 16, "symmetri": 16, "symmetric_object_properti": 16, "symmetricobjectproperti": 16, "sync": [36, 41], "sync_reason": [41, 42], "synchron": [36, 41], "syncontologi": [23, 24, 26, 40, 41], "syncontologymanag": [24, 40], "syncreason": [26, 40, 41, 42], "synonym": 16, "syntact": [5, 8, 16], "syntax": [4, 5, 6, 7, 8, 9, 11, 12, 16, 17, 18, 20, 21, 25, 28, 30, 36, 38], "system": [25, 41], "t": [16, 23, 25, 30, 33, 40, 42], "tabl": 42, "tag": 21, "take": [2, 3, 26, 32, 33, 37, 41], "taken": [2, 3, 26], "talk": 42, "target": 42, "tbox": [23, 42], "tbox_axiom": 23, "tell": 42, "temp": 26, "temp_owlapi": 38, "term": [10, 42], "test": [37, 39, 40, 42], "than": [16, 18, 26, 41], "thank": 40, "the_class": 27, "thei": [10, 16, 20, 21, 23, 39, 40, 42], "them": [14, 18, 26, 37, 39, 40, 41, 42], "themselv": [5, 8], "therefor": 42, "thi": [0, 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 16, 18, 19, 20, 21, 23, 24, 25, 26, 28, 30, 31, 32, 33, 39, 40, 41, 42, 43], "thing": [2, 3, 4, 5, 7, 12, 16, 25, 26, 39, 40, 42, 43], "thingclass": 23, "third": 39, "those": [5, 8], "thread": 31, "three": 40, "through": [1, 3, 11, 24, 40, 43], "thu": [16, 18], "time": [2, 3, 16, 26, 39], "time_datatyp": 21, "timedelta": 21, "timeout": [2, 3, 26, 33], "tip": 43, "to_list": 27, "to_python": 21, "to_string_id": 22, "togeth": [2, 3, 23, 26, 41, 43], "toler": [1, 3, 11, 24], "too": [2, 3, 26], "toowlready2": 23, "top": [2, 3, 16, 26, 33], "topdataproperti": 25, "toplevelcnf": 33, "topleveldnf": 33, "topobjectproperti": 25, "topowldatatyp": 21, "total": [37, 43], "total_digit": [5, 34], "tr": [4, 5, 6, 7, 8, 9, 11, 16, 17, 18, 20, 21, 25, 28], "transfer": 42, "transform": [9, 11, 33], "transit": [16, 19], "transitive_object_properti": 16, "transitiveobjectproperti": 16, "translat": 30, "translating_short_form_endpoint": 30, "translating_short_form_provid": 30, "tri": 26, "tripl": [9, 30, 39], "triplestor": 30, "true": [2, 3, 4, 5, 7, 8, 9, 11, 12, 15, 19, 21, 23, 25, 26, 41, 42], "try": 33, "ttl": 26, "tupl": [5, 8, 17, 19], "turtl": 26, "two": [16, 39, 41, 42, 43], "type": [2, 3, 4, 5, 7, 8, 9, 13, 16, 19, 21, 23, 25, 26, 33, 39, 41, 42], "type_": [5, 8], "type_index": [0, 3, 4, 5, 6, 7, 8, 12, 17, 18, 20, 21, 25, 33], "typic": 33, "u": [16, 33, 41], "unari": [5, 8, 16], "unchang": 16, "unclear": [9, 11], "under": 41, "understood": [5, 7, 21], "uni": 38, "union": [5, 6, 8, 16, 17, 18, 33], "union_of_class_express": [5, 6], "union_of_data_rang": 17, "unionof": [5, 8], "uniqu": [10, 16, 33], "univers": [5, 8, 9, 11, 38, 39], "universal_quantif": [5, 8], "universal_quantification_2": [5, 8], "unsatisfi": [2, 3, 26], "unsatisfiable_class": 26, "unsuccessfulli": [1, 3, 11, 24], "until": [2, 3, 26], "up": [40, 41], "updat": 42, "update_isolated_ontologi": 42, "upfront": 43, "upon": [16, 41, 42, 43], "uri": [14, 15, 32], "url": 24, "us": [0, 1, 2, 3, 5, 8, 9, 11, 14, 16, 18, 19, 20, 23, 24, 25, 26, 28, 30, 31, 32, 33, 37, 38, 39, 40, 41, 42, 43], "usag": [36, 40], "usual": [2, 3, 10, 12, 26, 40], "util": [11, 37, 38], "util_owl_static_func": 11, "v": 33, "valid": 41, "valu": [2, 3, 5, 8, 9, 11, 12, 13, 15, 16, 18, 21, 26, 30, 33, 39, 41, 42], "var": 9, "variabl": [9, 11, 33, 39, 41], "variable_ent": 9, "variablesmap": 9, "variou": 16, "veri": 41, "versa": [16, 40], "version": [0, 1, 3, 11, 23, 24, 38, 40], "version_iri": 23, "vi": [5, 8], "via": [0, 3, 23, 40], "vice": [16, 40], "virtual": [31, 40, 42], "visit": 28, "visit_abbreviated_iri": 28, "visit_boolean_liter": 28, "visit_cardinality_r": 28, "visit_class_express": 28, "visit_class_iri": 28, "visit_data_cardinality_r": 28, "visit_data_intersect": 28, "visit_data_parenthes": 28, "visit_data_primari": 28, "visit_data_property_iri": 28, "visit_data_some_only_r": 28, "visit_data_union": 28, "visit_data_value_r": 28, "visit_datatyp": 28, "visit_datatype_iri": 28, "visit_datatype_restrict": 28, "visit_date_liter": 28, "visit_datetime_liter": 28, "visit_decimal_liter": 28, "visit_duration_liter": 28, "visit_facet": 28, "visit_facet_restrict": 28, "visit_float_liter": 28, "visit_full_iri": 28, "visit_has_self": 28, "visit_individual_iri": 28, "visit_individual_list": 28, "visit_integer_liter": 28, "visit_intersect": 28, "visit_iri": 28, "visit_liter": 28, "visit_literal_list": 28, "visit_non_negative_integ": 28, "visit_object_properti": 28, "visit_object_property_iri": 28, "visit_parenthes": 28, "visit_primari": 28, "visit_quoted_str": 28, "visit_simple_iri": 28, "visit_some_only_r": 28, "visit_string_literal_languag": 28, "visit_string_literal_no_languag": 28, "visit_typed_liter": 28, "visit_union": 28, "visit_value_r": 28, "visited_children": 28, "visitor": 28, "vocab": [5, 8, 11, 28, 37], "vocabulari": [10, 12, 20, 34, 39], "vt": 33, "w": 33, "w3": [4, 5, 6, 7, 8, 9, 11, 12, 16, 17, 18, 20, 21, 25, 28], "wa": [1, 3, 11, 23, 24, 38, 40], "wai": [39, 41], "walk": 43, "want": [0, 3, 23, 37, 39, 41, 42, 43], "warn": 30, "we": [23, 28, 37, 38, 39, 40, 41, 42, 43], "web": 38, "well": [16, 17, 37, 39, 40, 41, 42], "what": [36, 39, 40, 41], "when": [1, 3, 11, 24, 33, 39, 40, 41, 42], "where": [0, 1, 2, 3, 5, 8, 11, 23, 24, 26, 32, 39, 43], "wherea": 43, "whether": [0, 3, 16, 21, 23, 33, 41, 42], "which": [0, 2, 3, 4, 5, 15, 16, 18, 19, 21, 22, 23, 25, 26, 28, 39, 40, 41, 42, 43], "while": 16, "whole": 42, "whose": [2, 3, 5, 8, 16, 19, 26, 41], "wiki": 40, "window": 42, "without": [16, 25, 39], "word": [41, 43], "work": [37, 39, 41, 42, 43], "world": [23, 36], "world_stor": [11, 24], "worri": 40, "worst": 33, "would": [40, 41, 43], "wrap": [4, 5, 17], "www": [4, 5, 6, 7, 8, 9, 11, 12, 16, 17, 18, 20, 21, 25, 28, 42], "x": [2, 3, 9, 11, 16, 26, 33, 42, 43], "xml": [26, 32], "xmlschema": [12, 21], "xsd": [14, 34], "xsdvocabulari": 34, "y": [16, 33, 42], "yet": [16, 31], "you": [0, 3, 23, 37, 39, 40, 41, 42, 43], "your": [37, 40, 41, 42], "z": [16, 33], "zero": 16}, "titles": ["owlapy.abstracts.abstract_owl_ontology", "owlapy.abstracts.abstract_owl_ontology_manager", "owlapy.abstracts.abstract_owl_reasoner", "owlapy.abstracts", "owlapy.class_expression.class_expression", "owlapy.class_expression", "owlapy.class_expression.nary_boolean_expression", "owlapy.class_expression.owl_class", "owlapy.class_expression.restriction", "owlapy.converter", "owlapy.entities", "owlapy", "owlapy.iri", "owlapy.meta_classes", "owlapy.namespaces", "owlapy.owl_annotation", "owlapy.owl_axiom", "owlapy.owl_data_ranges", "owlapy.owl_datatype", "owlapy.owl_hierarchy", "owlapy.owl_individual", "owlapy.owl_literal", "owlapy.owl_object", "owlapy.owl_ontology", "owlapy.owl_ontology_manager", "owlapy.owl_property", "owlapy.owl_reasoner", "owlapy.owlapi_mapper", "owlapy.parser", "owlapy.providers", "owlapy.render", "owlapy.static_funcs", "owlapy.util_owl_static_funcs", "owlapy.utils", "owlapy.vocab", "run", "Welcome to OWLAPY!", "Further Resources", "About owlapy", "Ontologies", "Owlapi Synchronization", "Reasoners", "Reasoning Details", "Basic Usage"], "titleterms": {"about": 38, "abstract": [0, 1, 2, 3], "abstract_owl_ontologi": 0, "abstract_owl_ontology_manag": 1, "abstract_owl_reason": 2, "add": 39, "an": [39, 42], "assert": 39, "atom": 43, "attribut": [2, 8, 9, 14, 21, 23, 26, 28, 29, 30, 33, 35], "axiom": 39, "basic": 43, "capabl": 42, "class": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 33, 34, 39, 40, 41, 43], "class_express": [4, 5, 6, 7, 8], "complex": 43, "concret": 42, "content": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36], "contribut": 37, "convert": [9, 43], "coverag": 37, "data": [39, 41], "detail": 42, "dl": 43, "doe": 38, "entiti": 10, "exampl": [26, 40, 42], "express": 43, "find": 41, "function": [9, 11, 27, 28, 29, 30, 31, 32, 33, 35], "further": 37, "have": 38, "how": 38, "i": 38, "insid": 37, "instal": 38, "instanc": 41, "iri": 12, "isol": 42, "load": 39, "manchest": 43, "meta_class": 13, "modifi": [39, 42], "modul": [0, 1, 2, 4, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35], "more": 37, "namespac": 14, "nary_boolean_express": 6, "new": 39, "note": [26, 40], "object": [39, 41, 43], "offer": 38, "ontologi": [39, 42], "owl_annot": 15, "owl_axiom": 16, "owl_class": 7, "owl_data_rang": 17, "owl_datatyp": 18, "owl_hierarchi": 19, "owl_individu": 20, "owl_liter": 21, "owl_object": 22, "owl_ontologi": 23, "owl_ontology_manag": 24, "owl_properti": 25, "owl_reason": 26, "owlapi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 36, 38, 40], "owlapi_mapp": 27, "packag": [3, 5, 11], "parser": 28, "project": 37, "properti": [39, 41, 43], "provid": 29, "question": 37, "reason": [41, 42], "remov": 39, "render": 30, "report": 37, "resourc": 37, "restrict": 8, "run": 35, "save": 39, "sparql": 43, "static_func": 31, "submodul": [3, 5, 11], "sync": [40, 42], "synchron": 40, "syntax": 43, "usag": [41, 43], "util": 33, "util_owl_static_func": 32, "vocab": 34, "welcom": 36, "what": 38, "world": [39, 42]}})
\ No newline at end of file
+Search.setIndex({"alltitles": {"About owlapy": [[37, null]], "Add a new Class": [[38, "add-a-new-class"]], "Add a new Object Property / Data Property": [[38, "add-a-new-object-property-data-property"]], "Add an Assertion Axiom": [[38, "add-an-assertion-axiom"]], "Atomic Classes": [[42, "atomic-classes"]], "Attributes": [[2, "attributes"], [8, "attributes"], [9, "attributes"], [14, "attributes"], [21, "attributes"], [23, "attributes"], [26, "attributes"], [28, "attributes"], [29, "attributes"], [30, "attributes"], [32, "attributes"], [34, "attributes"]], "Basic Usage": [[42, null]], "Capabilities": [[41, "capabilities"]], "Class Reasoning": [[40, "class-reasoning"]], "Classes": [[0, "classes"], [1, "classes"], [2, "classes"], [3, "classes"], [4, "classes"], [5, "classes"], [6, "classes"], [7, "classes"], [8, "classes"], [9, "classes"], [11, "classes"], [12, "classes"], [13, "classes"], [14, "classes"], [15, "classes"], [16, "classes"], [17, "classes"], [18, "classes"], [19, "classes"], [20, "classes"], [21, "classes"], [22, "classes"], [23, "classes"], [24, "classes"], [25, "classes"], [26, "classes"], [27, "classes"], [28, "classes"], [30, "classes"], [32, "classes"], [33, "classes"]], "Complex class expressions": [[42, "complex-class-expressions"]], "Concrete Example": [[41, "concrete-example"]], "Contents:": [[35, null]], "Contribution": [[36, "contribution"]], "Convert to SPARQL, DL or Manchester syntax": [[42, "convert-to-sparql-dl-or-manchester-syntax"]], "Coverage Report": [[36, "coverage-report"]], "Example:": [[26, "example"]], "Examples": [[39, "examples"]], "Find Instances": [[40, "find-instances"]], "Functions": [[9, "functions"], [11, "functions"], [27, "functions"], [28, "functions"], [29, "functions"], [30, "functions"], [31, "functions"], [32, "functions"], [34, "functions"]], "Further Resources": [[36, null]], "How to install?": [[37, "how-to-install"]], "Isolated World": [[41, "isolated-world"]], "Loading an Ontology": [[38, "loading-an-ontology"]], "Modifying an Ontology": [[38, "modifying-an-ontology"]], "Modifying an isolated ontology": [[41, "modifying-an-isolated-ontology"]], "Module Contents": [[0, "module-contents"], [1, "module-contents"], [2, "module-contents"], [4, "module-contents"], [6, "module-contents"], [7, "module-contents"], [8, "module-contents"], [9, "module-contents"], [12, "module-contents"], [13, "module-contents"], [14, "module-contents"], [15, "module-contents"], [16, "module-contents"], [17, "module-contents"], [18, "module-contents"], [19, "module-contents"], [20, "module-contents"], [21, "module-contents"], [22, "module-contents"], [23, "module-contents"], [24, "module-contents"], [25, "module-contents"], [26, "module-contents"], [27, "module-contents"], [28, "module-contents"], [29, "module-contents"], [30, "module-contents"], [31, "module-contents"], [32, "module-contents"], [33, "module-contents"], [34, "module-contents"]], "More Inside the Project": [[36, "more-inside-the-project"]], "Notes": [[39, "notes"]], "Notes:": [[26, "notes"]], "Object Properties and Data Properties Reasoning": [[40, "object-properties-and-data-properties-reasoning"]], "Object Property": [[42, "object-property"]], "Ontologies": [[38, null]], "Owlapi Synchronization": [[39, null]], "Package Contents": [[3, "package-contents"], [5, "package-contents"], [11, "package-contents"]], "Questions": [[36, "questions"]], "Reasoners": [[40, null]], "Reasoning Details": [[41, null]], "Remove an Axiom": [[38, "remove-an-axiom"]], "Save an Ontology": [[38, "save-an-ontology"]], "Submodules": [[3, "submodules"], [5, "submodules"], [11, "submodules"]], "Sync Reasoner": [[41, "sync-reasoner"]], "Usage of the Reasoner": [[40, "usage-of-the-reasoner"]], "Welcome to OWLAPY!": [[35, null]], "What does owlapy have to offer?": [[37, "what-does-owlapy-have-to-offer"]], "What is owlapy?": [[37, "what-is-owlapy"]], "Worlds": [[38, "worlds"]], "owlapy": [[11, null]], "owlapy.abstracts": [[3, null]], "owlapy.abstracts.abstract_owl_ontology": [[0, null]], "owlapy.abstracts.abstract_owl_ontology_manager": [[1, null]], "owlapy.abstracts.abstract_owl_reasoner": [[2, null]], "owlapy.class_expression": [[5, null]], "owlapy.class_expression.class_expression": [[4, null]], "owlapy.class_expression.nary_boolean_expression": [[6, null]], "owlapy.class_expression.owl_class": [[7, null]], "owlapy.class_expression.restriction": [[8, null]], "owlapy.converter": [[9, null]], "owlapy.entities": [[10, null]], "owlapy.iri": [[12, null]], "owlapy.meta_classes": [[13, null]], "owlapy.namespaces": [[14, null]], "owlapy.owl_annotation": [[15, null]], "owlapy.owl_axiom": [[16, null]], "owlapy.owl_data_ranges": [[17, null]], "owlapy.owl_datatype": [[18, null]], "owlapy.owl_hierarchy": [[19, null]], "owlapy.owl_individual": [[20, null]], "owlapy.owl_literal": [[21, null]], "owlapy.owl_object": [[22, null]], "owlapy.owl_ontology": [[23, null]], "owlapy.owl_ontology_manager": [[24, null]], "owlapy.owl_property": [[25, null]], "owlapy.owl_reasoner": [[26, null]], "owlapy.owlapi_mapper": [[27, null]], "owlapy.parser": [[28, null]], "owlapy.providers": [[29, null]], "owlapy.render": [[30, null]], "owlapy.static_funcs": [[31, null]], "owlapy.utils": [[32, null]], "owlapy.vocab": [[33, null]], "run": [[34, null]], "\u201cSync\u201d Classes": [[39, "sync-classes"]]}, "docnames": ["autoapi/owlapy/abstracts/abstract_owl_ontology/index", "autoapi/owlapy/abstracts/abstract_owl_ontology_manager/index", "autoapi/owlapy/abstracts/abstract_owl_reasoner/index", "autoapi/owlapy/abstracts/index", "autoapi/owlapy/class_expression/class_expression/index", "autoapi/owlapy/class_expression/index", "autoapi/owlapy/class_expression/nary_boolean_expression/index", "autoapi/owlapy/class_expression/owl_class/index", "autoapi/owlapy/class_expression/restriction/index", "autoapi/owlapy/converter/index", "autoapi/owlapy/entities/index", "autoapi/owlapy/index", "autoapi/owlapy/iri/index", "autoapi/owlapy/meta_classes/index", "autoapi/owlapy/namespaces/index", "autoapi/owlapy/owl_annotation/index", "autoapi/owlapy/owl_axiom/index", "autoapi/owlapy/owl_data_ranges/index", "autoapi/owlapy/owl_datatype/index", "autoapi/owlapy/owl_hierarchy/index", "autoapi/owlapy/owl_individual/index", "autoapi/owlapy/owl_literal/index", "autoapi/owlapy/owl_object/index", "autoapi/owlapy/owl_ontology/index", "autoapi/owlapy/owl_ontology_manager/index", "autoapi/owlapy/owl_property/index", "autoapi/owlapy/owl_reasoner/index", "autoapi/owlapy/owlapi_mapper/index", "autoapi/owlapy/parser/index", "autoapi/owlapy/providers/index", "autoapi/owlapy/render/index", "autoapi/owlapy/static_funcs/index", "autoapi/owlapy/utils/index", "autoapi/owlapy/vocab/index", "autoapi/run/index", "index", "usage/further_resources", "usage/main", "usage/ontologies", "usage/owlapi_synchronization", "usage/reasoner", "usage/reasoning_details", "usage/usage_examples"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1}, "filenames": ["autoapi/owlapy/abstracts/abstract_owl_ontology/index.rst", "autoapi/owlapy/abstracts/abstract_owl_ontology_manager/index.rst", "autoapi/owlapy/abstracts/abstract_owl_reasoner/index.rst", "autoapi/owlapy/abstracts/index.rst", "autoapi/owlapy/class_expression/class_expression/index.rst", "autoapi/owlapy/class_expression/index.rst", "autoapi/owlapy/class_expression/nary_boolean_expression/index.rst", "autoapi/owlapy/class_expression/owl_class/index.rst", "autoapi/owlapy/class_expression/restriction/index.rst", "autoapi/owlapy/converter/index.rst", "autoapi/owlapy/entities/index.rst", "autoapi/owlapy/index.rst", "autoapi/owlapy/iri/index.rst", "autoapi/owlapy/meta_classes/index.rst", "autoapi/owlapy/namespaces/index.rst", "autoapi/owlapy/owl_annotation/index.rst", "autoapi/owlapy/owl_axiom/index.rst", "autoapi/owlapy/owl_data_ranges/index.rst", "autoapi/owlapy/owl_datatype/index.rst", "autoapi/owlapy/owl_hierarchy/index.rst", "autoapi/owlapy/owl_individual/index.rst", "autoapi/owlapy/owl_literal/index.rst", "autoapi/owlapy/owl_object/index.rst", "autoapi/owlapy/owl_ontology/index.rst", "autoapi/owlapy/owl_ontology_manager/index.rst", "autoapi/owlapy/owl_property/index.rst", "autoapi/owlapy/owl_reasoner/index.rst", "autoapi/owlapy/owlapi_mapper/index.rst", "autoapi/owlapy/parser/index.rst", "autoapi/owlapy/providers/index.rst", "autoapi/owlapy/render/index.rst", "autoapi/owlapy/static_funcs/index.rst", "autoapi/owlapy/utils/index.rst", "autoapi/owlapy/vocab/index.rst", "autoapi/run/index.rst", "index.rst", "usage/further_resources.md", "usage/main.md", "usage/ontologies.md", "usage/owlapi_synchronization.md", "usage/reasoner.md", "usage/reasoning_details.md", "usage/usage_examples.md"], "indexentries": {"__contains__() (owlapy.converter.variablesmapping method)": [[9, "owlapy.converter.VariablesMapping.__contains__", false]], "__contains__() (owlapy.owl_hierarchy.abstracthierarchy method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.__contains__", false]], "__contains__() (owlapy.utils.lrucache method)": [[32, "owlapy.utils.LRUCache.__contains__", false]], "__eq__() (owlapy.class_expression.class_expression.owlobjectcomplementof method)": [[4, "owlapy.class_expression.class_expression.OWLObjectComplementOf.__eq__", false]], "__eq__() (owlapy.class_expression.nary_boolean_expression.owlnarybooleanclassexpression method)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression.__eq__", false]], "__eq__() (owlapy.class_expression.owldataallvaluesfrom method)": [[5, "owlapy.class_expression.OWLDataAllValuesFrom.__eq__", false]], "__eq__() (owlapy.class_expression.owldatacardinalityrestriction method)": [[5, "owlapy.class_expression.OWLDataCardinalityRestriction.__eq__", false]], "__eq__() (owlapy.class_expression.owldatahasvalue method)": [[5, "owlapy.class_expression.OWLDataHasValue.__eq__", false]], "__eq__() (owlapy.class_expression.owldataoneof method)": [[5, "owlapy.class_expression.OWLDataOneOf.__eq__", false]], "__eq__() (owlapy.class_expression.owldatasomevaluesfrom method)": [[5, "owlapy.class_expression.OWLDataSomeValuesFrom.__eq__", false]], "__eq__() (owlapy.class_expression.owldatatyperestriction method)": [[5, "owlapy.class_expression.OWLDatatypeRestriction.__eq__", false]], "__eq__() (owlapy.class_expression.owlfacetrestriction method)": [[5, "owlapy.class_expression.OWLFacetRestriction.__eq__", false]], "__eq__() (owlapy.class_expression.owlhasvaluerestriction method)": [[5, "owlapy.class_expression.OWLHasValueRestriction.__eq__", false]], "__eq__() (owlapy.class_expression.owlnarybooleanclassexpression method)": [[5, "owlapy.class_expression.OWLNaryBooleanClassExpression.__eq__", false]], "__eq__() (owlapy.class_expression.owlobjectallvaluesfrom method)": [[5, "owlapy.class_expression.OWLObjectAllValuesFrom.__eq__", false]], "__eq__() (owlapy.class_expression.owlobjectcardinalityrestriction method)": [[5, "owlapy.class_expression.OWLObjectCardinalityRestriction.__eq__", false]], "__eq__() (owlapy.class_expression.owlobjectcomplementof method)": [[5, "owlapy.class_expression.OWLObjectComplementOf.__eq__", false]], "__eq__() (owlapy.class_expression.owlobjecthasself method)": [[5, "owlapy.class_expression.OWLObjectHasSelf.__eq__", false]], "__eq__() (owlapy.class_expression.owlobjectoneof method)": [[5, "owlapy.class_expression.OWLObjectOneOf.__eq__", false]], "__eq__() (owlapy.class_expression.owlobjectsomevaluesfrom method)": [[5, "owlapy.class_expression.OWLObjectSomeValuesFrom.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owldataallvaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLDataAllValuesFrom.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owldatacardinalityrestriction method)": [[8, "owlapy.class_expression.restriction.OWLDataCardinalityRestriction.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owldatahasvalue method)": [[8, "owlapy.class_expression.restriction.OWLDataHasValue.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owldataoneof method)": [[8, "owlapy.class_expression.restriction.OWLDataOneOf.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owldatasomevaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLDataSomeValuesFrom.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owldatatyperestriction method)": [[8, "owlapy.class_expression.restriction.OWLDatatypeRestriction.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owlfacetrestriction method)": [[8, "owlapy.class_expression.restriction.OWLFacetRestriction.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owlhasvaluerestriction method)": [[8, "owlapy.class_expression.restriction.OWLHasValueRestriction.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owlobjectallvaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLObjectAllValuesFrom.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owlobjectcardinalityrestriction method)": [[8, "owlapy.class_expression.restriction.OWLObjectCardinalityRestriction.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owlobjecthasself method)": [[8, "owlapy.class_expression.restriction.OWLObjectHasSelf.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owlobjectoneof method)": [[8, "owlapy.class_expression.restriction.OWLObjectOneOf.__eq__", false]], "__eq__() (owlapy.class_expression.restriction.owlobjectsomevaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLObjectSomeValuesFrom.__eq__", false]], "__eq__() (owlapy.iri.iri method)": [[12, "owlapy.iri.IRI.__eq__", false]], "__eq__() (owlapy.namespaces.namespaces method)": [[14, "owlapy.namespaces.Namespaces.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlannotation method)": [[16, "owlapy.owl_axiom.OWLAnnotation.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLClassAssertionAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owldatapropertycharacteristicaxiom method)": [[16, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[16, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owldeclarationaxiom method)": [[16, "owlapy.owl_axiom.OWLDeclarationAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryClassAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom method)": [[16, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubClassOfAxiom.__eq__", false]], "__eq__() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLSubPropertyAxiom.__eq__", false]], "__eq__() (owlapy.owl_data_ranges.owldatacomplementof method)": [[17, "owlapy.owl_data_ranges.OWLDataComplementOf.__eq__", false]], "__eq__() (owlapy.owl_data_ranges.owlnarydatarange method)": [[17, "owlapy.owl_data_ranges.OWLNaryDataRange.__eq__", false]], "__eq__() (owlapy.owl_object.owlnamedobject method)": [[22, "owlapy.owl_object.OWLNamedObject.__eq__", false]], "__eq__() (owlapy.owl_object.owlobject method)": [[22, "owlapy.owl_object.OWLObject.__eq__", false]], "__eq__() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.__eq__", false]], "__eq__() (owlapy.owl_ontology.owlontologyid method)": [[23, "owlapy.owl_ontology.OWLOntologyID.__eq__", false]], "__eq__() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.__eq__", false]], "__eq__() (owlapy.owl_property.owlobjectinverseof method)": [[25, "owlapy.owl_property.OWLObjectInverseOf.__eq__", false]], "__eq__() (owlapy.utils.hasindex method)": [[32, "owlapy.utils.HasIndex.__eq__", false]], "__eq__() (owlapy.utils.orderedowlobject method)": [[32, "owlapy.utils.OrderedOWLObject.__eq__", false]], "__getitem__() (owlapy.converter.variablesmapping method)": [[9, "owlapy.converter.VariablesMapping.__getitem__", false]], "__getitem__() (owlapy.utils.lrucache method)": [[32, "owlapy.utils.LRUCache.__getitem__", false]], "__hash__() (owlapy.class_expression.class_expression.owlobjectcomplementof method)": [[4, "owlapy.class_expression.class_expression.OWLObjectComplementOf.__hash__", false]], "__hash__() (owlapy.class_expression.nary_boolean_expression.owlnarybooleanclassexpression method)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression.__hash__", false]], "__hash__() (owlapy.class_expression.owldataallvaluesfrom method)": [[5, "owlapy.class_expression.OWLDataAllValuesFrom.__hash__", false]], "__hash__() (owlapy.class_expression.owldatacardinalityrestriction method)": [[5, "owlapy.class_expression.OWLDataCardinalityRestriction.__hash__", false]], "__hash__() (owlapy.class_expression.owldatahasvalue method)": [[5, "owlapy.class_expression.OWLDataHasValue.__hash__", false]], "__hash__() (owlapy.class_expression.owldataoneof method)": [[5, "owlapy.class_expression.OWLDataOneOf.__hash__", false]], "__hash__() (owlapy.class_expression.owldatasomevaluesfrom method)": [[5, "owlapy.class_expression.OWLDataSomeValuesFrom.__hash__", false]], "__hash__() (owlapy.class_expression.owldatatyperestriction method)": [[5, "owlapy.class_expression.OWLDatatypeRestriction.__hash__", false]], "__hash__() (owlapy.class_expression.owlfacetrestriction method)": [[5, "owlapy.class_expression.OWLFacetRestriction.__hash__", false]], "__hash__() (owlapy.class_expression.owlhasvaluerestriction method)": [[5, "owlapy.class_expression.OWLHasValueRestriction.__hash__", false]], "__hash__() (owlapy.class_expression.owlnarybooleanclassexpression method)": [[5, "owlapy.class_expression.OWLNaryBooleanClassExpression.__hash__", false]], "__hash__() (owlapy.class_expression.owlobjectallvaluesfrom method)": [[5, "owlapy.class_expression.OWLObjectAllValuesFrom.__hash__", false]], "__hash__() (owlapy.class_expression.owlobjectcardinalityrestriction method)": [[5, "owlapy.class_expression.OWLObjectCardinalityRestriction.__hash__", false]], "__hash__() (owlapy.class_expression.owlobjectcomplementof method)": [[5, "owlapy.class_expression.OWLObjectComplementOf.__hash__", false]], "__hash__() (owlapy.class_expression.owlobjecthasself method)": [[5, "owlapy.class_expression.OWLObjectHasSelf.__hash__", false]], "__hash__() (owlapy.class_expression.owlobjectoneof method)": [[5, "owlapy.class_expression.OWLObjectOneOf.__hash__", false]], "__hash__() (owlapy.class_expression.owlobjectsomevaluesfrom method)": [[5, "owlapy.class_expression.OWLObjectSomeValuesFrom.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owldataallvaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLDataAllValuesFrom.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owldatacardinalityrestriction method)": [[8, "owlapy.class_expression.restriction.OWLDataCardinalityRestriction.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owldatahasvalue method)": [[8, "owlapy.class_expression.restriction.OWLDataHasValue.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owldataoneof method)": [[8, "owlapy.class_expression.restriction.OWLDataOneOf.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owldatasomevaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLDataSomeValuesFrom.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owldatatyperestriction method)": [[8, "owlapy.class_expression.restriction.OWLDatatypeRestriction.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owlfacetrestriction method)": [[8, "owlapy.class_expression.restriction.OWLFacetRestriction.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owlhasvaluerestriction method)": [[8, "owlapy.class_expression.restriction.OWLHasValueRestriction.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owlobjectallvaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLObjectAllValuesFrom.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owlobjectcardinalityrestriction method)": [[8, "owlapy.class_expression.restriction.OWLObjectCardinalityRestriction.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owlobjecthasself method)": [[8, "owlapy.class_expression.restriction.OWLObjectHasSelf.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owlobjectoneof method)": [[8, "owlapy.class_expression.restriction.OWLObjectOneOf.__hash__", false]], "__hash__() (owlapy.class_expression.restriction.owlobjectsomevaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLObjectSomeValuesFrom.__hash__", false]], "__hash__() (owlapy.iri.iri method)": [[12, "owlapy.iri.IRI.__hash__", false]], "__hash__() (owlapy.namespaces.namespaces method)": [[14, "owlapy.namespaces.Namespaces.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlannotation method)": [[16, "owlapy.owl_axiom.OWLAnnotation.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLClassAssertionAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owldatapropertycharacteristicaxiom method)": [[16, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[16, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owldeclarationaxiom method)": [[16, "owlapy.owl_axiom.OWLDeclarationAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryClassAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom method)": [[16, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubClassOfAxiom.__hash__", false]], "__hash__() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLSubPropertyAxiom.__hash__", false]], "__hash__() (owlapy.owl_data_ranges.owldatacomplementof method)": [[17, "owlapy.owl_data_ranges.OWLDataComplementOf.__hash__", false]], "__hash__() (owlapy.owl_data_ranges.owlnarydatarange method)": [[17, "owlapy.owl_data_ranges.OWLNaryDataRange.__hash__", false]], "__hash__() (owlapy.owl_object.owlnamedobject method)": [[22, "owlapy.owl_object.OWLNamedObject.__hash__", false]], "__hash__() (owlapy.owl_object.owlobject method)": [[22, "owlapy.owl_object.OWLObject.__hash__", false]], "__hash__() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.__hash__", false]], "__hash__() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.__hash__", false]], "__hash__() (owlapy.owl_property.owlobjectinverseof method)": [[25, "owlapy.owl_property.OWLObjectInverseOf.__hash__", false]], "__iter__() (owlapy.utils.evaluateddescriptionset method)": [[32, "owlapy.utils.EvaluatedDescriptionSet.__iter__", false]], "__len__() (owlapy.owl_hierarchy.abstracthierarchy method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.__len__", false]], "__len__() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.__len__", false]], "__lt__() (owlapy.owl_object.owlnamedobject method)": [[22, "owlapy.owl_object.OWLNamedObject.__lt__", false]], "__lt__() (owlapy.utils.orderedowlobject method)": [[32, "owlapy.utils.OrderedOWLObject.__lt__", false]], "__repr__() (owlapy.class_expression.class_expression.owlobjectcomplementof method)": [[4, "owlapy.class_expression.class_expression.OWLObjectComplementOf.__repr__", false]], "__repr__() (owlapy.class_expression.nary_boolean_expression.owlnarybooleanclassexpression method)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression.__repr__", false]], "__repr__() (owlapy.class_expression.owldataallvaluesfrom method)": [[5, "owlapy.class_expression.OWLDataAllValuesFrom.__repr__", false]], "__repr__() (owlapy.class_expression.owldatacardinalityrestriction method)": [[5, "owlapy.class_expression.OWLDataCardinalityRestriction.__repr__", false]], "__repr__() (owlapy.class_expression.owldatahasvalue method)": [[5, "owlapy.class_expression.OWLDataHasValue.__repr__", false]], "__repr__() (owlapy.class_expression.owldataoneof method)": [[5, "owlapy.class_expression.OWLDataOneOf.__repr__", false]], "__repr__() (owlapy.class_expression.owldatasomevaluesfrom method)": [[5, "owlapy.class_expression.OWLDataSomeValuesFrom.__repr__", false]], "__repr__() (owlapy.class_expression.owldatatyperestriction method)": [[5, "owlapy.class_expression.OWLDatatypeRestriction.__repr__", false]], "__repr__() (owlapy.class_expression.owlfacetrestriction method)": [[5, "owlapy.class_expression.OWLFacetRestriction.__repr__", false]], "__repr__() (owlapy.class_expression.owlnarybooleanclassexpression method)": [[5, "owlapy.class_expression.OWLNaryBooleanClassExpression.__repr__", false]], "__repr__() (owlapy.class_expression.owlobjectallvaluesfrom method)": [[5, "owlapy.class_expression.OWLObjectAllValuesFrom.__repr__", false]], "__repr__() (owlapy.class_expression.owlobjectcardinalityrestriction method)": [[5, "owlapy.class_expression.OWLObjectCardinalityRestriction.__repr__", false]], "__repr__() (owlapy.class_expression.owlobjectcomplementof method)": [[5, "owlapy.class_expression.OWLObjectComplementOf.__repr__", false]], "__repr__() (owlapy.class_expression.owlobjecthasself method)": [[5, "owlapy.class_expression.OWLObjectHasSelf.__repr__", false]], "__repr__() (owlapy.class_expression.owlobjecthasvalue method)": [[5, "owlapy.class_expression.OWLObjectHasValue.__repr__", false]], "__repr__() (owlapy.class_expression.owlobjectoneof method)": [[5, "owlapy.class_expression.OWLObjectOneOf.__repr__", false]], "__repr__() (owlapy.class_expression.owlobjectsomevaluesfrom method)": [[5, "owlapy.class_expression.OWLObjectSomeValuesFrom.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owldataallvaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLDataAllValuesFrom.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owldatacardinalityrestriction method)": [[8, "owlapy.class_expression.restriction.OWLDataCardinalityRestriction.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owldatahasvalue method)": [[8, "owlapy.class_expression.restriction.OWLDataHasValue.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owldataoneof method)": [[8, "owlapy.class_expression.restriction.OWLDataOneOf.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owldatasomevaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLDataSomeValuesFrom.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owldatatyperestriction method)": [[8, "owlapy.class_expression.restriction.OWLDatatypeRestriction.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owlfacetrestriction method)": [[8, "owlapy.class_expression.restriction.OWLFacetRestriction.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owlobjectallvaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLObjectAllValuesFrom.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owlobjectcardinalityrestriction method)": [[8, "owlapy.class_expression.restriction.OWLObjectCardinalityRestriction.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owlobjecthasself method)": [[8, "owlapy.class_expression.restriction.OWLObjectHasSelf.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owlobjecthasvalue method)": [[8, "owlapy.class_expression.restriction.OWLObjectHasValue.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owlobjectoneof method)": [[8, "owlapy.class_expression.restriction.OWLObjectOneOf.__repr__", false]], "__repr__() (owlapy.class_expression.restriction.owlobjectsomevaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLObjectSomeValuesFrom.__repr__", false]], "__repr__() (owlapy.iri.iri method)": [[12, "owlapy.iri.IRI.__repr__", false]], "__repr__() (owlapy.namespaces.namespaces method)": [[14, "owlapy.namespaces.Namespaces.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlannotation method)": [[16, "owlapy.owl_axiom.OWLAnnotation.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLClassAssertionAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owldatapropertycharacteristicaxiom method)": [[16, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[16, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owldeclarationaxiom method)": [[16, "owlapy.owl_axiom.OWLDeclarationAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom method)": [[16, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryClassAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom method)": [[16, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubClassOfAxiom.__repr__", false]], "__repr__() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLSubPropertyAxiom.__repr__", false]], "__repr__() (owlapy.owl_data_ranges.owldatacomplementof method)": [[17, "owlapy.owl_data_ranges.OWLDataComplementOf.__repr__", false]], "__repr__() (owlapy.owl_data_ranges.owlnarydatarange method)": [[17, "owlapy.owl_data_ranges.OWLNaryDataRange.__repr__", false]], "__repr__() (owlapy.owl_object.owlnamedobject method)": [[22, "owlapy.owl_object.OWLNamedObject.__repr__", false]], "__repr__() (owlapy.owl_object.owlobject method)": [[22, "owlapy.owl_object.OWLObject.__repr__", false]], "__repr__() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.__repr__", false]], "__repr__() (owlapy.owl_ontology.owlontologyid method)": [[23, "owlapy.owl_ontology.OWLOntologyID.__repr__", false]], "__repr__() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.__repr__", false]], "__repr__() (owlapy.owl_property.owlobjectinverseof method)": [[25, "owlapy.owl_property.OWLObjectInverseOf.__repr__", false]], "__setitem__() (owlapy.utils.lrucache method)": [[32, "owlapy.utils.LRUCache.__setitem__", false]], "__slots__ (owlapy.abstracts.abstract_owl_ontology.abstractowlontology attribute)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.__slots__", false]], "__slots__ (owlapy.abstracts.abstract_owl_ontology_manager.abstractowlontologychange attribute)": [[1, "owlapy.abstracts.abstract_owl_ontology_manager.AbstractOWLOntologyChange.__slots__", false]], "__slots__ (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner attribute)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.__slots__", false]], "__slots__ (owlapy.abstracts.abstractowlontology attribute)": [[3, "owlapy.abstracts.AbstractOWLOntology.__slots__", false]], "__slots__ (owlapy.abstracts.abstractowlontologychange attribute)": [[3, "owlapy.abstracts.AbstractOWLOntologyChange.__slots__", false]], "__slots__ (owlapy.abstracts.abstractowlreasoner attribute)": [[3, "owlapy.abstracts.AbstractOWLReasoner.__slots__", false]], "__slots__ (owlapy.class_expression.class_expression.owlbooleanclassexpression attribute)": [[4, "owlapy.class_expression.class_expression.OWLBooleanClassExpression.__slots__", false]], "__slots__ (owlapy.class_expression.class_expression.owlclassexpression attribute)": [[4, "owlapy.class_expression.class_expression.OWLClassExpression.__slots__", false]], "__slots__ (owlapy.class_expression.class_expression.owlobjectcomplementof attribute)": [[4, "owlapy.class_expression.class_expression.OWLObjectComplementOf.__slots__", false]], "__slots__ (owlapy.class_expression.nary_boolean_expression.owlnarybooleanclassexpression attribute)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression.__slots__", false]], "__slots__ (owlapy.class_expression.nary_boolean_expression.owlobjectintersectionof attribute)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLObjectIntersectionOf.__slots__", false]], "__slots__ (owlapy.class_expression.nary_boolean_expression.owlobjectunionof attribute)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLObjectUnionOf.__slots__", false]], "__slots__ (owlapy.class_expression.owl_class.owlclass attribute)": [[7, "owlapy.class_expression.owl_class.OWLClass.__slots__", false]], "__slots__ (owlapy.class_expression.owlbooleanclassexpression attribute)": [[5, "owlapy.class_expression.OWLBooleanClassExpression.__slots__", false]], "__slots__ (owlapy.class_expression.owlcardinalityrestriction attribute)": [[5, "owlapy.class_expression.OWLCardinalityRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.owlclass attribute)": [[5, "owlapy.class_expression.OWLClass.__slots__", false]], "__slots__ (owlapy.class_expression.owlclassexpression attribute)": [[5, "owlapy.class_expression.OWLClassExpression.__slots__", false]], "__slots__ (owlapy.class_expression.owldataallvaluesfrom attribute)": [[5, "owlapy.class_expression.OWLDataAllValuesFrom.__slots__", false]], "__slots__ (owlapy.class_expression.owldatacardinalityrestriction attribute)": [[5, "owlapy.class_expression.OWLDataCardinalityRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.owldataexactcardinality attribute)": [[5, "owlapy.class_expression.OWLDataExactCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.owldatahasvalue attribute)": [[5, "owlapy.class_expression.OWLDataHasValue.__slots__", false]], "__slots__ (owlapy.class_expression.owldatamaxcardinality attribute)": [[5, "owlapy.class_expression.OWLDataMaxCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.owldatamincardinality attribute)": [[5, "owlapy.class_expression.OWLDataMinCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.owldatarestriction attribute)": [[5, "owlapy.class_expression.OWLDataRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.owldatasomevaluesfrom attribute)": [[5, "owlapy.class_expression.OWLDataSomeValuesFrom.__slots__", false]], "__slots__ (owlapy.class_expression.owldatatyperestriction attribute)": [[5, "owlapy.class_expression.OWLDatatypeRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.owlfacetrestriction attribute)": [[5, "owlapy.class_expression.OWLFacetRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.owlhasvaluerestriction attribute)": [[5, "owlapy.class_expression.OWLHasValueRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.owlnarybooleanclassexpression attribute)": [[5, "owlapy.class_expression.OWLNaryBooleanClassExpression.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjectallvaluesfrom attribute)": [[5, "owlapy.class_expression.OWLObjectAllValuesFrom.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjectcardinalityrestriction attribute)": [[5, "owlapy.class_expression.OWLObjectCardinalityRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjectcomplementof attribute)": [[5, "owlapy.class_expression.OWLObjectComplementOf.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjectexactcardinality attribute)": [[5, "owlapy.class_expression.OWLObjectExactCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjecthasself attribute)": [[5, "owlapy.class_expression.OWLObjectHasSelf.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjecthasvalue attribute)": [[5, "owlapy.class_expression.OWLObjectHasValue.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjectintersectionof attribute)": [[5, "owlapy.class_expression.OWLObjectIntersectionOf.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjectmaxcardinality attribute)": [[5, "owlapy.class_expression.OWLObjectMaxCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjectmincardinality attribute)": [[5, "owlapy.class_expression.OWLObjectMinCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjectoneof attribute)": [[5, "owlapy.class_expression.OWLObjectOneOf.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjectrestriction attribute)": [[5, "owlapy.class_expression.OWLObjectRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjectsomevaluesfrom attribute)": [[5, "owlapy.class_expression.OWLObjectSomeValuesFrom.__slots__", false]], "__slots__ (owlapy.class_expression.owlobjectunionof attribute)": [[5, "owlapy.class_expression.OWLObjectUnionOf.__slots__", false]], "__slots__ (owlapy.class_expression.owlquantifieddatarestriction attribute)": [[5, "owlapy.class_expression.OWLQuantifiedDataRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.owlquantifiedobjectrestriction attribute)": [[5, "owlapy.class_expression.OWLQuantifiedObjectRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.owlquantifiedrestriction attribute)": [[5, "owlapy.class_expression.OWLQuantifiedRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.owlrestriction attribute)": [[5, "owlapy.class_expression.OWLRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlcardinalityrestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLCardinalityRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owldataallvaluesfrom attribute)": [[8, "owlapy.class_expression.restriction.OWLDataAllValuesFrom.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owldatacardinalityrestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLDataCardinalityRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owldataexactcardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLDataExactCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owldatahasvalue attribute)": [[8, "owlapy.class_expression.restriction.OWLDataHasValue.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owldatamaxcardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLDataMaxCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owldatamincardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLDataMinCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owldatarestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLDataRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owldatasomevaluesfrom attribute)": [[8, "owlapy.class_expression.restriction.OWLDataSomeValuesFrom.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owldatatyperestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLDatatypeRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlfacetrestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLFacetRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlhasvaluerestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLHasValueRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlobjectallvaluesfrom attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectAllValuesFrom.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlobjectcardinalityrestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectCardinalityRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlobjectexactcardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectExactCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlobjecthasself attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectHasSelf.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlobjecthasvalue attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectHasValue.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlobjectmaxcardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectMaxCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlobjectmincardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectMinCardinality.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlobjectoneof attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectOneOf.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlobjectrestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlobjectsomevaluesfrom attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectSomeValuesFrom.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlquantifieddatarestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLQuantifiedDataRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlquantifiedobjectrestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLQuantifiedObjectRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlquantifiedrestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLQuantifiedRestriction.__slots__", false]], "__slots__ (owlapy.class_expression.restriction.owlrestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLRestriction.__slots__", false]], "__slots__ (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.__slots__", false]], "__slots__ (owlapy.converter.variablesmapping attribute)": [[9, "owlapy.converter.VariablesMapping.__slots__", false]], "__slots__ (owlapy.iri.iri attribute)": [[12, "owlapy.iri.IRI.__slots__", false]], "__slots__ (owlapy.meta_classes.hascardinality attribute)": [[13, "owlapy.meta_classes.HasCardinality.__slots__", false]], "__slots__ (owlapy.meta_classes.hasfiller attribute)": [[13, "owlapy.meta_classes.HasFiller.__slots__", false]], "__slots__ (owlapy.meta_classes.hasiri attribute)": [[13, "owlapy.meta_classes.HasIRI.__slots__", false]], "__slots__ (owlapy.meta_classes.hasoperands attribute)": [[13, "owlapy.meta_classes.HasOperands.__slots__", false]], "__slots__ (owlapy.namespaces.namespaces attribute)": [[14, "owlapy.namespaces.Namespaces.__slots__", false]], "__slots__ (owlapy.ontologymanager attribute)": [[11, "owlapy.OntologyManager.__slots__", false]], "__slots__ (owlapy.owl_annotation.owlannotationobject attribute)": [[15, "owlapy.owl_annotation.OWLAnnotationObject.__slots__", false]], "__slots__ (owlapy.owl_annotation.owlannotationsubject attribute)": [[15, "owlapy.owl_annotation.OWLAnnotationSubject.__slots__", false]], "__slots__ (owlapy.owl_annotation.owlannotationvalue attribute)": [[15, "owlapy.owl_annotation.OWLAnnotationValue.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlannotation attribute)": [[16, "owlapy.owl_axiom.OWLAnnotation.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlannotationassertionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlannotationaxiom attribute)": [[16, "owlapy.owl_axiom.OWLAnnotationAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlannotationproperty attribute)": [[16, "owlapy.owl_axiom.OWLAnnotationProperty.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlannotationpropertydomainaxiom attribute)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlannotationpropertyrangeaxiom attribute)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlasymmetricobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLAsymmetricObjectPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlaxiom attribute)": [[16, "owlapy.owl_axiom.OWLAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlclassassertionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLClassAssertionAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlclassaxiom attribute)": [[16, "owlapy.owl_axiom.OWLClassAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldatapropertyassertionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDataPropertyAssertionAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldatapropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDataPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldatapropertycharacteristicaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldatapropertydomainaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDataPropertyDomainAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldatapropertyrangeaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDataPropertyRangeAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldatatypedefinitionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldeclarationaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDeclarationAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldifferentindividualsaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDifferentIndividualsAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldisjointclassesaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDisjointClassesAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldisjointdatapropertiesaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDisjointDataPropertiesAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldisjointobjectpropertiesaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDisjointObjectPropertiesAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owldisjointunionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlequivalentclassesaxiom attribute)": [[16, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlequivalentdatapropertiesaxiom attribute)": [[16, "owlapy.owl_axiom.OWLEquivalentDataPropertiesAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlequivalentobjectpropertiesaxiom attribute)": [[16, "owlapy.owl_axiom.OWLEquivalentObjectPropertiesAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlfunctionaldatapropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLFunctionalDataPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlfunctionalobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLFunctionalObjectPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlhaskeyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlindividualaxiom attribute)": [[16, "owlapy.owl_axiom.OWLIndividualAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlinversefunctionalobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLInverseFunctionalObjectPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom attribute)": [[16, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlirreflexiveobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLIrreflexiveObjectPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owllogicalaxiom attribute)": [[16, "owlapy.owl_axiom.OWLLogicalAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlnaryaxiom attribute)": [[16, "owlapy.owl_axiom.OWLNaryAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlnaryclassaxiom attribute)": [[16, "owlapy.owl_axiom.OWLNaryClassAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlnaryindividualaxiom attribute)": [[16, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlnarypropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlnegativedatapropertyassertionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLNegativeDataPropertyAssertionAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlnegativeobjectpropertyassertionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLNegativeObjectPropertyAssertionAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlobjectpropertyassertionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLObjectPropertyAssertionAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLObjectPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom attribute)": [[16, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlobjectpropertydomainaxiom attribute)": [[16, "owlapy.owl_axiom.OWLObjectPropertyDomainAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlobjectpropertyrangeaxiom attribute)": [[16, "owlapy.owl_axiom.OWLObjectPropertyRangeAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlpropertyassertionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlpropertydomainaxiom attribute)": [[16, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlpropertyrangeaxiom attribute)": [[16, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlreflexiveobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLReflexiveObjectPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlsameindividualaxiom attribute)": [[16, "owlapy.owl_axiom.OWLSameIndividualAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlsubannotationpropertyofaxiom attribute)": [[16, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlsubclassofaxiom attribute)": [[16, "owlapy.owl_axiom.OWLSubClassOfAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlsubdatapropertyofaxiom attribute)": [[16, "owlapy.owl_axiom.OWLSubDataPropertyOfAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlsubobjectpropertyofaxiom attribute)": [[16, "owlapy.owl_axiom.OWLSubObjectPropertyOfAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlsubpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLSubPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlsymmetricobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLSymmetricObjectPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owltransitiveobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLTransitiveObjectPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_axiom.owlunarypropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLUnaryPropertyAxiom.__slots__", false]], "__slots__ (owlapy.owl_data_ranges.owldataintersectionof attribute)": [[17, "owlapy.owl_data_ranges.OWLDataIntersectionOf.__slots__", false]], "__slots__ (owlapy.owl_data_ranges.owldataunionof attribute)": [[17, "owlapy.owl_data_ranges.OWLDataUnionOf.__slots__", false]], "__slots__ (owlapy.owl_data_ranges.owlnarydatarange attribute)": [[17, "owlapy.owl_data_ranges.OWLNaryDataRange.__slots__", false]], "__slots__ (owlapy.owl_datatype.owldatatype attribute)": [[18, "owlapy.owl_datatype.OWLDatatype.__slots__", false]], "__slots__ (owlapy.owl_hierarchy.abstracthierarchy attribute)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.__slots__", false]], "__slots__ (owlapy.owl_individual.owlindividual attribute)": [[20, "owlapy.owl_individual.OWLIndividual.__slots__", false]], "__slots__ (owlapy.owl_individual.owlnamedindividual attribute)": [[20, "owlapy.owl_individual.OWLNamedIndividual.__slots__", false]], "__slots__ (owlapy.owl_literal.owlliteral attribute)": [[21, "owlapy.owl_literal.OWLLiteral.__slots__", false]], "__slots__ (owlapy.owl_object.owlentity attribute)": [[22, "owlapy.owl_object.OWLEntity.__slots__", false]], "__slots__ (owlapy.owl_object.owlnamedobject attribute)": [[22, "owlapy.owl_object.OWLNamedObject.__slots__", false]], "__slots__ (owlapy.owl_object.owlobject attribute)": [[22, "owlapy.owl_object.OWLObject.__slots__", false]], "__slots__ (owlapy.owl_ontology.fromowlready2 attribute)": [[23, "owlapy.owl_ontology.FromOwlready2.__slots__", false]], "__slots__ (owlapy.owl_ontology.ontology attribute)": [[23, "owlapy.owl_ontology.Ontology.__slots__", false]], "__slots__ (owlapy.owl_ontology.owlontologyid attribute)": [[23, "owlapy.owl_ontology.OWLOntologyID.__slots__", false]], "__slots__ (owlapy.owl_ontology.toowlready2 attribute)": [[23, "owlapy.owl_ontology.ToOwlready2.__slots__", false]], "__slots__ (owlapy.owl_ontology_manager.addimport attribute)": [[24, "owlapy.owl_ontology_manager.AddImport.__slots__", false]], "__slots__ (owlapy.owl_ontology_manager.ontologymanager attribute)": [[24, "owlapy.owl_ontology_manager.OntologyManager.__slots__", false]], "__slots__ (owlapy.owl_ontology_manager.owlimportsdeclaration attribute)": [[24, "owlapy.owl_ontology_manager.OWLImportsDeclaration.__slots__", false]], "__slots__ (owlapy.owl_property.owldataproperty attribute)": [[25, "owlapy.owl_property.OWLDataProperty.__slots__", false]], "__slots__ (owlapy.owl_property.owldatapropertyexpression attribute)": [[25, "owlapy.owl_property.OWLDataPropertyExpression.__slots__", false]], "__slots__ (owlapy.owl_property.owlobjectinverseof attribute)": [[25, "owlapy.owl_property.OWLObjectInverseOf.__slots__", false]], "__slots__ (owlapy.owl_property.owlobjectproperty attribute)": [[25, "owlapy.owl_property.OWLObjectProperty.__slots__", false]], "__slots__ (owlapy.owl_property.owlobjectpropertyexpression attribute)": [[25, "owlapy.owl_property.OWLObjectPropertyExpression.__slots__", false]], "__slots__ (owlapy.owl_property.owlproperty attribute)": [[25, "owlapy.owl_property.OWLProperty.__slots__", false]], "__slots__ (owlapy.owl_property.owlpropertyexpression attribute)": [[25, "owlapy.owl_property.OWLPropertyExpression.__slots__", false]], "__slots__ (owlapy.render.dlsyntaxobjectrenderer attribute)": [[30, "owlapy.render.DLSyntaxObjectRenderer.__slots__", false]], "__slots__ (owlapy.render.manchesterowlsyntaxowlobjectrenderer attribute)": [[30, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer.__slots__", false]], "__slots__ (owlapy.utils.evaluateddescriptionset attribute)": [[32, "owlapy.utils.EvaluatedDescriptionSet.__slots__", false]], "__slots__ (owlapy.utils.orderedowlobject attribute)": [[32, "owlapy.utils.OrderedOWLObject.__slots__", false]], "__slots__ (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.__slots__", false]], "abox_axioms_between_individuals() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.abox_axioms_between_individuals", false]], "abox_axioms_between_individuals_and_classes() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.abox_axioms_between_individuals_and_classes", false]], "abstracthierarchy (class in owlapy.owl_hierarchy)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy", false]], "abstractowlontology (class in owlapy.abstracts)": [[3, "owlapy.abstracts.AbstractOWLOntology", false]], "abstractowlontology (class in owlapy.abstracts.abstract_owl_ontology)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology", false]], "abstractowlontologychange (class in owlapy.abstracts)": [[3, "owlapy.abstracts.AbstractOWLOntologyChange", false]], "abstractowlontologychange (class in owlapy.abstracts.abstract_owl_ontology_manager)": [[1, "owlapy.abstracts.abstract_owl_ontology_manager.AbstractOWLOntologyChange", false]], "abstractowlontologymanager (class in owlapy.abstracts)": [[3, "owlapy.abstracts.AbstractOWLOntologyManager", false]], "abstractowlontologymanager (class in owlapy.abstracts.abstract_owl_ontology_manager)": [[1, "owlapy.abstracts.abstract_owl_ontology_manager.AbstractOWLOntologyManager", false]], "abstractowlreasoner (class in owlapy.abstracts)": [[3, "owlapy.abstracts.AbstractOWLReasoner", false]], "abstractowlreasoner (class in owlapy.abstracts.abstract_owl_reasoner)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner", false]], "add_axiom() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.add_axiom", false]], "add_axiom() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.add_axiom", false]], "add_axiom() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.add_axiom", false]], "add_axiom() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.add_axiom", false]], "addimport (class in owlapy.owl_ontology_manager)": [[24, "owlapy.owl_ontology_manager.AddImport", false]], "all_data_property_values() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.all_data_property_values", false]], "all_data_property_values() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.all_data_property_values", false]], "all_data_property_values() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.all_data_property_values", false]], "annotations() (owlapy.owl_axiom.owlaxiom method)": [[16, "owlapy.owl_axiom.OWLAxiom.annotations", false]], "append() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.append", false]], "append_triple() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.append_triple", false]], "apply_change() (owlapy.abstracts.abstract_owl_ontology_manager.abstractowlontologymanager method)": [[1, "owlapy.abstracts.abstract_owl_ontology_manager.AbstractOWLOntologyManager.apply_change", false]], "apply_change() (owlapy.abstracts.abstractowlontologymanager method)": [[3, "owlapy.abstracts.AbstractOWLOntologyManager.apply_change", false]], "apply_change() (owlapy.ontologymanager method)": [[11, "owlapy.OntologyManager.apply_change", false]], "apply_change() (owlapy.owl_ontology_manager.ontologymanager method)": [[24, "owlapy.owl_ontology_manager.OntologyManager.apply_change", false]], "apply_change() (owlapy.owl_ontology_manager.syncontologymanager method)": [[24, "owlapy.owl_ontology_manager.SyncOntologyManager.apply_change", false]], "as_anonymous_individual() (owlapy.owl_annotation.owlannotationobject method)": [[15, "owlapy.owl_annotation.OWLAnnotationObject.as_anonymous_individual", false]], "as_confusion_matrix_query() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.as_confusion_matrix_query", false]], "as_index() (in module owlapy.utils)": [[32, "owlapy.utils.as_index", false]], "as_intersection_of_min_max() (owlapy.class_expression.owldataexactcardinality method)": [[5, "owlapy.class_expression.OWLDataExactCardinality.as_intersection_of_min_max", false]], "as_intersection_of_min_max() (owlapy.class_expression.owlobjectexactcardinality method)": [[5, "owlapy.class_expression.OWLObjectExactCardinality.as_intersection_of_min_max", false]], "as_intersection_of_min_max() (owlapy.class_expression.restriction.owldataexactcardinality method)": [[8, "owlapy.class_expression.restriction.OWLDataExactCardinality.as_intersection_of_min_max", false]], "as_intersection_of_min_max() (owlapy.class_expression.restriction.owlobjectexactcardinality method)": [[8, "owlapy.class_expression.restriction.OWLObjectExactCardinality.as_intersection_of_min_max", false]], "as_iri() (owlapy.iri.iri method)": [[12, "owlapy.iri.IRI.as_iri", false]], "as_iri() (owlapy.owl_annotation.owlannotationobject method)": [[15, "owlapy.owl_annotation.OWLAnnotationObject.as_iri", false]], "as_literal() (owlapy.owl_annotation.owlannotationvalue method)": [[15, "owlapy.owl_annotation.OWLAnnotationValue.as_literal", false]], "as_literal() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.as_literal", false]], "as_object_union_of() (owlapy.class_expression.owlobjectoneof method)": [[5, "owlapy.class_expression.OWLObjectOneOf.as_object_union_of", false]], "as_object_union_of() (owlapy.class_expression.restriction.owlobjectoneof method)": [[8, "owlapy.class_expression.restriction.OWLObjectOneOf.as_object_union_of", false]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnaryaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryAxiom.as_pairwise_axioms", false]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryClassAxiom.as_pairwise_axioms", false]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryIndividualAxiom.as_pairwise_axioms", false]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryPropertyAxiom.as_pairwise_axioms", false]], "as_query() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.as_query", false]], "as_some_values_from() (owlapy.class_expression.owldatahasvalue method)": [[5, "owlapy.class_expression.OWLDataHasValue.as_some_values_from", false]], "as_some_values_from() (owlapy.class_expression.owlobjecthasvalue method)": [[5, "owlapy.class_expression.OWLObjectHasValue.as_some_values_from", false]], "as_some_values_from() (owlapy.class_expression.restriction.owldatahasvalue method)": [[8, "owlapy.class_expression.restriction.OWLDataHasValue.as_some_values_from", false]], "as_some_values_from() (owlapy.class_expression.restriction.owlobjecthasvalue method)": [[8, "owlapy.class_expression.restriction.OWLObjectHasValue.as_some_values_from", false]], "as_str() (owlapy.iri.iri method)": [[12, "owlapy.iri.IRI.as_str", false]], "best() (owlapy.utils.evaluateddescriptionset method)": [[32, "owlapy.utils.EvaluatedDescriptionSet.best", false]], "best_quality_value() (owlapy.utils.evaluateddescriptionset method)": [[32, "owlapy.utils.EvaluatedDescriptionSet.best_quality_value", false]], "boolean (owlapy.vocab.xsdvocabulary attribute)": [[33, "owlapy.vocab.XSDVocabulary.BOOLEAN", false]], "booleanowldatatype (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.BooleanOWLDatatype", false]], "cache (owlapy.utils.lrucache attribute)": [[32, "owlapy.utils.LRUCache.cache", false]], "cache_clear() (owlapy.utils.lrucache method)": [[32, "owlapy.utils.LRUCache.cache_clear", false]], "cache_get (owlapy.utils.lrucache attribute)": [[32, "owlapy.utils.LRUCache.cache_get", false]], "cache_info() (owlapy.utils.lrucache method)": [[32, "owlapy.utils.LRUCache.cache_info", false]], "cache_len (owlapy.utils.lrucache attribute)": [[32, "owlapy.utils.LRUCache.cache_len", false]], "ce (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.ce", false]], "children() (owlapy.owl_hierarchy.abstracthierarchy method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.children", false]], "class_cache (owlapy.owl_reasoner.structuralreasoner attribute)": [[26, "owlapy.owl_reasoner.StructuralReasoner.class_cache", false]], "class_cnt (owlapy.converter.variablesmapping attribute)": [[9, "owlapy.converter.VariablesMapping.class_cnt", false]], "class_expressions() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryClassAxiom.class_expressions", false]], "class_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.class_length", false]], "classes_in_signature() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.classes_in_signature", false]], "classes_in_signature() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.classes_in_signature", false]], "classes_in_signature() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.classes_in_signature", false]], "classes_in_signature() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.classes_in_signature", false]], "classhierarchy (class in owlapy.owl_hierarchy)": [[19, "owlapy.owl_hierarchy.ClassHierarchy", false]], "clean() (owlapy.utils.evaluateddescriptionset method)": [[32, "owlapy.utils.EvaluatedDescriptionSet.clean", false]], "cnt (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.cnt", false]], "combine_nary_expressions() (in module owlapy.utils)": [[32, "owlapy.utils.combine_nary_expressions", false]], "concept_reducer() (in module owlapy.utils)": [[32, "owlapy.utils.concept_reducer", false]], "concept_reducer_properties() (in module owlapy.utils)": [[32, "owlapy.utils.concept_reducer_properties", false]], "conceptoperandsorter (class in owlapy.utils)": [[32, "owlapy.utils.ConceptOperandSorter", false]], "contains_named_equivalent_class() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[16, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.contains_named_equivalent_class", false]], "contains_owl_nothing() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[16, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.contains_owl_nothing", false]], "contains_owl_thing() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[16, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.contains_owl_thing", false]], "convert() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.convert", false]], "converter (in module owlapy.converter)": [[9, "owlapy.converter.converter", false]], "create() (owlapy.iri.iri static method)": [[12, "owlapy.iri.IRI.create", false]], "create_ontology() (owlapy.abstracts.abstract_owl_ontology_manager.abstractowlontologymanager method)": [[1, "owlapy.abstracts.abstract_owl_ontology_manager.AbstractOWLOntologyManager.create_ontology", false]], "create_ontology() (owlapy.abstracts.abstractowlontologymanager method)": [[3, "owlapy.abstracts.AbstractOWLOntologyManager.create_ontology", false]], "create_ontology() (owlapy.ontologymanager method)": [[11, "owlapy.OntologyManager.create_ontology", false]], "create_ontology() (owlapy.owl_ontology_manager.ontologymanager method)": [[24, "owlapy.owl_ontology_manager.OntologyManager.create_ontology", false]], "create_ontology() (owlapy.owl_ontology_manager.syncontologymanager method)": [[24, "owlapy.owl_ontology_manager.SyncOntologyManager.create_ontology", false]], "current_variable (owlapy.converter.owl2sparqlconverter property)": [[9, "owlapy.converter.Owl2SparqlConverter.current_variable", false]], "data_all_values_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.data_all_values_length", false]], "data_cardinality_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.data_cardinality_length", false]], "data_complement_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.data_complement_length", false]], "data_has_value_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.data_has_value_length", false]], "data_intersection_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.data_intersection_length", false]], "data_one_of_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.data_one_of_length", false]], "data_properties_in_signature() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.data_properties_in_signature", false]], "data_properties_in_signature() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.data_properties_in_signature", false]], "data_properties_in_signature() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.data_properties_in_signature", false]], "data_properties_in_signature() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.data_properties_in_signature", false]], "data_property_domain_axioms() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.data_property_domain_axioms", false]], "data_property_domain_axioms() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.data_property_domain_axioms", false]], "data_property_domain_axioms() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.data_property_domain_axioms", false]], "data_property_domain_axioms() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.data_property_domain_axioms", false]], "data_property_domains() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.data_property_domains", false]], "data_property_domains() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.data_property_domains", false]], "data_property_domains() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.data_property_domains", false]], "data_property_domains() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.data_property_domains", false]], "data_property_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.data_property_length", false]], "data_property_range_axioms() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.data_property_range_axioms", false]], "data_property_range_axioms() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.data_property_range_axioms", false]], "data_property_range_axioms() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.data_property_range_axioms", false]], "data_property_range_axioms() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.data_property_range_axioms", false]], "data_property_ranges() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.data_property_ranges", false]], "data_property_ranges() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.data_property_ranges", false]], "data_property_values() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.data_property_values", false]], "data_property_values() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.data_property_values", false]], "data_property_values() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.data_property_values", false]], "data_property_values() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.data_property_values", false]], "data_some_values_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.data_some_values_length", false]], "data_union_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.data_union_length", false]], "datatype_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.datatype_length", false]], "datatypepropertyhierarchy (class in owlapy.owl_hierarchy)": [[19, "owlapy.owl_hierarchy.DatatypePropertyHierarchy", false]], "date (owlapy.vocab.xsdvocabulary attribute)": [[33, "owlapy.vocab.XSDVocabulary.DATE", false]], "date_time (owlapy.vocab.xsdvocabulary attribute)": [[33, "owlapy.vocab.XSDVocabulary.DATE_TIME", false]], "date_time_stamp (owlapy.vocab.xsdvocabulary attribute)": [[33, "owlapy.vocab.XSDVocabulary.DATE_TIME_STAMP", false]], "dateowldatatype (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.DateOWLDatatype", false]], "datetimeowldatatype (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.DateTimeOWLDatatype", false]], "decimal (owlapy.vocab.xsdvocabulary attribute)": [[33, "owlapy.vocab.XSDVocabulary.DECIMAL", false]], "dict (owlapy.converter.variablesmapping attribute)": [[9, "owlapy.converter.VariablesMapping.dict", false]], "different_individuals() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.different_individuals", false]], "different_individuals() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.different_individuals", false]], "different_individuals() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.different_individuals", false]], "different_individuals() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.different_individuals", false]], "disjoint_classes() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.disjoint_classes", false]], "disjoint_classes() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.disjoint_classes", false]], "disjoint_classes() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.disjoint_classes", false]], "disjoint_classes() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.disjoint_classes", false]], "disjoint_data_properties() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.disjoint_data_properties", false]], "disjoint_data_properties() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.disjoint_data_properties", false]], "disjoint_data_properties() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.disjoint_data_properties", false]], "disjoint_data_properties() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.disjoint_data_properties", false]], "disjoint_object_properties() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.disjoint_object_properties", false]], "disjoint_object_properties() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.disjoint_object_properties", false]], "disjoint_object_properties() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.disjoint_object_properties", false]], "disjoint_object_properties() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.disjoint_object_properties", false]], "dl_grammar (in module owlapy.parser)": [[28, "owlapy.parser.DL_GRAMMAR", false]], "dl_to_owl_expression() (in module owlapy)": [[11, "owlapy.dl_to_owl_expression", false]], "dl_to_owl_expression() (in module owlapy.parser)": [[28, "owlapy.parser.dl_to_owl_expression", false]], "dlparser (in module owlapy.parser)": [[28, "owlapy.parser.DLparser", false]], "dlrenderer (in module owlapy.render)": [[30, "owlapy.render.DLrenderer", false]], "dlsyntaxobjectrenderer (class in owlapy.render)": [[30, "owlapy.render.DLSyntaxObjectRenderer", false]], "dlsyntaxparser (class in owlapy.parser)": [[28, "owlapy.parser.DLSyntaxParser", false]], "double (owlapy.vocab.xsdvocabulary attribute)": [[33, "owlapy.vocab.XSDVocabulary.DOUBLE", false]], "doubleowldatatype (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.DoubleOWLDatatype", false]], "download_external_files() (in module owlapy.static_funcs)": [[31, "owlapy.static_funcs.download_external_files", false]], "duration (owlapy.vocab.xsdvocabulary attribute)": [[33, "owlapy.vocab.XSDVocabulary.DURATION", false]], "durationowldatatype (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.DurationOWLDatatype", false]], "equivalent_classes() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.equivalent_classes", false]], "equivalent_classes() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.equivalent_classes", false]], "equivalent_classes() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.equivalent_classes", false]], "equivalent_classes() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.equivalent_classes", false]], "equivalent_classes_axioms() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.equivalent_classes_axioms", false]], "equivalent_classes_axioms() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.equivalent_classes_axioms", false]], "equivalent_classes_axioms() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.equivalent_classes_axioms", false]], "equivalent_classes_axioms() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.equivalent_classes_axioms", false]], "equivalent_data_properties() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.equivalent_data_properties", false]], "equivalent_data_properties() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.equivalent_data_properties", false]], "equivalent_data_properties() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.equivalent_data_properties", false]], "equivalent_data_properties() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.equivalent_data_properties", false]], "equivalent_object_properties() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.equivalent_object_properties", false]], "equivalent_object_properties() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.equivalent_object_properties", false]], "equivalent_object_properties() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.equivalent_object_properties", false]], "equivalent_object_properties() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.equivalent_object_properties", false]], "evaluateddescriptionset (class in owlapy.utils)": [[32, "owlapy.utils.EvaluatedDescriptionSet", false]], "float (owlapy.vocab.xsdvocabulary attribute)": [[33, "owlapy.vocab.XSDVocabulary.FLOAT", false]], "for_all_de_morgan (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.for_all_de_morgan", false]], "forall() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.forAll", false]], "foralldemorgan() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.forAllDeMorgan", false]], "fraction_digits (owlapy.class_expression.owlfacet attribute)": [[5, "owlapy.class_expression.OWLFacet.FRACTION_DIGITS", false]], "fraction_digits (owlapy.vocab.owlfacet attribute)": [[33, "owlapy.vocab.OWLFacet.FRACTION_DIGITS", false]], "from_str() (owlapy.class_expression.owlfacet static method)": [[5, "owlapy.class_expression.OWLFacet.from_str", false]], "from_str() (owlapy.vocab.owlfacet static method)": [[33, "owlapy.vocab.OWLFacet.from_str", false]], "fromowlready2 (class in owlapy.owl_ontology)": [[23, "owlapy.owl_ontology.FromOwlready2", false]], "full (owlapy.utils.lrucache attribute)": [[32, "owlapy.utils.LRUCache.full", false]], "general_class_axioms() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.general_class_axioms", false]], "general_class_axioms() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.general_class_axioms", false]], "general_class_axioms() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.general_class_axioms", false]], "general_class_axioms() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.general_class_axioms", false]], "generate_and_save_inferred_class_assertion_axioms() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.generate_and_save_inferred_class_assertion_axioms", false]], "generic_visit() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.generic_visit", false]], "generic_visit() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.generic_visit", false]], "get_abox_axioms() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.get_abox_axioms", false]], "get_bottom_entity() (owlapy.owl_hierarchy.abstracthierarchy class method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.get_bottom_entity", false]], "get_bottom_entity() (owlapy.owl_hierarchy.classhierarchy class method)": [[19, "owlapy.owl_hierarchy.ClassHierarchy.get_bottom_entity", false]], "get_bottom_entity() (owlapy.owl_hierarchy.datatypepropertyhierarchy class method)": [[19, "owlapy.owl_hierarchy.DatatypePropertyHierarchy.get_bottom_entity", false]], "get_bottom_entity() (owlapy.owl_hierarchy.objectpropertyhierarchy class method)": [[19, "owlapy.owl_hierarchy.ObjectPropertyHierarchy.get_bottom_entity", false]], "get_cardinality() (owlapy.class_expression.owlcardinalityrestriction method)": [[5, "owlapy.class_expression.OWLCardinalityRestriction.get_cardinality", false]], "get_cardinality() (owlapy.class_expression.restriction.owlcardinalityrestriction method)": [[8, "owlapy.class_expression.restriction.OWLCardinalityRestriction.get_cardinality", false]], "get_cardinality() (owlapy.meta_classes.hascardinality method)": [[13, "owlapy.meta_classes.HasCardinality.get_cardinality", false]], "get_class_expression() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLClassAssertionAxiom.get_class_expression", false]], "get_class_expression() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom.get_class_expression", false]], "get_class_expressions() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_class_expressions", false]], "get_class_nnf() (owlapy.utils.nnf method)": [[32, "owlapy.utils.NNF.get_class_nnf", false]], "get_data_range() (owlapy.owl_data_ranges.owldatacomplementof method)": [[17, "owlapy.owl_data_ranges.OWLDataComplementOf.get_data_range", false]], "get_datarange() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[16, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.get_datarange", false]], "get_datatype() (owlapy.class_expression.owldatatyperestriction method)": [[5, "owlapy.class_expression.OWLDatatypeRestriction.get_datatype", false]], "get_datatype() (owlapy.class_expression.restriction.owldatatyperestriction method)": [[8, "owlapy.class_expression.restriction.OWLDatatypeRestriction.get_datatype", false]], "get_datatype() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[16, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.get_datatype", false]], "get_datatype() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.get_datatype", false]], "get_default() (owlapy.utils.owlclassexpressionlengthmetric static method)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.get_default", false]], "get_default_arguments() (in module run)": [[34, "run.get_default_arguments", false]], "get_default_document_iri() (owlapy.owl_ontology.owlontologyid method)": [[23, "owlapy.owl_ontology.OWLOntologyID.get_default_document_iri", false]], "get_domain() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.get_domain", false]], "get_domain() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyDomainAxiom.get_domain", false]], "get_entity() (owlapy.owl_axiom.owldeclarationaxiom method)": [[16, "owlapy.owl_axiom.OWLDeclarationAxiom.get_entity", false]], "get_expression_length() (in module owlapy.utils)": [[32, "owlapy.utils.get_expression_length", false]], "get_facet() (owlapy.class_expression.owlfacetrestriction method)": [[5, "owlapy.class_expression.OWLFacetRestriction.get_facet", false]], "get_facet() (owlapy.class_expression.restriction.owlfacetrestriction method)": [[8, "owlapy.class_expression.restriction.OWLFacetRestriction.get_facet", false]], "get_facet_restrictions() (owlapy.class_expression.owldatatyperestriction method)": [[5, "owlapy.class_expression.OWLDatatypeRestriction.get_facet_restrictions", false]], "get_facet_restrictions() (owlapy.class_expression.restriction.owldatatyperestriction method)": [[8, "owlapy.class_expression.restriction.OWLDatatypeRestriction.get_facet_restrictions", false]], "get_facet_value() (owlapy.class_expression.owlfacetrestriction method)": [[5, "owlapy.class_expression.OWLFacetRestriction.get_facet_value", false]], "get_facet_value() (owlapy.class_expression.restriction.owlfacetrestriction method)": [[8, "owlapy.class_expression.restriction.OWLFacetRestriction.get_facet_value", false]], "get_filler() (owlapy.class_expression.owlcardinalityrestriction method)": [[5, "owlapy.class_expression.OWLCardinalityRestriction.get_filler", false]], "get_filler() (owlapy.class_expression.owlhasvaluerestriction method)": [[5, "owlapy.class_expression.OWLHasValueRestriction.get_filler", false]], "get_filler() (owlapy.class_expression.owlquantifieddatarestriction method)": [[5, "owlapy.class_expression.OWLQuantifiedDataRestriction.get_filler", false]], "get_filler() (owlapy.class_expression.owlquantifiedobjectrestriction method)": [[5, "owlapy.class_expression.OWLQuantifiedObjectRestriction.get_filler", false]], "get_filler() (owlapy.class_expression.restriction.owlcardinalityrestriction method)": [[8, "owlapy.class_expression.restriction.OWLCardinalityRestriction.get_filler", false]], "get_filler() (owlapy.class_expression.restriction.owlhasvaluerestriction method)": [[8, "owlapy.class_expression.restriction.OWLHasValueRestriction.get_filler", false]], "get_filler() (owlapy.class_expression.restriction.owlquantifieddatarestriction method)": [[8, "owlapy.class_expression.restriction.OWLQuantifiedDataRestriction.get_filler", false]], "get_filler() (owlapy.class_expression.restriction.owlquantifiedobjectrestriction method)": [[8, "owlapy.class_expression.restriction.OWLQuantifiedObjectRestriction.get_filler", false]], "get_filler() (owlapy.meta_classes.hasfiller method)": [[13, "owlapy.meta_classes.HasFiller.get_filler", false]], "get_first_property() (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom method)": [[16, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.get_first_property", false]], "get_import_declaration() (owlapy.owl_ontology_manager.addimport method)": [[24, "owlapy.owl_ontology_manager.AddImport.get_import_declaration", false]], "get_individual() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLClassAssertionAxiom.get_individual", false]], "get_instances_from_owl_class() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.get_instances_from_owl_class", false]], "get_inverse() (owlapy.owl_property.owlobjectinverseof method)": [[25, "owlapy.owl_property.OWLObjectInverseOf.get_inverse", false]], "get_inverse_property() (owlapy.owl_property.owlobjectinverseof method)": [[25, "owlapy.owl_property.OWLObjectInverseOf.get_inverse_property", false]], "get_inverse_property() (owlapy.owl_property.owlobjectproperty method)": [[25, "owlapy.owl_property.OWLObjectProperty.get_inverse_property", false]], "get_inverse_property() (owlapy.owl_property.owlobjectpropertyexpression method)": [[25, "owlapy.owl_property.OWLObjectPropertyExpression.get_inverse_property", false]], "get_literal() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.get_literal", false]], "get_named_property() (owlapy.owl_property.owlobjectinverseof method)": [[25, "owlapy.owl_property.OWLObjectInverseOf.get_named_property", false]], "get_named_property() (owlapy.owl_property.owlobjectproperty method)": [[25, "owlapy.owl_property.OWLObjectProperty.get_named_property", false]], "get_named_property() (owlapy.owl_property.owlobjectpropertyexpression method)": [[25, "owlapy.owl_property.OWLObjectPropertyExpression.get_named_property", false]], "get_namespace() (owlapy.iri.iri method)": [[12, "owlapy.iri.IRI.get_namespace", false]], "get_nnf() (owlapy.class_expression.class_expression.owlanonymousclassexpression method)": [[4, "owlapy.class_expression.class_expression.OWLAnonymousClassExpression.get_nnf", false]], "get_nnf() (owlapy.class_expression.class_expression.owlclassexpression method)": [[4, "owlapy.class_expression.class_expression.OWLClassExpression.get_nnf", false]], "get_nnf() (owlapy.class_expression.owl_class.owlclass method)": [[7, "owlapy.class_expression.owl_class.OWLClass.get_nnf", false]], "get_nnf() (owlapy.class_expression.owlanonymousclassexpression method)": [[5, "owlapy.class_expression.OWLAnonymousClassExpression.get_nnf", false]], "get_nnf() (owlapy.class_expression.owlclass method)": [[5, "owlapy.class_expression.OWLClass.get_nnf", false]], "get_nnf() (owlapy.class_expression.owlclassexpression method)": [[5, "owlapy.class_expression.OWLClassExpression.get_nnf", false]], "get_object() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.get_object", false]], "get_object_complement_of() (owlapy.class_expression.class_expression.owlanonymousclassexpression method)": [[4, "owlapy.class_expression.class_expression.OWLAnonymousClassExpression.get_object_complement_of", false]], "get_object_complement_of() (owlapy.class_expression.class_expression.owlclassexpression method)": [[4, "owlapy.class_expression.class_expression.OWLClassExpression.get_object_complement_of", false]], "get_object_complement_of() (owlapy.class_expression.owl_class.owlclass method)": [[7, "owlapy.class_expression.owl_class.OWLClass.get_object_complement_of", false]], "get_object_complement_of() (owlapy.class_expression.owlanonymousclassexpression method)": [[5, "owlapy.class_expression.OWLAnonymousClassExpression.get_object_complement_of", false]], "get_object_complement_of() (owlapy.class_expression.owlclass method)": [[5, "owlapy.class_expression.OWLClass.get_object_complement_of", false]], "get_object_complement_of() (owlapy.class_expression.owlclassexpression method)": [[5, "owlapy.class_expression.OWLClassExpression.get_object_complement_of", false]], "get_ontology() (owlapy.abstracts.abstract_owl_ontology_manager.abstractowlontologychange method)": [[1, "owlapy.abstracts.abstract_owl_ontology_manager.AbstractOWLOntologyChange.get_ontology", false]], "get_ontology() (owlapy.abstracts.abstractowlontologychange method)": [[3, "owlapy.abstracts.AbstractOWLOntologyChange.get_ontology", false]], "get_ontology_id() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.get_ontology_id", false]], "get_ontology_id() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.get_ontology_id", false]], "get_ontology_id() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.get_ontology_id", false]], "get_ontology_id() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.get_ontology_id", false]], "get_ontology_iri() (owlapy.owl_ontology.owlontologyid method)": [[23, "owlapy.owl_ontology.OWLOntologyID.get_ontology_iri", false]], "get_operand() (owlapy.class_expression.class_expression.owlobjectcomplementof method)": [[4, "owlapy.class_expression.class_expression.OWLObjectComplementOf.get_operand", false]], "get_operand() (owlapy.class_expression.owlobjectcomplementof method)": [[5, "owlapy.class_expression.OWLObjectComplementOf.get_operand", false]], "get_original_iri() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.get_original_iri", false]], "get_owl_class() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_owl_class", false]], "get_owl_disjoint_classes_axiom() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_owl_disjoint_classes_axiom", false]], "get_owl_equivalent_classes_axiom() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_owl_equivalent_classes_axiom", false]], "get_owl_ontology_manager() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.get_owl_ontology_manager", false]], "get_owl_ontology_manager() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.get_owl_ontology_manager", false]], "get_owl_ontology_manager() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.get_owl_ontology_manager", false]], "get_owl_ontology_manager() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.get_owl_ontology_manager", false]], "get_owlapi_manager() (owlapy.owl_ontology_manager.syncontologymanager method)": [[24, "owlapy.owl_ontology_manager.SyncOntologyManager.get_owlapi_manager", false]], "get_owlapi_ontology() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.get_owlapi_ontology", false]], "get_property() (owlapy.class_expression.owldataallvaluesfrom method)": [[5, "owlapy.class_expression.OWLDataAllValuesFrom.get_property", false]], "get_property() (owlapy.class_expression.owldatacardinalityrestriction method)": [[5, "owlapy.class_expression.OWLDataCardinalityRestriction.get_property", false]], "get_property() (owlapy.class_expression.owldatahasvalue method)": [[5, "owlapy.class_expression.OWLDataHasValue.get_property", false]], "get_property() (owlapy.class_expression.owldatasomevaluesfrom method)": [[5, "owlapy.class_expression.OWLDataSomeValuesFrom.get_property", false]], "get_property() (owlapy.class_expression.owlobjectallvaluesfrom method)": [[5, "owlapy.class_expression.OWLObjectAllValuesFrom.get_property", false]], "get_property() (owlapy.class_expression.owlobjectcardinalityrestriction method)": [[5, "owlapy.class_expression.OWLObjectCardinalityRestriction.get_property", false]], "get_property() (owlapy.class_expression.owlobjecthasself method)": [[5, "owlapy.class_expression.OWLObjectHasSelf.get_property", false]], "get_property() (owlapy.class_expression.owlobjecthasvalue method)": [[5, "owlapy.class_expression.OWLObjectHasValue.get_property", false]], "get_property() (owlapy.class_expression.owlobjectrestriction method)": [[5, "owlapy.class_expression.OWLObjectRestriction.get_property", false]], "get_property() (owlapy.class_expression.owlobjectsomevaluesfrom method)": [[5, "owlapy.class_expression.OWLObjectSomeValuesFrom.get_property", false]], "get_property() (owlapy.class_expression.owlrestriction method)": [[5, "owlapy.class_expression.OWLRestriction.get_property", false]], "get_property() (owlapy.class_expression.restriction.owldataallvaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLDataAllValuesFrom.get_property", false]], "get_property() (owlapy.class_expression.restriction.owldatacardinalityrestriction method)": [[8, "owlapy.class_expression.restriction.OWLDataCardinalityRestriction.get_property", false]], "get_property() (owlapy.class_expression.restriction.owldatahasvalue method)": [[8, "owlapy.class_expression.restriction.OWLDataHasValue.get_property", false]], "get_property() (owlapy.class_expression.restriction.owldatasomevaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLDataSomeValuesFrom.get_property", false]], "get_property() (owlapy.class_expression.restriction.owlobjectallvaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLObjectAllValuesFrom.get_property", false]], "get_property() (owlapy.class_expression.restriction.owlobjectcardinalityrestriction method)": [[8, "owlapy.class_expression.restriction.OWLObjectCardinalityRestriction.get_property", false]], "get_property() (owlapy.class_expression.restriction.owlobjecthasself method)": [[8, "owlapy.class_expression.restriction.OWLObjectHasSelf.get_property", false]], "get_property() (owlapy.class_expression.restriction.owlobjecthasvalue method)": [[8, "owlapy.class_expression.restriction.OWLObjectHasValue.get_property", false]], "get_property() (owlapy.class_expression.restriction.owlobjectrestriction method)": [[8, "owlapy.class_expression.restriction.OWLObjectRestriction.get_property", false]], "get_property() (owlapy.class_expression.restriction.owlobjectsomevaluesfrom method)": [[8, "owlapy.class_expression.restriction.OWLObjectSomeValuesFrom.get_property", false]], "get_property() (owlapy.class_expression.restriction.owlrestriction method)": [[8, "owlapy.class_expression.restriction.OWLRestriction.get_property", false]], "get_property() (owlapy.owl_axiom.owlannotation method)": [[16, "owlapy.owl_axiom.OWLAnnotation.get_property", false]], "get_property() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.get_property", false]], "get_property() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.get_property", false]], "get_property() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.get_property", false]], "get_property() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.get_property", false]], "get_property() (owlapy.owl_axiom.owlunarypropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLUnaryPropertyAxiom.get_property", false]], "get_property_expressions() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom.get_property_expressions", false]], "get_range() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.get_range", false]], "get_range() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyRangeAxiom.get_range", false]], "get_remainder() (owlapy.iri.iri method)": [[12, "owlapy.iri.IRI.get_remainder", false]], "get_root_ontology() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.get_root_ontology", false]], "get_root_ontology() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.get_root_ontology", false]], "get_root_ontology() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.get_root_ontology", false]], "get_root_ontology() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.get_root_ontology", false]], "get_second_property() (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom method)": [[16, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.get_second_property", false]], "get_signature() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.get_signature", false]], "get_sub_class() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubClassOfAxiom.get_sub_class", false]], "get_sub_property() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.get_sub_property", false]], "get_sub_property() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLSubPropertyAxiom.get_sub_property", false]], "get_subject() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.get_subject", false]], "get_subject() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.get_subject", false]], "get_super_class() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubClassOfAxiom.get_super_class", false]], "get_super_property() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.get_super_property", false]], "get_super_property() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLSubPropertyAxiom.get_super_property", false]], "get_tbox_axioms() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.get_tbox_axioms", false]], "get_top_entity() (owlapy.owl_hierarchy.abstracthierarchy class method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.get_top_entity", false]], "get_top_entity() (owlapy.owl_hierarchy.classhierarchy class method)": [[19, "owlapy.owl_hierarchy.ClassHierarchy.get_top_entity", false]], "get_top_entity() (owlapy.owl_hierarchy.datatypepropertyhierarchy class method)": [[19, "owlapy.owl_hierarchy.DatatypePropertyHierarchy.get_top_entity", false]], "get_top_entity() (owlapy.owl_hierarchy.objectpropertyhierarchy class method)": [[19, "owlapy.owl_hierarchy.ObjectPropertyHierarchy.get_top_entity", false]], "get_top_level_cnf() (owlapy.utils.toplevelcnf method)": [[32, "owlapy.utils.TopLevelCNF.get_top_level_cnf", false]], "get_top_level_dnf() (owlapy.utils.topleveldnf method)": [[32, "owlapy.utils.TopLevelDNF.get_top_level_dnf", false]], "get_value() (owlapy.owl_axiom.owlannotation method)": [[16, "owlapy.owl_axiom.OWLAnnotation.get_value", false]], "get_value() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.get_value", false]], "get_variable() (owlapy.converter.variablesmapping method)": [[9, "owlapy.converter.VariablesMapping.get_variable", false]], "get_version_iri() (owlapy.owl_ontology.owlontologyid method)": [[23, "owlapy.owl_ontology.OWLOntologyID.get_version_iri", false]], "grammar (owlapy.parser.dlsyntaxparser attribute)": [[28, "owlapy.parser.DLSyntaxParser.grammar", false]], "grammar (owlapy.parser.manchesterowlsyntaxparser attribute)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.grammar", false]], "grouping_vars (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.grouping_vars", false]], "has_consistent_ontology() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.has_consistent_ontology", false]], "hascardinality (class in owlapy.meta_classes)": [[13, "owlapy.meta_classes.HasCardinality", false]], "hasfiller (class in owlapy.meta_classes)": [[13, "owlapy.meta_classes.HasFiller", false]], "hasindex (class in owlapy.utils)": [[32, "owlapy.utils.HasIndex", false]], "hasiri (class in owlapy.meta_classes)": [[13, "owlapy.meta_classes.HasIRI", false]], "hasoperands (class in owlapy.meta_classes)": [[13, "owlapy.meta_classes.HasOperands", false]], "having_conditions (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.having_conditions", false]], "ind_cnt (owlapy.converter.variablesmapping attribute)": [[9, "owlapy.converter.VariablesMapping.ind_cnt", false]], "ind_data_properties() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.ind_data_properties", false]], "ind_data_properties() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.ind_data_properties", false]], "ind_object_properties() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.ind_object_properties", false]], "ind_object_properties() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.ind_object_properties", false]], "individuals() (owlapy.class_expression.owlobjectoneof method)": [[5, "owlapy.class_expression.OWLObjectOneOf.individuals", false]], "individuals() (owlapy.class_expression.restriction.owlobjectoneof method)": [[8, "owlapy.class_expression.restriction.OWLObjectOneOf.individuals", false]], "individuals() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryIndividualAxiom.individuals", false]], "individuals_in_signature() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.individuals_in_signature", false]], "individuals_in_signature() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.individuals_in_signature", false]], "individuals_in_signature() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.individuals_in_signature", false]], "individuals_in_signature() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.individuals_in_signature", false]], "infer_axioms() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.infer_axioms", false]], "infer_axioms_and_save() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.infer_axioms_and_save", false]], "inference_types (in module run)": [[34, "run.inference_types", false]], "inference_types_mapping (owlapy.owl_reasoner.syncreasoner attribute)": [[26, "owlapy.owl_reasoner.SyncReasoner.inference_types_mapping", false]], "init() (in module owlapy.owlapi_mapper)": [[27, "owlapy.owlapi_mapper.init", false]], "instances() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.instances", false]], "instances() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.instances", false]], "instances() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.instances", false]], "instances() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.instances", false]], "integer (owlapy.vocab.xsdvocabulary attribute)": [[33, "owlapy.vocab.XSDVocabulary.INTEGER", false]], "integerowldatatype (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.IntegerOWLDatatype", false]], "iri (class in owlapy.iri)": [[12, "owlapy.iri.IRI", false]], "iri (owlapy.class_expression.owl_class.owlclass property)": [[7, "owlapy.class_expression.owl_class.OWLClass.iri", false]], "iri (owlapy.class_expression.owlclass property)": [[5, "owlapy.class_expression.OWLClass.iri", false]], "iri (owlapy.meta_classes.hasiri property)": [[13, "owlapy.meta_classes.HasIRI.iri", false]], "iri (owlapy.owl_axiom.owlannotationproperty property)": [[16, "owlapy.owl_axiom.OWLAnnotationProperty.iri", false]], "iri (owlapy.owl_datatype.owldatatype property)": [[18, "owlapy.owl_datatype.OWLDatatype.iri", false]], "iri (owlapy.owl_individual.owlnamedindividual property)": [[20, "owlapy.owl_individual.OWLNamedIndividual.iri", false]], "iri (owlapy.owl_ontology_manager.owlimportsdeclaration property)": [[24, "owlapy.owl_ontology_manager.OWLImportsDeclaration.iri", false]], "iri (owlapy.owl_property.owlproperty property)": [[25, "owlapy.owl_property.OWLProperty.iri", false]], "is_annotated() (owlapy.owl_axiom.owlaxiom method)": [[16, "owlapy.owl_axiom.OWLAxiom.is_annotated", false]], "is_annotation_axiom() (owlapy.owl_axiom.owlannotationaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationAxiom.is_annotation_axiom", false]], "is_annotation_axiom() (owlapy.owl_axiom.owlaxiom method)": [[16, "owlapy.owl_axiom.OWLAxiom.is_annotation_axiom", false]], "is_anonymous() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.is_anonymous", false]], "is_anonymous() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.is_anonymous", false]], "is_anonymous() (owlapy.owl_object.owlentity method)": [[22, "owlapy.owl_object.OWLEntity.is_anonymous", false]], "is_anonymous() (owlapy.owl_object.owlobject method)": [[22, "owlapy.owl_object.OWLObject.is_anonymous", false]], "is_anonymous() (owlapy.owl_ontology.owlontologyid method)": [[23, "owlapy.owl_ontology.OWLOntologyID.is_anonymous", false]], "is_boolean() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.is_boolean", false]], "is_child_of() (owlapy.owl_hierarchy.abstracthierarchy method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.is_child_of", false]], "is_data_property_expression() (owlapy.owl_property.owldatapropertyexpression method)": [[25, "owlapy.owl_property.OWLDataPropertyExpression.is_data_property_expression", false]], "is_data_property_expression() (owlapy.owl_property.owlpropertyexpression method)": [[25, "owlapy.owl_property.OWLPropertyExpression.is_data_property_expression", false]], "is_data_restriction() (owlapy.class_expression.owldatarestriction method)": [[5, "owlapy.class_expression.OWLDataRestriction.is_data_restriction", false]], "is_data_restriction() (owlapy.class_expression.owlrestriction method)": [[5, "owlapy.class_expression.OWLRestriction.is_data_restriction", false]], "is_data_restriction() (owlapy.class_expression.restriction.owldatarestriction method)": [[8, "owlapy.class_expression.restriction.OWLDataRestriction.is_data_restriction", false]], "is_data_restriction() (owlapy.class_expression.restriction.owlrestriction method)": [[8, "owlapy.class_expression.restriction.OWLRestriction.is_data_restriction", false]], "is_date() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.is_date", false]], "is_datetime() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.is_datetime", false]], "is_double() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.is_double", false]], "is_duration() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.is_duration", false]], "is_entailed() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.is_entailed", false]], "is_integer() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.is_integer", false]], "is_literal() (owlapy.owl_annotation.owlannotationvalue method)": [[15, "owlapy.owl_annotation.OWLAnnotationValue.is_literal", false]], "is_literal() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.is_literal", false]], "is_logical_axiom() (owlapy.owl_axiom.owlaxiom method)": [[16, "owlapy.owl_axiom.OWLAxiom.is_logical_axiom", false]], "is_logical_axiom() (owlapy.owl_axiom.owllogicalaxiom method)": [[16, "owlapy.owl_axiom.OWLLogicalAxiom.is_logical_axiom", false]], "is_modified (owlapy.owl_ontology.ontology attribute)": [[23, "owlapy.owl_ontology.Ontology.is_modified", false]], "is_nothing() (owlapy.iri.iri method)": [[12, "owlapy.iri.IRI.is_nothing", false]], "is_object_property_expression() (owlapy.owl_property.owlobjectpropertyexpression method)": [[25, "owlapy.owl_property.OWLObjectPropertyExpression.is_object_property_expression", false]], "is_object_property_expression() (owlapy.owl_property.owlpropertyexpression method)": [[25, "owlapy.owl_property.OWLPropertyExpression.is_object_property_expression", false]], "is_object_restriction() (owlapy.class_expression.owlobjectrestriction method)": [[5, "owlapy.class_expression.OWLObjectRestriction.is_object_restriction", false]], "is_object_restriction() (owlapy.class_expression.owlrestriction method)": [[5, "owlapy.class_expression.OWLRestriction.is_object_restriction", false]], "is_object_restriction() (owlapy.class_expression.restriction.owlobjectrestriction method)": [[8, "owlapy.class_expression.restriction.OWLObjectRestriction.is_object_restriction", false]], "is_object_restriction() (owlapy.class_expression.restriction.owlrestriction method)": [[8, "owlapy.class_expression.restriction.OWLRestriction.is_object_restriction", false]], "is_owl_nothing() (owlapy.class_expression.class_expression.owlanonymousclassexpression method)": [[4, "owlapy.class_expression.class_expression.OWLAnonymousClassExpression.is_owl_nothing", false]], "is_owl_nothing() (owlapy.class_expression.class_expression.owlclassexpression method)": [[4, "owlapy.class_expression.class_expression.OWLClassExpression.is_owl_nothing", false]], "is_owl_nothing() (owlapy.class_expression.owl_class.owlclass method)": [[7, "owlapy.class_expression.owl_class.OWLClass.is_owl_nothing", false]], "is_owl_nothing() (owlapy.class_expression.owlanonymousclassexpression method)": [[5, "owlapy.class_expression.OWLAnonymousClassExpression.is_owl_nothing", false]], "is_owl_nothing() (owlapy.class_expression.owlclass method)": [[5, "owlapy.class_expression.OWLClass.is_owl_nothing", false]], "is_owl_nothing() (owlapy.class_expression.owlclassexpression method)": [[5, "owlapy.class_expression.OWLClassExpression.is_owl_nothing", false]], "is_owl_thing() (owlapy.class_expression.class_expression.owlanonymousclassexpression method)": [[4, "owlapy.class_expression.class_expression.OWLAnonymousClassExpression.is_owl_thing", false]], "is_owl_thing() (owlapy.class_expression.class_expression.owlclassexpression method)": [[4, "owlapy.class_expression.class_expression.OWLClassExpression.is_owl_thing", false]], "is_owl_thing() (owlapy.class_expression.owl_class.owlclass method)": [[7, "owlapy.class_expression.owl_class.OWLClass.is_owl_thing", false]], "is_owl_thing() (owlapy.class_expression.owlanonymousclassexpression method)": [[5, "owlapy.class_expression.OWLAnonymousClassExpression.is_owl_thing", false]], "is_owl_thing() (owlapy.class_expression.owlclass method)": [[5, "owlapy.class_expression.OWLClass.is_owl_thing", false]], "is_owl_thing() (owlapy.class_expression.owlclassexpression method)": [[5, "owlapy.class_expression.OWLClassExpression.is_owl_thing", false]], "is_owl_top_data_property() (owlapy.owl_property.owldataproperty method)": [[25, "owlapy.owl_property.OWLDataProperty.is_owl_top_data_property", false]], "is_owl_top_data_property() (owlapy.owl_property.owlpropertyexpression method)": [[25, "owlapy.owl_property.OWLPropertyExpression.is_owl_top_data_property", false]], "is_owl_top_object_property() (owlapy.owl_property.owlobjectproperty method)": [[25, "owlapy.owl_property.OWLObjectProperty.is_owl_top_object_property", false]], "is_owl_top_object_property() (owlapy.owl_property.owlpropertyexpression method)": [[25, "owlapy.owl_property.OWLPropertyExpression.is_owl_top_object_property", false]], "is_parent_of() (owlapy.owl_hierarchy.abstracthierarchy method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.is_parent_of", false]], "is_reserved_vocabulary() (owlapy.iri.iri method)": [[12, "owlapy.iri.IRI.is_reserved_vocabulary", false]], "is_satisfiable() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.is_satisfiable", false]], "is_string() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.is_string", false]], "is_sub_property_of() (owlapy.owl_hierarchy.datatypepropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.DatatypePropertyHierarchy.is_sub_property_of", false]], "is_sub_property_of() (owlapy.owl_hierarchy.objectpropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.ObjectPropertyHierarchy.is_sub_property_of", false]], "is_subclass_of() (owlapy.owl_hierarchy.classhierarchy method)": [[19, "owlapy.owl_hierarchy.ClassHierarchy.is_subclass_of", false]], "is_thing() (owlapy.iri.iri method)": [[12, "owlapy.iri.IRI.is_thing", false]], "items (owlapy.utils.evaluateddescriptionset attribute)": [[32, "owlapy.utils.EvaluatedDescriptionSet.items", false]], "items() (owlapy.owl_hierarchy.abstracthierarchy method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.items", false]], "iter_count() (in module owlapy.utils)": [[32, "owlapy.utils.iter_count", false]], "key (owlapy.utils.lrucache attribute)": [[32, "owlapy.utils.LRUCache.KEY", false]], "leaves() (owlapy.owl_hierarchy.abstracthierarchy method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.leaves", false]], "length (owlapy.class_expression.owlfacet attribute)": [[5, "owlapy.class_expression.OWLFacet.LENGTH", false]], "length (owlapy.vocab.owlfacet attribute)": [[33, "owlapy.vocab.OWLFacet.LENGTH", false]], "length() (owlapy.utils.owlclassexpressionlengthmetric method)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.length", false]], "literals (in module owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.Literals", false]], "literals (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.Literals", false]], "load_ontology() (owlapy.abstracts.abstract_owl_ontology_manager.abstractowlontologymanager method)": [[1, "owlapy.abstracts.abstract_owl_ontology_manager.AbstractOWLOntologyManager.load_ontology", false]], "load_ontology() (owlapy.abstracts.abstractowlontologymanager method)": [[3, "owlapy.abstracts.AbstractOWLOntologyManager.load_ontology", false]], "load_ontology() (owlapy.ontologymanager method)": [[11, "owlapy.OntologyManager.load_ontology", false]], "load_ontology() (owlapy.owl_ontology_manager.ontologymanager method)": [[24, "owlapy.owl_ontology_manager.OntologyManager.load_ontology", false]], "load_ontology() (owlapy.owl_ontology_manager.syncontologymanager method)": [[24, "owlapy.owl_ontology_manager.SyncOntologyManager.load_ontology", false]], "lock (owlapy.utils.lrucache attribute)": [[32, "owlapy.utils.LRUCache.lock", false]], "logger (in module owlapy.abstracts.abstract_owl_reasoner)": [[2, "owlapy.abstracts.abstract_owl_reasoner.logger", false]], "logger (in module owlapy.owl_ontology)": [[23, "owlapy.owl_ontology.logger", false]], "logger (in module owlapy.owl_reasoner)": [[26, "owlapy.owl_reasoner.logger", false]], "long (owlapy.vocab.xsdvocabulary attribute)": [[33, "owlapy.vocab.XSDVocabulary.LONG", false]], "lrucache (class in owlapy.utils)": [[32, "owlapy.utils.LRUCache", false]], "main() (in module run)": [[34, "run.main", false]], "manager (owlapy.owl_ontology.syncontology attribute)": [[23, "owlapy.owl_ontology.SyncOntology.manager", false]], "manager (owlapy.owlapi_mapper.owlapimapper attribute)": [[27, "owlapy.owlapi_mapper.OWLAPIMapper.manager", false]], "manchester_grammar (in module owlapy.parser)": [[28, "owlapy.parser.MANCHESTER_GRAMMAR", false]], "manchester_to_owl_expression() (in module owlapy)": [[11, "owlapy.manchester_to_owl_expression", false]], "manchester_to_owl_expression() (in module owlapy.parser)": [[28, "owlapy.parser.manchester_to_owl_expression", false]], "manchesterowlsyntaxowlobjectrenderer (class in owlapy.render)": [[30, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer", false]], "manchesterowlsyntaxparser (class in owlapy.parser)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser", false]], "manchesterparser (in module owlapy.parser)": [[28, "owlapy.parser.ManchesterParser", false]], "manchesterrenderer (in module owlapy.render)": [[30, "owlapy.render.ManchesterRenderer", false]], "map_() (owlapy.owlapi_mapper.owlapimapper method)": [[27, "owlapy.owlapi_mapper.OWLAPIMapper.map_", false]], "map_concept() (owlapy.owl_ontology.fromowlready2 method)": [[23, "owlapy.owl_ontology.FromOwlready2.map_concept", false]], "map_concept() (owlapy.owl_ontology.toowlready2 method)": [[23, "owlapy.owl_ontology.ToOwlready2.map_concept", false]], "map_datarange() (owlapy.owl_ontology.fromowlready2 method)": [[23, "owlapy.owl_ontology.FromOwlready2.map_datarange", false]], "map_datarange() (owlapy.owl_ontology.toowlready2 method)": [[23, "owlapy.owl_ontology.ToOwlready2.map_datarange", false]], "map_object() (owlapy.owl_ontology.toowlready2 method)": [[23, "owlapy.owl_ontology.ToOwlready2.map_object", false]], "mapper (in module owlapy.render)": [[30, "owlapy.render.mapper", false]], "mapper (owlapy.owl_ontology.syncontology attribute)": [[23, "owlapy.owl_ontology.SyncOntology.mapper", false]], "mapper (owlapy.owl_reasoner.syncreasoner attribute)": [[26, "owlapy.owl_reasoner.SyncReasoner.mapper", false]], "mapping (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.mapping", false]], "max_exclusive (owlapy.class_expression.owlfacet attribute)": [[5, "owlapy.class_expression.OWLFacet.MAX_EXCLUSIVE", false]], "max_exclusive (owlapy.vocab.owlfacet attribute)": [[33, "owlapy.vocab.OWLFacet.MAX_EXCLUSIVE", false]], "max_inclusive (owlapy.class_expression.owlfacet attribute)": [[5, "owlapy.class_expression.OWLFacet.MAX_INCLUSIVE", false]], "max_inclusive (owlapy.vocab.owlfacet attribute)": [[33, "owlapy.vocab.OWLFacet.MAX_INCLUSIVE", false]], "max_length (owlapy.class_expression.owlfacet attribute)": [[5, "owlapy.class_expression.OWLFacet.MAX_LENGTH", false]], "max_length (owlapy.vocab.owlfacet attribute)": [[33, "owlapy.vocab.OWLFacet.MAX_LENGTH", false]], "maxsize (owlapy.utils.lrucache attribute)": [[32, "owlapy.utils.LRUCache.maxsize", false]], "maybe_add() (owlapy.utils.evaluateddescriptionset method)": [[32, "owlapy.utils.EvaluatedDescriptionSet.maybe_add", false]], "measurer (in module owlapy.utils)": [[32, "owlapy.utils.measurer", false]], "min_exclusive (owlapy.class_expression.owlfacet attribute)": [[5, "owlapy.class_expression.OWLFacet.MIN_EXCLUSIVE", false]], "min_exclusive (owlapy.vocab.owlfacet attribute)": [[33, "owlapy.vocab.OWLFacet.MIN_EXCLUSIVE", false]], "min_inclusive (owlapy.class_expression.owlfacet attribute)": [[5, "owlapy.class_expression.OWLFacet.MIN_INCLUSIVE", false]], "min_inclusive (owlapy.vocab.owlfacet attribute)": [[33, "owlapy.vocab.OWLFacet.MIN_INCLUSIVE", false]], "min_length (owlapy.class_expression.owlfacet attribute)": [[5, "owlapy.class_expression.OWLFacet.MIN_LENGTH", false]], "min_length (owlapy.vocab.owlfacet attribute)": [[33, "owlapy.vocab.OWLFacet.MIN_LENGTH", false]], "modal_depth (owlapy.converter.owl2sparqlconverter property)": [[9, "owlapy.converter.Owl2SparqlConverter.modal_depth", false]], "module": [[0, "module-owlapy.abstracts.abstract_owl_ontology", false], [1, "module-owlapy.abstracts.abstract_owl_ontology_manager", false], [2, "module-owlapy.abstracts.abstract_owl_reasoner", false], [3, "module-owlapy.abstracts", false], [4, "module-owlapy.class_expression.class_expression", false], [5, "module-owlapy.class_expression", false], [6, "module-owlapy.class_expression.nary_boolean_expression", false], [7, "module-owlapy.class_expression.owl_class", false], [8, "module-owlapy.class_expression.restriction", false], [9, "module-owlapy.converter", false], [10, "module-owlapy.entities", false], [11, "module-owlapy", false], [12, "module-owlapy.iri", false], [13, "module-owlapy.meta_classes", false], [14, "module-owlapy.namespaces", false], [15, "module-owlapy.owl_annotation", false], [16, "module-owlapy.owl_axiom", false], [17, "module-owlapy.owl_data_ranges", false], [18, "module-owlapy.owl_datatype", false], [19, "module-owlapy.owl_hierarchy", false], [20, "module-owlapy.owl_individual", false], [21, "module-owlapy.owl_literal", false], [22, "module-owlapy.owl_object", false], [23, "module-owlapy.owl_ontology", false], [24, "module-owlapy.owl_ontology_manager", false], [25, "module-owlapy.owl_property", false], [26, "module-owlapy.owl_reasoner", false], [27, "module-owlapy.owlapi_mapper", false], [28, "module-owlapy.parser", false], [29, "module-owlapy.providers", false], [30, "module-owlapy.render", false], [31, "module-owlapy.static_funcs", false], [32, "module-owlapy.utils", false], [33, "module-owlapy.vocab", false], [34, "module-run", false]], "more_general_roles() (owlapy.owl_hierarchy.datatypepropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.DatatypePropertyHierarchy.more_general_roles", false]], "more_general_roles() (owlapy.owl_hierarchy.objectpropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.ObjectPropertyHierarchy.more_general_roles", false]], "more_special_roles() (owlapy.owl_hierarchy.datatypepropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.DatatypePropertyHierarchy.more_special_roles", false]], "more_special_roles() (owlapy.owl_hierarchy.objectpropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.ObjectPropertyHierarchy.more_special_roles", false]], "most_general_roles() (owlapy.owl_hierarchy.datatypepropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.DatatypePropertyHierarchy.most_general_roles", false]], "most_general_roles() (owlapy.owl_hierarchy.objectpropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.ObjectPropertyHierarchy.most_general_roles", false]], "most_special_roles() (owlapy.owl_hierarchy.datatypepropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.DatatypePropertyHierarchy.most_special_roles", false]], "most_special_roles() (owlapy.owl_hierarchy.objectpropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.ObjectPropertyHierarchy.most_special_roles", false]], "move() (in module owlapy.static_funcs)": [[31, "owlapy.static_funcs.move", false]], "named_classes() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[16, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.named_classes", false]], "named_individuals (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.named_individuals", false]], "namespace (owlapy.owlapi_mapper.owlapimapper attribute)": [[27, "owlapy.owlapi_mapper.OWLAPIMapper.namespace", false]], "namespaces (class in owlapy.namespaces)": [[14, "owlapy.namespaces.Namespaces", false]], "new (owlapy.owl_ontology.syncontology attribute)": [[23, "owlapy.owl_ontology.SyncOntology.new", false]], "new_count_var() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.new_count_var", false]], "new_individual_variable() (owlapy.converter.variablesmapping method)": [[9, "owlapy.converter.VariablesMapping.new_individual_variable", false]], "new_property_variable() (owlapy.converter.variablesmapping method)": [[9, "owlapy.converter.VariablesMapping.new_property_variable", false]], "next (owlapy.utils.lrucache attribute)": [[32, "owlapy.utils.LRUCache.NEXT", false]], "nnf (class in owlapy.utils)": [[32, "owlapy.utils.NNF", false]], "ns (owlapy.namespaces.namespaces property)": [[14, "owlapy.namespaces.Namespaces.ns", false]], "ns (owlapy.parser.dlsyntaxparser attribute)": [[28, "owlapy.parser.DLSyntaxParser.ns", false]], "ns (owlapy.parser.manchesterowlsyntaxparser attribute)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.ns", false]], "numeric_datatypes (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.NUMERIC_DATATYPES", false]], "o (owlapy.utils.orderedowlobject attribute)": [[32, "id0", false], [32, "owlapy.utils.OrderedOWLObject.o", false]], "object_all_values_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.object_all_values_length", false]], "object_cardinality_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.object_cardinality_length", false]], "object_complement_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.object_complement_length", false]], "object_has_self_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.object_has_self_length", false]], "object_has_value_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.object_has_value_length", false]], "object_intersection_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.object_intersection_length", false]], "object_inverse_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.object_inverse_length", false]], "object_one_of_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.object_one_of_length", false]], "object_properties_in_signature() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.object_properties_in_signature", false]], "object_properties_in_signature() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.object_properties_in_signature", false]], "object_properties_in_signature() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.object_properties_in_signature", false]], "object_properties_in_signature() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.object_properties_in_signature", false]], "object_property_domain_axioms() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.object_property_domain_axioms", false]], "object_property_domain_axioms() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.object_property_domain_axioms", false]], "object_property_domain_axioms() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.object_property_domain_axioms", false]], "object_property_domain_axioms() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.object_property_domain_axioms", false]], "object_property_domains() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.object_property_domains", false]], "object_property_domains() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.object_property_domains", false]], "object_property_domains() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.object_property_domains", false]], "object_property_domains() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.object_property_domains", false]], "object_property_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.object_property_length", false]], "object_property_range_axioms() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.object_property_range_axioms", false]], "object_property_range_axioms() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.object_property_range_axioms", false]], "object_property_range_axioms() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.object_property_range_axioms", false]], "object_property_range_axioms() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.object_property_range_axioms", false]], "object_property_ranges() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.object_property_ranges", false]], "object_property_ranges() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.object_property_ranges", false]], "object_property_ranges() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.object_property_ranges", false]], "object_property_ranges() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.object_property_ranges", false]], "object_property_values() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.object_property_values", false]], "object_property_values() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.object_property_values", false]], "object_property_values() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.object_property_values", false]], "object_property_values() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.object_property_values", false]], "object_some_values_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.object_some_values_length", false]], "object_union_length (owlapy.utils.owlclassexpressionlengthmetric attribute)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric.object_union_length", false]], "objectpropertyhierarchy (class in owlapy.owl_hierarchy)": [[19, "owlapy.owl_hierarchy.ObjectPropertyHierarchy", false]], "ontology (class in owlapy.owl_ontology)": [[23, "owlapy.owl_ontology.Ontology", false]], "ontology (owlapy.owlapi_mapper.owlapimapper attribute)": [[27, "owlapy.owlapi_mapper.OWLAPIMapper.ontology", false]], "ontologymanager (class in owlapy)": [[11, "owlapy.OntologyManager", false]], "ontologymanager (class in owlapy.owl_ontology_manager)": [[24, "owlapy.owl_ontology_manager.OntologyManager", false]], "operands() (owlapy.class_expression.class_expression.owlobjectcomplementof method)": [[4, "owlapy.class_expression.class_expression.OWLObjectComplementOf.operands", false]], "operands() (owlapy.class_expression.nary_boolean_expression.owlnarybooleanclassexpression method)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression.operands", false]], "operands() (owlapy.class_expression.owldataoneof method)": [[5, "owlapy.class_expression.OWLDataOneOf.operands", false]], "operands() (owlapy.class_expression.owlnarybooleanclassexpression method)": [[5, "owlapy.class_expression.OWLNaryBooleanClassExpression.operands", false]], "operands() (owlapy.class_expression.owlobjectcomplementof method)": [[5, "owlapy.class_expression.OWLObjectComplementOf.operands", false]], "operands() (owlapy.class_expression.owlobjectoneof method)": [[5, "owlapy.class_expression.OWLObjectOneOf.operands", false]], "operands() (owlapy.class_expression.restriction.owldataoneof method)": [[8, "owlapy.class_expression.restriction.OWLDataOneOf.operands", false]], "operands() (owlapy.class_expression.restriction.owlobjectoneof method)": [[8, "owlapy.class_expression.restriction.OWLObjectOneOf.operands", false]], "operands() (owlapy.meta_classes.hasoperands method)": [[13, "owlapy.meta_classes.HasOperands.operands", false]], "operands() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom.operands", false]], "operands() (owlapy.owl_data_ranges.owlnarydatarange method)": [[17, "owlapy.owl_data_ranges.OWLNaryDataRange.operands", false]], "operandsettransform (class in owlapy.utils)": [[32, "owlapy.utils.OperandSetTransform", false]], "operator (owlapy.class_expression.owlfacet property)": [[5, "owlapy.class_expression.OWLFacet.operator", false]], "operator (owlapy.vocab.owlfacet property)": [[33, "owlapy.vocab.OWLFacet.operator", false]], "orderedowlobject (class in owlapy.utils)": [[32, "owlapy.utils.OrderedOWLObject", false]], "owl (in module owlapy.namespaces)": [[14, "owlapy.namespaces.OWL", false]], "owl2sparqlconverter (class in owlapy.converter)": [[9, "owlapy.converter.Owl2SparqlConverter", false]], "owl_bottom_data_property (owlapy.vocab.owlrdfvocabulary attribute)": [[33, "owlapy.vocab.OWLRDFVocabulary.OWL_BOTTOM_DATA_PROPERTY", false]], "owl_bottom_object_property (owlapy.vocab.owlrdfvocabulary attribute)": [[33, "owlapy.vocab.OWLRDFVocabulary.OWL_BOTTOM_OBJECT_PROPERTY", false]], "owl_class (owlapy.vocab.owlrdfvocabulary attribute)": [[33, "owlapy.vocab.OWLRDFVocabulary.OWL_CLASS", false]], "owl_datatype_max_exclusive_restriction() (in module owlapy.providers)": [[29, "owlapy.providers.owl_datatype_max_exclusive_restriction", false]], "owl_datatype_max_inclusive_restriction() (in module owlapy.providers)": [[29, "owlapy.providers.owl_datatype_max_inclusive_restriction", false]], "owl_datatype_min_exclusive_restriction() (in module owlapy.providers)": [[29, "owlapy.providers.owl_datatype_min_exclusive_restriction", false]], "owl_datatype_min_inclusive_restriction() (in module owlapy.providers)": [[29, "owlapy.providers.owl_datatype_min_inclusive_restriction", false]], "owl_datatype_min_max_exclusive_restriction() (in module owlapy.providers)": [[29, "owlapy.providers.owl_datatype_min_max_exclusive_restriction", false]], "owl_datatype_min_max_inclusive_restriction() (in module owlapy.providers)": [[29, "owlapy.providers.owl_datatype_min_max_inclusive_restriction", false]], "owl_expression_to_dl() (in module owlapy)": [[11, "owlapy.owl_expression_to_dl", false]], "owl_expression_to_dl() (in module owlapy.render)": [[30, "owlapy.render.owl_expression_to_dl", false]], "owl_expression_to_manchester() (in module owlapy)": [[11, "owlapy.owl_expression_to_manchester", false]], "owl_expression_to_manchester() (in module owlapy.render)": [[30, "owlapy.render.owl_expression_to_manchester", false]], "owl_expression_to_sparql() (in module owlapy)": [[11, "owlapy.owl_expression_to_sparql", false]], "owl_expression_to_sparql() (in module owlapy.converter)": [[9, "owlapy.converter.owl_expression_to_sparql", false]], "owl_expression_to_sparql_with_confusion_matrix() (in module owlapy)": [[11, "owlapy.owl_expression_to_sparql_with_confusion_matrix", false]], "owl_expression_to_sparql_with_confusion_matrix() (in module owlapy.converter)": [[9, "owlapy.converter.owl_expression_to_sparql_with_confusion_matrix", false]], "owl_named_individual (owlapy.vocab.owlrdfvocabulary attribute)": [[33, "owlapy.vocab.OWLRDFVocabulary.OWL_NAMED_INDIVIDUAL", false]], "owl_nothing (owlapy.vocab.owlrdfvocabulary attribute)": [[33, "owlapy.vocab.OWLRDFVocabulary.OWL_NOTHING", false]], "owl_thing (owlapy.vocab.owlrdfvocabulary attribute)": [[33, "owlapy.vocab.OWLRDFVocabulary.OWL_THING", false]], "owl_top_data_property (owlapy.vocab.owlrdfvocabulary attribute)": [[33, "owlapy.vocab.OWLRDFVocabulary.OWL_TOP_DATA_PROPERTY", false]], "owl_top_object_property (owlapy.vocab.owlrdfvocabulary attribute)": [[33, "owlapy.vocab.OWLRDFVocabulary.OWL_TOP_OBJECT_PROPERTY", false]], "owlannotation (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAnnotation", false]], "owlannotationassertionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom", false]], "owlannotationaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAnnotationAxiom", false]], "owlannotationobject (class in owlapy.owl_annotation)": [[15, "owlapy.owl_annotation.OWLAnnotationObject", false]], "owlannotationproperty (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAnnotationProperty", false]], "owlannotationpropertydomainaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom", false]], "owlannotationpropertyrangeaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom", false]], "owlannotationsubject (class in owlapy.owl_annotation)": [[15, "owlapy.owl_annotation.OWLAnnotationSubject", false]], "owlannotationvalue (class in owlapy.owl_annotation)": [[15, "owlapy.owl_annotation.OWLAnnotationValue", false]], "owlanonymousclassexpression (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLAnonymousClassExpression", false]], "owlanonymousclassexpression (class in owlapy.class_expression.class_expression)": [[4, "owlapy.class_expression.class_expression.OWLAnonymousClassExpression", false]], "owlapi_manager (owlapy.owl_ontology_manager.syncontologymanager attribute)": [[24, "owlapy.owl_ontology_manager.SyncOntologyManager.owlapi_manager", false]], "owlapimapper (class in owlapy.owlapi_mapper)": [[27, "owlapy.owlapi_mapper.OWLAPIMapper", false]], "owlapy": [[11, "module-owlapy", false]], "owlapy.abstracts": [[3, "module-owlapy.abstracts", false]], "owlapy.abstracts.abstract_owl_ontology": [[0, "module-owlapy.abstracts.abstract_owl_ontology", false]], "owlapy.abstracts.abstract_owl_ontology_manager": [[1, "module-owlapy.abstracts.abstract_owl_ontology_manager", false]], "owlapy.abstracts.abstract_owl_reasoner": [[2, "module-owlapy.abstracts.abstract_owl_reasoner", false]], "owlapy.class_expression": [[5, "module-owlapy.class_expression", false]], "owlapy.class_expression.class_expression": [[4, "module-owlapy.class_expression.class_expression", false]], "owlapy.class_expression.nary_boolean_expression": [[6, "module-owlapy.class_expression.nary_boolean_expression", false]], "owlapy.class_expression.owl_class": [[7, "module-owlapy.class_expression.owl_class", false]], "owlapy.class_expression.restriction": [[8, "module-owlapy.class_expression.restriction", false]], "owlapy.converter": [[9, "module-owlapy.converter", false]], "owlapy.entities": [[10, "module-owlapy.entities", false]], "owlapy.iri": [[12, "module-owlapy.iri", false]], "owlapy.meta_classes": [[13, "module-owlapy.meta_classes", false]], "owlapy.namespaces": [[14, "module-owlapy.namespaces", false]], "owlapy.owl_annotation": [[15, "module-owlapy.owl_annotation", false]], "owlapy.owl_axiom": [[16, "module-owlapy.owl_axiom", false]], "owlapy.owl_data_ranges": [[17, "module-owlapy.owl_data_ranges", false]], "owlapy.owl_datatype": [[18, "module-owlapy.owl_datatype", false]], "owlapy.owl_hierarchy": [[19, "module-owlapy.owl_hierarchy", false]], "owlapy.owl_individual": [[20, "module-owlapy.owl_individual", false]], "owlapy.owl_literal": [[21, "module-owlapy.owl_literal", false]], "owlapy.owl_object": [[22, "module-owlapy.owl_object", false]], "owlapy.owl_ontology": [[23, "module-owlapy.owl_ontology", false]], "owlapy.owl_ontology_manager": [[24, "module-owlapy.owl_ontology_manager", false]], "owlapy.owl_property": [[25, "module-owlapy.owl_property", false]], "owlapy.owl_reasoner": [[26, "module-owlapy.owl_reasoner", false]], "owlapy.owlapi_mapper": [[27, "module-owlapy.owlapi_mapper", false]], "owlapy.parser": [[28, "module-owlapy.parser", false]], "owlapy.providers": [[29, "module-owlapy.providers", false]], "owlapy.render": [[30, "module-owlapy.render", false]], "owlapy.static_funcs": [[31, "module-owlapy.static_funcs", false]], "owlapy.utils": [[32, "module-owlapy.utils", false]], "owlapy.vocab": [[33, "module-owlapy.vocab", false]], "owlasymmetricobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAsymmetricObjectPropertyAxiom", false]], "owlaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAxiom", false]], "owlbooleanclassexpression (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLBooleanClassExpression", false]], "owlbooleanclassexpression (class in owlapy.class_expression.class_expression)": [[4, "owlapy.class_expression.class_expression.OWLBooleanClassExpression", false]], "owlbottomdataproperty (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.OWLBottomDataProperty", false]], "owlbottomobjectproperty (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.OWLBottomObjectProperty", false]], "owlcardinalityrestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLCardinalityRestriction", false]], "owlcardinalityrestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLCardinalityRestriction", false]], "owlclass (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLClass", false]], "owlclass (class in owlapy.class_expression.owl_class)": [[7, "owlapy.class_expression.owl_class.OWLClass", false]], "owlclassassertionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLClassAssertionAxiom", false]], "owlclassaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLClassAxiom", false]], "owlclassexpression (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLClassExpression", false]], "owlclassexpression (class in owlapy.class_expression.class_expression)": [[4, "owlapy.class_expression.class_expression.OWLClassExpression", false]], "owlclassexpressionlengthmetric (class in owlapy.utils)": [[32, "owlapy.utils.OWLClassExpressionLengthMetric", false]], "owldataallvaluesfrom (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLDataAllValuesFrom", false]], "owldataallvaluesfrom (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLDataAllValuesFrom", false]], "owldatacardinalityrestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLDataCardinalityRestriction", false]], "owldatacardinalityrestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLDataCardinalityRestriction", false]], "owldatacomplementof (class in owlapy.owl_data_ranges)": [[17, "owlapy.owl_data_ranges.OWLDataComplementOf", false]], "owldataexactcardinality (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLDataExactCardinality", false]], "owldataexactcardinality (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLDataExactCardinality", false]], "owldatahasvalue (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLDataHasValue", false]], "owldatahasvalue (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLDataHasValue", false]], "owldataintersectionof (class in owlapy.owl_data_ranges)": [[17, "owlapy.owl_data_ranges.OWLDataIntersectionOf", false]], "owldatamaxcardinality (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLDataMaxCardinality", false]], "owldatamaxcardinality (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLDataMaxCardinality", false]], "owldatamincardinality (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLDataMinCardinality", false]], "owldatamincardinality (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLDataMinCardinality", false]], "owldataoneof (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLDataOneOf", false]], "owldataoneof (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLDataOneOf", false]], "owldataproperty (class in owlapy.owl_property)": [[25, "owlapy.owl_property.OWLDataProperty", false]], "owldatapropertyassertionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDataPropertyAssertionAxiom", false]], "owldatapropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDataPropertyAxiom", false]], "owldatapropertycharacteristicaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom", false]], "owldatapropertydomainaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDataPropertyDomainAxiom", false]], "owldatapropertyexpression (class in owlapy.owl_property)": [[25, "owlapy.owl_property.OWLDataPropertyExpression", false]], "owldatapropertyrangeaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDataPropertyRangeAxiom", false]], "owldatarange (class in owlapy.owl_data_ranges)": [[17, "owlapy.owl_data_ranges.OWLDataRange", false]], "owldatarestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLDataRestriction", false]], "owldatarestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLDataRestriction", false]], "owldatasomevaluesfrom (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLDataSomeValuesFrom", false]], "owldatasomevaluesfrom (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLDataSomeValuesFrom", false]], "owldatatype (class in owlapy.owl_datatype)": [[18, "owlapy.owl_datatype.OWLDatatype", false]], "owldatatypedefinitionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom", false]], "owldatatyperestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLDatatypeRestriction", false]], "owldatatyperestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLDatatypeRestriction", false]], "owldataunionof (class in owlapy.owl_data_ranges)": [[17, "owlapy.owl_data_ranges.OWLDataUnionOf", false]], "owldeclarationaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDeclarationAxiom", false]], "owldifferentindividualsaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDifferentIndividualsAxiom", false]], "owldisjointclassesaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDisjointClassesAxiom", false]], "owldisjointdatapropertiesaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDisjointDataPropertiesAxiom", false]], "owldisjointobjectpropertiesaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDisjointObjectPropertiesAxiom", false]], "owldisjointunionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom", false]], "owlentity (class in owlapy.owl_object)": [[22, "owlapy.owl_object.OWLEntity", false]], "owlequivalentclassesaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLEquivalentClassesAxiom", false]], "owlequivalentdatapropertiesaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLEquivalentDataPropertiesAxiom", false]], "owlequivalentobjectpropertiesaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLEquivalentObjectPropertiesAxiom", false]], "owlfacet (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLFacet", false]], "owlfacet (class in owlapy.vocab)": [[33, "owlapy.vocab.OWLFacet", false]], "owlfacetrestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLFacetRestriction", false]], "owlfacetrestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLFacetRestriction", false]], "owlfunctionaldatapropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLFunctionalDataPropertyAxiom", false]], "owlfunctionalobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLFunctionalObjectPropertyAxiom", false]], "owlhaskeyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom", false]], "owlhasvaluerestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLHasValueRestriction", false]], "owlhasvaluerestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLHasValueRestriction", false]], "owlimportsdeclaration (class in owlapy.owl_ontology_manager)": [[24, "owlapy.owl_ontology_manager.OWLImportsDeclaration", false]], "owlindividual (class in owlapy.owl_individual)": [[20, "owlapy.owl_individual.OWLIndividual", false]], "owlindividualaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLIndividualAxiom", false]], "owlinversefunctionalobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLInverseFunctionalObjectPropertyAxiom", false]], "owlinverseobjectpropertiesaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom", false]], "owlirreflexiveobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLIrreflexiveObjectPropertyAxiom", false]], "owlliteral (class in owlapy.owl_literal)": [[21, "owlapy.owl_literal.OWLLiteral", false]], "owllogicalaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLLogicalAxiom", false]], "owlnamedindividual (class in owlapy.owl_individual)": [[20, "owlapy.owl_individual.OWLNamedIndividual", false]], "owlnamedobject (class in owlapy.owl_object)": [[22, "owlapy.owl_object.OWLNamedObject", false]], "owlnaryaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLNaryAxiom", false]], "owlnarybooleanclassexpression (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLNaryBooleanClassExpression", false]], "owlnarybooleanclassexpression (class in owlapy.class_expression.nary_boolean_expression)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression", false]], "owlnaryclassaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLNaryClassAxiom", false]], "owlnarydatarange (class in owlapy.owl_data_ranges)": [[17, "owlapy.owl_data_ranges.OWLNaryDataRange", false]], "owlnaryindividualaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLNaryIndividualAxiom", false]], "owlnarypropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLNaryPropertyAxiom", false]], "owlnegativedatapropertyassertionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLNegativeDataPropertyAssertionAxiom", false]], "owlnegativeobjectpropertyassertionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLNegativeObjectPropertyAssertionAxiom", false]], "owlobject (class in owlapy.owl_object)": [[22, "owlapy.owl_object.OWLObject", false]], "owlobjectallvaluesfrom (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectAllValuesFrom", false]], "owlobjectallvaluesfrom (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLObjectAllValuesFrom", false]], "owlobjectcardinalityrestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectCardinalityRestriction", false]], "owlobjectcardinalityrestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLObjectCardinalityRestriction", false]], "owlobjectcomplementof (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectComplementOf", false]], "owlobjectcomplementof (class in owlapy.class_expression.class_expression)": [[4, "owlapy.class_expression.class_expression.OWLObjectComplementOf", false]], "owlobjectexactcardinality (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectExactCardinality", false]], "owlobjectexactcardinality (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLObjectExactCardinality", false]], "owlobjecthasself (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectHasSelf", false]], "owlobjecthasself (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLObjectHasSelf", false]], "owlobjecthasvalue (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectHasValue", false]], "owlobjecthasvalue (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLObjectHasValue", false]], "owlobjectintersectionof (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectIntersectionOf", false]], "owlobjectintersectionof (class in owlapy.class_expression.nary_boolean_expression)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLObjectIntersectionOf", false]], "owlobjectinverseof (class in owlapy.owl_property)": [[25, "owlapy.owl_property.OWLObjectInverseOf", false]], "owlobjectmaxcardinality (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectMaxCardinality", false]], "owlobjectmaxcardinality (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLObjectMaxCardinality", false]], "owlobjectmincardinality (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectMinCardinality", false]], "owlobjectmincardinality (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLObjectMinCardinality", false]], "owlobjectoneof (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectOneOf", false]], "owlobjectoneof (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLObjectOneOf", false]], "owlobjectparser (class in owlapy.owl_object)": [[22, "owlapy.owl_object.OWLObjectParser", false]], "owlobjectproperty (class in owlapy.owl_property)": [[25, "owlapy.owl_property.OWLObjectProperty", false]], "owlobjectpropertyassertionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLObjectPropertyAssertionAxiom", false]], "owlobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLObjectPropertyAxiom", false]], "owlobjectpropertycharacteristicaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom", false]], "owlobjectpropertydomainaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLObjectPropertyDomainAxiom", false]], "owlobjectpropertyexpression (class in owlapy.owl_property)": [[25, "owlapy.owl_property.OWLObjectPropertyExpression", false]], "owlobjectpropertyrangeaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLObjectPropertyRangeAxiom", false]], "owlobjectrenderer (class in owlapy.owl_object)": [[22, "owlapy.owl_object.OWLObjectRenderer", false]], "owlobjectrestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectRestriction", false]], "owlobjectrestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLObjectRestriction", false]], "owlobjectsomevaluesfrom (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectSomeValuesFrom", false]], "owlobjectsomevaluesfrom (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLObjectSomeValuesFrom", false]], "owlobjectunionof (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLObjectUnionOf", false]], "owlobjectunionof (class in owlapy.class_expression.nary_boolean_expression)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLObjectUnionOf", false]], "owlontologyid (class in owlapy.owl_ontology)": [[23, "owlapy.owl_ontology.OWLOntologyID", false]], "owlproperty (class in owlapy.owl_property)": [[25, "owlapy.owl_property.OWLProperty", false]], "owlpropertyassertionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom", false]], "owlpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLPropertyAxiom", false]], "owlpropertydomainaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLPropertyDomainAxiom", false]], "owlpropertyexpression (class in owlapy.owl_property)": [[25, "owlapy.owl_property.OWLPropertyExpression", false]], "owlpropertyrange (class in owlapy.owl_data_ranges)": [[17, "owlapy.owl_data_ranges.OWLPropertyRange", false]], "owlpropertyrangeaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLPropertyRangeAxiom", false]], "owlquantifieddatarestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLQuantifiedDataRestriction", false]], "owlquantifieddatarestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLQuantifiedDataRestriction", false]], "owlquantifiedobjectrestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLQuantifiedObjectRestriction", false]], "owlquantifiedobjectrestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLQuantifiedObjectRestriction", false]], "owlquantifiedrestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLQuantifiedRestriction", false]], "owlquantifiedrestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLQuantifiedRestriction", false]], "owlrdfvocabulary (class in owlapy.vocab)": [[33, "owlapy.vocab.OWLRDFVocabulary", false]], "owlready2_facet_keys (in module owlapy.owl_ontology)": [[23, "owlapy.owl_ontology.OWLREADY2_FACET_KEYS", false]], "owlreflexiveobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLReflexiveObjectPropertyAxiom", false]], "owlrestriction (class in owlapy.class_expression)": [[5, "owlapy.class_expression.OWLRestriction", false]], "owlrestriction (class in owlapy.class_expression.restriction)": [[8, "owlapy.class_expression.restriction.OWLRestriction", false]], "owlsameindividualaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLSameIndividualAxiom", false]], "owlsubannotationpropertyofaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom", false]], "owlsubclassofaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLSubClassOfAxiom", false]], "owlsubdatapropertyofaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLSubDataPropertyOfAxiom", false]], "owlsubobjectpropertyofaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLSubObjectPropertyOfAxiom", false]], "owlsubpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLSubPropertyAxiom", false]], "owlsymmetricobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLSymmetricObjectPropertyAxiom", false]], "owltopdataproperty (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.OWLTopDataProperty", false]], "owltopobjectproperty (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.OWLTopObjectProperty", false]], "owltransitiveobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLTransitiveObjectPropertyAxiom", false]], "owlunarypropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLUnaryPropertyAxiom", false]], "parent (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.parent", false]], "parent_var (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.parent_var", false]], "parents() (owlapy.owl_hierarchy.abstracthierarchy method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.parents", false]], "parse_boolean() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.parse_boolean", false]], "parse_date() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.parse_date", false]], "parse_datetime() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.parse_datetime", false]], "parse_double() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.parse_double", false]], "parse_duration() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.parse_duration", false]], "parse_expression() (owlapy.owl_object.owlobjectparser method)": [[22, "owlapy.owl_object.OWLObjectParser.parse_expression", false]], "parse_expression() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.parse_expression", false]], "parse_expression() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.parse_expression", false]], "parse_integer() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.parse_integer", false]], "parse_string() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.parse_string", false]], "parser (owlapy.owlapi_mapper.owlapimapper attribute)": [[27, "owlapy.owlapi_mapper.OWLAPIMapper.parser", false]], "path (owlapy.owl_ontology.syncontology attribute)": [[23, "owlapy.owl_ontology.SyncOntology.path", false]], "pattern (owlapy.class_expression.owlfacet attribute)": [[5, "owlapy.class_expression.OWLFacet.PATTERN", false]], "pattern (owlapy.vocab.owlfacet attribute)": [[33, "owlapy.vocab.OWLFacet.PATTERN", false]], "peek() (in module owlapy.converter)": [[9, "owlapy.converter.peek", false]], "prefix (owlapy.namespaces.namespaces property)": [[14, "owlapy.namespaces.Namespaces.prefix", false]], "prev (owlapy.utils.lrucache attribute)": [[32, "owlapy.utils.LRUCache.PREV", false]], "process() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.process", false]], "prop_cnt (owlapy.converter.variablesmapping attribute)": [[9, "owlapy.converter.VariablesMapping.prop_cnt", false]], "properties (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.properties", false]], "properties() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryPropertyAxiom.properties", false]], "properties_in_signature() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.properties_in_signature", false]], "rdf (in module owlapy.namespaces)": [[14, "owlapy.namespaces.RDF", false]], "rdfs (in module owlapy.namespaces)": [[14, "owlapy.namespaces.RDFS", false]], "rdfs_literal (owlapy.vocab.owlrdfvocabulary attribute)": [[33, "owlapy.vocab.OWLRDFVocabulary.RDFS_LITERAL", false]], "reasoner (owlapy.owl_reasoner.syncreasoner attribute)": [[26, "owlapy.owl_reasoner.SyncReasoner.reasoner", false]], "reminder (owlapy.class_expression.owl_class.owlclass property)": [[7, "owlapy.class_expression.owl_class.OWLClass.reminder", false]], "reminder (owlapy.class_expression.owlclass property)": [[5, "owlapy.class_expression.OWLClass.reminder", false]], "reminder (owlapy.iri.iri property)": [[12, "owlapy.iri.IRI.reminder", false]], "remove_axiom() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.remove_axiom", false]], "remove_axiom() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.remove_axiom", false]], "remove_axiom() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.remove_axiom", false]], "remove_axiom() (owlapy.owl_ontology.syncontology method)": [[23, "owlapy.owl_ontology.SyncOntology.remove_axiom", false]], "render() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.render", false]], "render() (owlapy.owl_object.owlobjectrenderer method)": [[22, "owlapy.owl_object.OWLObjectRenderer.render", false]], "render() (owlapy.render.dlsyntaxobjectrenderer method)": [[30, "owlapy.render.DLSyntaxObjectRenderer.render", false]], "render() (owlapy.render.manchesterowlsyntaxowlobjectrenderer method)": [[30, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer.render", false]], "renderer (owlapy.owlapi_mapper.owlapimapper attribute)": [[27, "owlapy.owlapi_mapper.OWLAPIMapper.renderer", false]], "reset() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.reset", false]], "reset_and_disable_cache() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.reset_and_disable_cache", false]], "restrict() (owlapy.owl_hierarchy.abstracthierarchy static method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.restrict", false]], "restrict_and_copy() (owlapy.owl_hierarchy.abstracthierarchy method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.restrict_and_copy", false]], "restriction_literals (in module owlapy.providers)": [[29, "owlapy.providers.Restriction_Literals", false]], "result (owlapy.utils.lrucache attribute)": [[32, "owlapy.utils.LRUCache.RESULT", false]], "root (owlapy.utils.lrucache attribute)": [[32, "owlapy.utils.LRUCache.root", false]], "roots() (owlapy.owl_hierarchy.abstracthierarchy method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.roots", false]], "run": [[34, "module-run", false]], "run_with_timeout() (in module owlapy.utils)": [[32, "owlapy.utils.run_with_timeout", false]], "same_individuals() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.same_individuals", false]], "same_individuals() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.same_individuals", false]], "same_individuals() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.same_individuals", false]], "same_individuals() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.same_individuals", false]], "save() (owlapy.abstracts.abstract_owl_ontology.abstractowlontology method)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.save", false]], "save() (owlapy.abstracts.abstractowlontology method)": [[3, "owlapy.abstracts.AbstractOWLOntology.save", false]], "save() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.save", false]], "save_world() (owlapy.ontologymanager method)": [[11, "owlapy.OntologyManager.save_world", false]], "save_world() (owlapy.owl_ontology_manager.ontologymanager method)": [[24, "owlapy.owl_ontology_manager.OntologyManager.save_world", false]], "sentinel (owlapy.utils.lrucache attribute)": [[32, "id1", false], [32, "owlapy.utils.LRUCache.sentinel", false]], "set_short_form_provider() (owlapy.owl_object.owlobjectrenderer method)": [[22, "owlapy.owl_object.OWLObjectRenderer.set_short_form_provider", false]], "set_short_form_provider() (owlapy.render.dlsyntaxobjectrenderer method)": [[30, "owlapy.render.DLSyntaxObjectRenderer.set_short_form_provider", false]], "set_short_form_provider() (owlapy.render.manchesterowlsyntaxowlobjectrenderer method)": [[30, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer.set_short_form_provider", false]], "siblings() (owlapy.owl_hierarchy.abstracthierarchy method)": [[19, "owlapy.owl_hierarchy.AbstractHierarchy.siblings", false]], "simplify() (owlapy.utils.operandsettransform method)": [[32, "owlapy.utils.OperandSetTransform.simplify", false]], "slots (owlapy.parser.dlsyntaxparser attribute)": [[28, "owlapy.parser.DLSyntaxParser.slots", false]], "slots (owlapy.parser.manchesterowlsyntaxparser attribute)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.slots", false]], "sort() (owlapy.utils.conceptoperandsorter method)": [[32, "owlapy.utils.ConceptOperandSorter.sort", false]], "sparql (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.sparql", false]], "stack_parent() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.stack_parent", false]], "stack_variable() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.stack_variable", false]], "startjvm() (in module owlapy.static_funcs)": [[31, "owlapy.static_funcs.startJVM", false]], "stopjvm() (in module owlapy.static_funcs)": [[31, "owlapy.static_funcs.stopJVM", false]], "str (owlapy.class_expression.owl_class.owlclass property)": [[7, "owlapy.class_expression.owl_class.OWLClass.str", false]], "str (owlapy.class_expression.owlclass property)": [[5, "owlapy.class_expression.OWLClass.str", false]], "str (owlapy.iri.iri property)": [[12, "owlapy.iri.IRI.str", false]], "str (owlapy.meta_classes.hasiri property)": [[13, "owlapy.meta_classes.HasIRI.str", false]], "str (owlapy.owl_axiom.owlannotationproperty property)": [[16, "owlapy.owl_axiom.OWLAnnotationProperty.str", false]], "str (owlapy.owl_datatype.owldatatype property)": [[18, "owlapy.owl_datatype.OWLDatatype.str", false]], "str (owlapy.owl_individual.owlnamedindividual property)": [[20, "owlapy.owl_individual.OWLNamedIndividual.str", false]], "str (owlapy.owl_ontology_manager.owlimportsdeclaration property)": [[24, "owlapy.owl_ontology_manager.OWLImportsDeclaration.str", false]], "str (owlapy.owl_property.owlproperty property)": [[25, "owlapy.owl_property.OWLProperty.str", false]], "string (owlapy.vocab.xsdvocabulary attribute)": [[33, "owlapy.vocab.XSDVocabulary.STRING", false]], "stringowldatatype (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.StringOWLDatatype", false]], "structuralreasoner (class in owlapy.owl_reasoner)": [[26, "owlapy.owl_reasoner.StructuralReasoner", false]], "sub_classes() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.sub_classes", false]], "sub_classes() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.sub_classes", false]], "sub_classes() (owlapy.owl_hierarchy.classhierarchy method)": [[19, "owlapy.owl_hierarchy.ClassHierarchy.sub_classes", false]], "sub_classes() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.sub_classes", false]], "sub_classes() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.sub_classes", false]], "sub_data_properties() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.sub_data_properties", false]], "sub_data_properties() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.sub_data_properties", false]], "sub_data_properties() (owlapy.owl_hierarchy.datatypepropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.DatatypePropertyHierarchy.sub_data_properties", false]], "sub_data_properties() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.sub_data_properties", false]], "sub_data_properties() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.sub_data_properties", false]], "sub_object_properties() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.sub_object_properties", false]], "sub_object_properties() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.sub_object_properties", false]], "sub_object_properties() (owlapy.owl_hierarchy.objectpropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.ObjectPropertyHierarchy.sub_object_properties", false]], "sub_object_properties() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.sub_object_properties", false]], "sub_object_properties() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.sub_object_properties", false]], "super_classes() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.super_classes", false]], "super_classes() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.super_classes", false]], "super_classes() (owlapy.owl_hierarchy.classhierarchy method)": [[19, "owlapy.owl_hierarchy.ClassHierarchy.super_classes", false]], "super_classes() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.super_classes", false]], "super_classes() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.super_classes", false]], "super_data_properties() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.super_data_properties", false]], "super_data_properties() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.super_data_properties", false]], "super_data_properties() (owlapy.owl_hierarchy.datatypepropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.DatatypePropertyHierarchy.super_data_properties", false]], "super_data_properties() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.super_data_properties", false]], "super_data_properties() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.super_data_properties", false]], "super_object_properties() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.super_object_properties", false]], "super_object_properties() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.super_object_properties", false]], "super_object_properties() (owlapy.owl_hierarchy.objectpropertyhierarchy method)": [[19, "owlapy.owl_hierarchy.ObjectPropertyHierarchy.super_object_properties", false]], "super_object_properties() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.super_object_properties", false]], "super_object_properties() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.super_object_properties", false]], "symbolic_form (owlapy.class_expression.owlfacet property)": [[5, "owlapy.class_expression.OWLFacet.symbolic_form", false]], "symbolic_form (owlapy.vocab.owlfacet property)": [[33, "owlapy.vocab.OWLFacet.symbolic_form", false]], "syncontology (class in owlapy.owl_ontology)": [[23, "owlapy.owl_ontology.SyncOntology", false]], "syncontologymanager (class in owlapy.owl_ontology_manager)": [[24, "owlapy.owl_ontology_manager.SyncOntologyManager", false]], "syncreasoner (class in owlapy.owl_reasoner)": [[26, "owlapy.owl_reasoner.SyncReasoner", false]], "tbox_axioms() (owlapy.owl_ontology.ontology method)": [[23, "owlapy.owl_ontology.Ontology.tbox_axioms", false]], "time_datatypes (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.TIME_DATATYPES", false]], "to_list() (owlapy.owlapi_mapper.owlapimapper static method)": [[27, "owlapy.owlapi_mapper.OWLAPIMapper.to_list", false]], "to_python() (owlapy.owl_literal.owlliteral method)": [[21, "owlapy.owl_literal.OWLLiteral.to_python", false]], "to_string_id() (owlapy.owl_object.owlentity method)": [[22, "owlapy.owl_object.OWLEntity.to_string_id", false]], "toowlready2 (class in owlapy.owl_ontology)": [[23, "owlapy.owl_ontology.ToOwlready2", false]], "toplevelcnf (class in owlapy.utils)": [[32, "owlapy.utils.TopLevelCNF", false]], "topleveldnf (class in owlapy.utils)": [[32, "owlapy.utils.TopLevelDNF", false]], "topowldatatype (in module owlapy.owl_literal)": [[21, "owlapy.owl_literal.TopOWLDatatype", false]], "total_digits (owlapy.class_expression.owlfacet attribute)": [[5, "owlapy.class_expression.OWLFacet.TOTAL_DIGITS", false]], "total_digits (owlapy.vocab.owlfacet attribute)": [[33, "owlapy.vocab.OWLFacet.TOTAL_DIGITS", false]], "translating_short_form_endpoint() (in module owlapy.render)": [[30, "owlapy.render.translating_short_form_endpoint", false]], "translating_short_form_provider() (in module owlapy.render)": [[30, "owlapy.render.translating_short_form_provider", false]], "triple() (owlapy.converter.owl2sparqlconverter method)": [[9, "owlapy.converter.Owl2SparqlConverter.triple", false]], "type_index (owlapy.abstracts.abstract_owl_ontology.abstractowlontology attribute)": [[0, "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology.type_index", false]], "type_index (owlapy.abstracts.abstractowlontology attribute)": [[3, "owlapy.abstracts.AbstractOWLOntology.type_index", false]], "type_index (owlapy.class_expression.class_expression.owlobjectcomplementof attribute)": [[4, "owlapy.class_expression.class_expression.OWLObjectComplementOf.type_index", false]], "type_index (owlapy.class_expression.nary_boolean_expression.owlobjectintersectionof attribute)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLObjectIntersectionOf.type_index", false]], "type_index (owlapy.class_expression.nary_boolean_expression.owlobjectunionof attribute)": [[6, "owlapy.class_expression.nary_boolean_expression.OWLObjectUnionOf.type_index", false]], "type_index (owlapy.class_expression.owl_class.owlclass attribute)": [[7, "owlapy.class_expression.owl_class.OWLClass.type_index", false]], "type_index (owlapy.class_expression.owlclass attribute)": [[5, "owlapy.class_expression.OWLClass.type_index", false]], "type_index (owlapy.class_expression.owldataallvaluesfrom attribute)": [[5, "owlapy.class_expression.OWLDataAllValuesFrom.type_index", false]], "type_index (owlapy.class_expression.owldataexactcardinality attribute)": [[5, "owlapy.class_expression.OWLDataExactCardinality.type_index", false]], "type_index (owlapy.class_expression.owldatahasvalue attribute)": [[5, "owlapy.class_expression.OWLDataHasValue.type_index", false]], "type_index (owlapy.class_expression.owldatamaxcardinality attribute)": [[5, "owlapy.class_expression.OWLDataMaxCardinality.type_index", false]], "type_index (owlapy.class_expression.owldatamincardinality attribute)": [[5, "owlapy.class_expression.OWLDataMinCardinality.type_index", false]], "type_index (owlapy.class_expression.owldataoneof attribute)": [[5, "owlapy.class_expression.OWLDataOneOf.type_index", false]], "type_index (owlapy.class_expression.owldatasomevaluesfrom attribute)": [[5, "owlapy.class_expression.OWLDataSomeValuesFrom.type_index", false]], "type_index (owlapy.class_expression.owldatatyperestriction attribute)": [[5, "owlapy.class_expression.OWLDatatypeRestriction.type_index", false]], "type_index (owlapy.class_expression.owlfacetrestriction attribute)": [[5, "owlapy.class_expression.OWLFacetRestriction.type_index", false]], "type_index (owlapy.class_expression.owlobjectallvaluesfrom attribute)": [[5, "owlapy.class_expression.OWLObjectAllValuesFrom.type_index", false]], "type_index (owlapy.class_expression.owlobjectcomplementof attribute)": [[5, "owlapy.class_expression.OWLObjectComplementOf.type_index", false]], "type_index (owlapy.class_expression.owlobjectexactcardinality attribute)": [[5, "owlapy.class_expression.OWLObjectExactCardinality.type_index", false]], "type_index (owlapy.class_expression.owlobjecthasself attribute)": [[5, "owlapy.class_expression.OWLObjectHasSelf.type_index", false]], "type_index (owlapy.class_expression.owlobjecthasvalue attribute)": [[5, "owlapy.class_expression.OWLObjectHasValue.type_index", false]], "type_index (owlapy.class_expression.owlobjectintersectionof attribute)": [[5, "owlapy.class_expression.OWLObjectIntersectionOf.type_index", false]], "type_index (owlapy.class_expression.owlobjectmaxcardinality attribute)": [[5, "owlapy.class_expression.OWLObjectMaxCardinality.type_index", false]], "type_index (owlapy.class_expression.owlobjectmincardinality attribute)": [[5, "owlapy.class_expression.OWLObjectMinCardinality.type_index", false]], "type_index (owlapy.class_expression.owlobjectoneof attribute)": [[5, "owlapy.class_expression.OWLObjectOneOf.type_index", false]], "type_index (owlapy.class_expression.owlobjectsomevaluesfrom attribute)": [[5, "owlapy.class_expression.OWLObjectSomeValuesFrom.type_index", false]], "type_index (owlapy.class_expression.owlobjectunionof attribute)": [[5, "owlapy.class_expression.OWLObjectUnionOf.type_index", false]], "type_index (owlapy.class_expression.restriction.owldataallvaluesfrom attribute)": [[8, "owlapy.class_expression.restriction.OWLDataAllValuesFrom.type_index", false]], "type_index (owlapy.class_expression.restriction.owldataexactcardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLDataExactCardinality.type_index", false]], "type_index (owlapy.class_expression.restriction.owldatahasvalue attribute)": [[8, "owlapy.class_expression.restriction.OWLDataHasValue.type_index", false]], "type_index (owlapy.class_expression.restriction.owldatamaxcardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLDataMaxCardinality.type_index", false]], "type_index (owlapy.class_expression.restriction.owldatamincardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLDataMinCardinality.type_index", false]], "type_index (owlapy.class_expression.restriction.owldataoneof attribute)": [[8, "owlapy.class_expression.restriction.OWLDataOneOf.type_index", false]], "type_index (owlapy.class_expression.restriction.owldatasomevaluesfrom attribute)": [[8, "owlapy.class_expression.restriction.OWLDataSomeValuesFrom.type_index", false]], "type_index (owlapy.class_expression.restriction.owldatatyperestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLDatatypeRestriction.type_index", false]], "type_index (owlapy.class_expression.restriction.owlfacetrestriction attribute)": [[8, "owlapy.class_expression.restriction.OWLFacetRestriction.type_index", false]], "type_index (owlapy.class_expression.restriction.owlobjectallvaluesfrom attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectAllValuesFrom.type_index", false]], "type_index (owlapy.class_expression.restriction.owlobjectexactcardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectExactCardinality.type_index", false]], "type_index (owlapy.class_expression.restriction.owlobjecthasself attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectHasSelf.type_index", false]], "type_index (owlapy.class_expression.restriction.owlobjecthasvalue attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectHasValue.type_index", false]], "type_index (owlapy.class_expression.restriction.owlobjectmaxcardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectMaxCardinality.type_index", false]], "type_index (owlapy.class_expression.restriction.owlobjectmincardinality attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectMinCardinality.type_index", false]], "type_index (owlapy.class_expression.restriction.owlobjectoneof attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectOneOf.type_index", false]], "type_index (owlapy.class_expression.restriction.owlobjectsomevaluesfrom attribute)": [[8, "owlapy.class_expression.restriction.OWLObjectSomeValuesFrom.type_index", false]], "type_index (owlapy.iri.iri attribute)": [[12, "owlapy.iri.IRI.type_index", false]], "type_index (owlapy.owl_data_ranges.owldatacomplementof attribute)": [[17, "owlapy.owl_data_ranges.OWLDataComplementOf.type_index", false]], "type_index (owlapy.owl_data_ranges.owldataintersectionof attribute)": [[17, "owlapy.owl_data_ranges.OWLDataIntersectionOf.type_index", false]], "type_index (owlapy.owl_data_ranges.owldataunionof attribute)": [[17, "owlapy.owl_data_ranges.OWLDataUnionOf.type_index", false]], "type_index (owlapy.owl_datatype.owldatatype attribute)": [[18, "owlapy.owl_datatype.OWLDatatype.type_index", false]], "type_index (owlapy.owl_individual.owlnamedindividual attribute)": [[20, "owlapy.owl_individual.OWLNamedIndividual.type_index", false]], "type_index (owlapy.owl_literal.owlliteral attribute)": [[21, "owlapy.owl_literal.OWLLiteral.type_index", false]], "type_index (owlapy.owl_property.owldataproperty attribute)": [[25, "owlapy.owl_property.OWLDataProperty.type_index", false]], "type_index (owlapy.owl_property.owlobjectinverseof attribute)": [[25, "owlapy.owl_property.OWLObjectInverseOf.type_index", false]], "type_index (owlapy.owl_property.owlobjectproperty attribute)": [[25, "owlapy.owl_property.OWLObjectProperty.type_index", false]], "type_index (owlapy.utils.hasindex attribute)": [[32, "owlapy.utils.HasIndex.type_index", false]], "types() (owlapy.abstracts.abstract_owl_reasoner.abstractowlreasoner method)": [[2, "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner.types", false]], "types() (owlapy.abstracts.abstractowlreasoner method)": [[3, "owlapy.abstracts.AbstractOWLReasoner.types", false]], "types() (owlapy.owl_reasoner.structuralreasoner method)": [[26, "owlapy.owl_reasoner.StructuralReasoner.types", false]], "types() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.types", false]], "unsatisfiable_classes() (owlapy.owl_reasoner.syncreasoner method)": [[26, "owlapy.owl_reasoner.SyncReasoner.unsatisfiable_classes", false]], "values() (owlapy.class_expression.owldataoneof method)": [[5, "owlapy.class_expression.OWLDataOneOf.values", false]], "values() (owlapy.class_expression.restriction.owldataoneof method)": [[8, "owlapy.class_expression.restriction.OWLDataOneOf.values", false]], "variable_entities (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.variable_entities", false]], "variables (owlapy.converter.owl2sparqlconverter attribute)": [[9, "owlapy.converter.Owl2SparqlConverter.variables", false]], "variablesmapping (class in owlapy.converter)": [[9, "owlapy.converter.VariablesMapping", false]], "visit_abbreviated_iri() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_abbreviated_iri", false]], "visit_abbreviated_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_abbreviated_iri", false]], "visit_boolean_literal() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_boolean_literal", false]], "visit_boolean_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_boolean_literal", false]], "visit_cardinality_res() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_cardinality_res", false]], "visit_cardinality_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_cardinality_res", false]], "visit_class_expression() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_class_expression", false]], "visit_class_expression() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_class_expression", false]], "visit_class_iri() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_class_iri", false]], "visit_class_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_class_iri", false]], "visit_data_cardinality_res() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_data_cardinality_res", false]], "visit_data_cardinality_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_cardinality_res", false]], "visit_data_intersection() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_data_intersection", false]], "visit_data_intersection() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_intersection", false]], "visit_data_parentheses() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_data_parentheses", false]], "visit_data_parentheses() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_parentheses", false]], "visit_data_primary() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_data_primary", false]], "visit_data_primary() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_primary", false]], "visit_data_property_iri() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_data_property_iri", false]], "visit_data_property_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_property_iri", false]], "visit_data_some_only_res() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_data_some_only_res", false]], "visit_data_some_only_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_some_only_res", false]], "visit_data_union() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_data_union", false]], "visit_data_union() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_union", false]], "visit_data_value_res() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_data_value_res", false]], "visit_data_value_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_value_res", false]], "visit_datatype() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_datatype", false]], "visit_datatype() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datatype", false]], "visit_datatype_iri() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_datatype_iri", false]], "visit_datatype_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datatype_iri", false]], "visit_datatype_restriction() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_datatype_restriction", false]], "visit_datatype_restriction() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datatype_restriction", false]], "visit_date_literal() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_date_literal", false]], "visit_date_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_date_literal", false]], "visit_datetime_literal() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_datetime_literal", false]], "visit_datetime_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datetime_literal", false]], "visit_decimal_literal() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_decimal_literal", false]], "visit_decimal_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_decimal_literal", false]], "visit_duration_literal() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_duration_literal", false]], "visit_duration_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_duration_literal", false]], "visit_facet() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_facet", false]], "visit_facet() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_facet", false]], "visit_facet_restriction() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_facet_restriction", false]], "visit_facet_restriction() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_facet_restriction", false]], "visit_facet_restrictions() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_facet_restrictions", false]], "visit_facet_restrictions() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_facet_restrictions", false]], "visit_float_literal() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_float_literal", false]], "visit_float_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_float_literal", false]], "visit_full_iri() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_full_iri", false]], "visit_full_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_full_iri", false]], "visit_has_self() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_has_self", false]], "visit_has_self() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_has_self", false]], "visit_individual_iri() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_individual_iri", false]], "visit_individual_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_individual_iri", false]], "visit_individual_list() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_individual_list", false]], "visit_individual_list() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_individual_list", false]], "visit_integer_literal() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_integer_literal", false]], "visit_integer_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_integer_literal", false]], "visit_intersection() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_intersection", false]], "visit_intersection() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_intersection", false]], "visit_iri() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_iri", false]], "visit_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_iri", false]], "visit_literal() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_literal", false]], "visit_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_literal", false]], "visit_literal_list() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_literal_list", false]], "visit_literal_list() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_literal_list", false]], "visit_non_negative_integer() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_non_negative_integer", false]], "visit_non_negative_integer() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_non_negative_integer", false]], "visit_object_property() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_object_property", false]], "visit_object_property() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_object_property", false]], "visit_object_property_iri() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_object_property_iri", false]], "visit_object_property_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_object_property_iri", false]], "visit_parentheses() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_parentheses", false]], "visit_parentheses() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_parentheses", false]], "visit_primary() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_primary", false]], "visit_primary() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_primary", false]], "visit_quoted_string() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_quoted_string", false]], "visit_quoted_string() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_quoted_string", false]], "visit_simple_iri() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_simple_iri", false]], "visit_simple_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_simple_iri", false]], "visit_some_only_res() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_some_only_res", false]], "visit_some_only_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_some_only_res", false]], "visit_string_literal_language() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_string_literal_language", false]], "visit_string_literal_language() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_string_literal_language", false]], "visit_string_literal_no_language() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_string_literal_no_language", false]], "visit_string_literal_no_language() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_string_literal_no_language", false]], "visit_typed_literal() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_typed_literal", false]], "visit_typed_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_typed_literal", false]], "visit_union() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_union", false]], "visit_union() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_union", false]], "visit_value_res() (owlapy.parser.dlsyntaxparser method)": [[28, "owlapy.parser.DLSyntaxParser.visit_value_res", false]], "visit_value_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[28, "owlapy.parser.ManchesterOWLSyntaxParser.visit_value_res", false]], "worst() (owlapy.utils.evaluateddescriptionset method)": [[32, "owlapy.utils.EvaluatedDescriptionSet.worst", false]], "xsd (in module owlapy.namespaces)": [[14, "owlapy.namespaces.XSD", false]], "xsdvocabulary (class in owlapy.vocab)": [[33, "owlapy.vocab.XSDVocabulary", false]]}, "objects": {"": [[11, 0, 0, "-", "owlapy"], [34, 0, 0, "-", "run"]], "owlapy": [[11, 1, 1, "", "OntologyManager"], [3, 0, 0, "-", "abstracts"], [5, 0, 0, "-", "class_expression"], [9, 0, 0, "-", "converter"], [11, 6, 1, "", "dl_to_owl_expression"], [10, 0, 0, "-", "entities"], [12, 0, 0, "-", "iri"], [11, 6, 1, "", "manchester_to_owl_expression"], [13, 0, 0, "-", "meta_classes"], [14, 0, 0, "-", "namespaces"], [15, 0, 0, "-", "owl_annotation"], [16, 0, 0, "-", "owl_axiom"], [17, 0, 0, "-", "owl_data_ranges"], [18, 0, 0, "-", "owl_datatype"], [11, 6, 1, "", "owl_expression_to_dl"], [11, 6, 1, "", "owl_expression_to_manchester"], [11, 6, 1, "", "owl_expression_to_sparql"], [11, 6, 1, "", "owl_expression_to_sparql_with_confusion_matrix"], [19, 0, 0, "-", "owl_hierarchy"], [20, 0, 0, "-", "owl_individual"], [21, 0, 0, "-", "owl_literal"], [22, 0, 0, "-", "owl_object"], [23, 0, 0, "-", "owl_ontology"], [24, 0, 0, "-", "owl_ontology_manager"], [25, 0, 0, "-", "owl_property"], [26, 0, 0, "-", "owl_reasoner"], [27, 0, 0, "-", "owlapi_mapper"], [28, 0, 0, "-", "parser"], [29, 0, 0, "-", "providers"], [30, 0, 0, "-", "render"], [31, 0, 0, "-", "static_funcs"], [32, 0, 0, "-", "utils"], [33, 0, 0, "-", "vocab"]], "owlapy.OntologyManager": [[11, 2, 1, "", "__slots__"], [11, 3, 1, "", "apply_change"], [11, 3, 1, "", "create_ontology"], [11, 3, 1, "", "load_ontology"], [11, 3, 1, "", "save_world"]], "owlapy.abstracts": [[3, 1, 1, "", "AbstractOWLOntology"], [3, 1, 1, "", "AbstractOWLOntologyChange"], [3, 1, 1, "", "AbstractOWLOntologyManager"], [3, 1, 1, "", "AbstractOWLReasoner"], [0, 0, 0, "-", "abstract_owl_ontology"], [1, 0, 0, "-", "abstract_owl_ontology_manager"], [2, 0, 0, "-", "abstract_owl_reasoner"]], "owlapy.abstracts.AbstractOWLOntology": [[3, 2, 1, "", "__slots__"], [3, 3, 1, "", "add_axiom"], [3, 3, 1, "", "classes_in_signature"], [3, 3, 1, "", "data_properties_in_signature"], [3, 3, 1, "", "data_property_domain_axioms"], [3, 3, 1, "", "data_property_range_axioms"], [3, 3, 1, "", "equivalent_classes_axioms"], [3, 3, 1, "", "general_class_axioms"], [3, 3, 1, "", "get_ontology_id"], [3, 3, 1, "", "get_owl_ontology_manager"], [3, 3, 1, "", "individuals_in_signature"], [3, 3, 1, "", "is_anonymous"], [3, 3, 1, "", "object_properties_in_signature"], [3, 3, 1, "", "object_property_domain_axioms"], [3, 3, 1, "", "object_property_range_axioms"], [3, 3, 1, "", "remove_axiom"], [3, 3, 1, "", "save"], [3, 2, 1, "", "type_index"]], "owlapy.abstracts.AbstractOWLOntologyChange": [[3, 2, 1, "", "__slots__"], [3, 3, 1, "", "get_ontology"]], "owlapy.abstracts.AbstractOWLOntologyManager": [[3, 3, 1, "", "apply_change"], [3, 3, 1, "", "create_ontology"], [3, 3, 1, "", "load_ontology"]], "owlapy.abstracts.AbstractOWLReasoner": [[3, 2, 1, "", "__slots__"], [3, 3, 1, "", "all_data_property_values"], [3, 3, 1, "", "data_property_domains"], [3, 3, 1, "", "data_property_ranges"], [3, 3, 1, "", "data_property_values"], [3, 3, 1, "", "different_individuals"], [3, 3, 1, "", "disjoint_classes"], [3, 3, 1, "", "disjoint_data_properties"], [3, 3, 1, "", "disjoint_object_properties"], [3, 3, 1, "", "equivalent_classes"], [3, 3, 1, "", "equivalent_data_properties"], [3, 3, 1, "", "equivalent_object_properties"], [3, 3, 1, "", "get_root_ontology"], [3, 3, 1, "", "ind_data_properties"], [3, 3, 1, "", "ind_object_properties"], [3, 3, 1, "", "instances"], [3, 3, 1, "", "object_property_domains"], [3, 3, 1, "", "object_property_ranges"], [3, 3, 1, "", "object_property_values"], [3, 3, 1, "", "same_individuals"], [3, 3, 1, "", "sub_classes"], [3, 3, 1, "", "sub_data_properties"], [3, 3, 1, "", "sub_object_properties"], [3, 3, 1, "", "super_classes"], [3, 3, 1, "", "super_data_properties"], [3, 3, 1, "", "super_object_properties"], [3, 3, 1, "", "types"]], "owlapy.abstracts.abstract_owl_ontology": [[0, 1, 1, "", "AbstractOWLOntology"]], "owlapy.abstracts.abstract_owl_ontology.AbstractOWLOntology": [[0, 2, 1, "", "__slots__"], [0, 3, 1, "", "add_axiom"], [0, 3, 1, "", "classes_in_signature"], [0, 3, 1, "", "data_properties_in_signature"], [0, 3, 1, "", "data_property_domain_axioms"], [0, 3, 1, "", "data_property_range_axioms"], [0, 3, 1, "", "equivalent_classes_axioms"], [0, 3, 1, "", "general_class_axioms"], [0, 3, 1, "", "get_ontology_id"], [0, 3, 1, "", "get_owl_ontology_manager"], [0, 3, 1, "", "individuals_in_signature"], [0, 3, 1, "", "is_anonymous"], [0, 3, 1, "", "object_properties_in_signature"], [0, 3, 1, "", "object_property_domain_axioms"], [0, 3, 1, "", "object_property_range_axioms"], [0, 3, 1, "", "remove_axiom"], [0, 3, 1, "", "save"], [0, 2, 1, "", "type_index"]], "owlapy.abstracts.abstract_owl_ontology_manager": [[1, 1, 1, "", "AbstractOWLOntologyChange"], [1, 1, 1, "", "AbstractOWLOntologyManager"]], "owlapy.abstracts.abstract_owl_ontology_manager.AbstractOWLOntologyChange": [[1, 2, 1, "", "__slots__"], [1, 3, 1, "", "get_ontology"]], "owlapy.abstracts.abstract_owl_ontology_manager.AbstractOWLOntologyManager": [[1, 3, 1, "", "apply_change"], [1, 3, 1, "", "create_ontology"], [1, 3, 1, "", "load_ontology"]], "owlapy.abstracts.abstract_owl_reasoner": [[2, 1, 1, "", "AbstractOWLReasoner"], [2, 4, 1, "", "logger"]], "owlapy.abstracts.abstract_owl_reasoner.AbstractOWLReasoner": [[2, 2, 1, "", "__slots__"], [2, 3, 1, "", "all_data_property_values"], [2, 3, 1, "", "data_property_domains"], [2, 3, 1, "", "data_property_ranges"], [2, 3, 1, "", "data_property_values"], [2, 3, 1, "", "different_individuals"], [2, 3, 1, "", "disjoint_classes"], [2, 3, 1, "", "disjoint_data_properties"], [2, 3, 1, "", "disjoint_object_properties"], [2, 3, 1, "", "equivalent_classes"], [2, 3, 1, "", "equivalent_data_properties"], [2, 3, 1, "", "equivalent_object_properties"], [2, 3, 1, "", "get_root_ontology"], [2, 3, 1, "", "ind_data_properties"], [2, 3, 1, "", "ind_object_properties"], [2, 3, 1, "", "instances"], [2, 3, 1, "", "object_property_domains"], [2, 3, 1, "", "object_property_ranges"], [2, 3, 1, "", "object_property_values"], [2, 3, 1, "", "same_individuals"], [2, 3, 1, "", "sub_classes"], [2, 3, 1, "", "sub_data_properties"], [2, 3, 1, "", "sub_object_properties"], [2, 3, 1, "", "super_classes"], [2, 3, 1, "", "super_data_properties"], [2, 3, 1, "", "super_object_properties"], [2, 3, 1, "", "types"]], "owlapy.class_expression": [[5, 1, 1, "", "OWLAnonymousClassExpression"], [5, 1, 1, "", "OWLBooleanClassExpression"], [5, 1, 1, "", "OWLCardinalityRestriction"], [5, 1, 1, "", "OWLClass"], [5, 1, 1, "", "OWLClassExpression"], [5, 1, 1, "", "OWLDataAllValuesFrom"], [5, 1, 1, "", "OWLDataCardinalityRestriction"], [5, 1, 1, "", "OWLDataExactCardinality"], [5, 1, 1, "", "OWLDataHasValue"], [5, 1, 1, "", "OWLDataMaxCardinality"], [5, 1, 1, "", "OWLDataMinCardinality"], [5, 1, 1, "", "OWLDataOneOf"], [5, 1, 1, "", "OWLDataRestriction"], [5, 1, 1, "", "OWLDataSomeValuesFrom"], [5, 1, 1, "", "OWLDatatypeRestriction"], [5, 1, 1, "", "OWLFacet"], [5, 1, 1, "", "OWLFacetRestriction"], [5, 1, 1, "", "OWLHasValueRestriction"], [5, 1, 1, "", "OWLNaryBooleanClassExpression"], [5, 1, 1, "", "OWLObjectAllValuesFrom"], [5, 1, 1, "", "OWLObjectCardinalityRestriction"], [5, 1, 1, "", "OWLObjectComplementOf"], [5, 1, 1, "", "OWLObjectExactCardinality"], [5, 1, 1, "", "OWLObjectHasSelf"], [5, 1, 1, "", "OWLObjectHasValue"], [5, 1, 1, "", "OWLObjectIntersectionOf"], [5, 1, 1, "", "OWLObjectMaxCardinality"], [5, 1, 1, "", "OWLObjectMinCardinality"], [5, 1, 1, "", "OWLObjectOneOf"], [5, 1, 1, "", "OWLObjectRestriction"], [5, 1, 1, "", "OWLObjectSomeValuesFrom"], [5, 1, 1, "", "OWLObjectUnionOf"], [5, 1, 1, "", "OWLQuantifiedDataRestriction"], [5, 1, 1, "", "OWLQuantifiedObjectRestriction"], [5, 1, 1, "", "OWLQuantifiedRestriction"], [5, 1, 1, "", "OWLRestriction"], [4, 0, 0, "-", "class_expression"], [6, 0, 0, "-", "nary_boolean_expression"], [7, 0, 0, "-", "owl_class"], [8, 0, 0, "-", "restriction"]], "owlapy.class_expression.OWLAnonymousClassExpression": [[5, 3, 1, "", "get_nnf"], [5, 3, 1, "", "get_object_complement_of"], [5, 3, 1, "", "is_owl_nothing"], [5, 3, 1, "", "is_owl_thing"]], "owlapy.class_expression.OWLBooleanClassExpression": [[5, 2, 1, "", "__slots__"]], "owlapy.class_expression.OWLCardinalityRestriction": [[5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_cardinality"], [5, 3, 1, "", "get_filler"]], "owlapy.class_expression.OWLClass": [[5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_nnf"], [5, 3, 1, "", "get_object_complement_of"], [5, 5, 1, "", "iri"], [5, 3, 1, "", "is_owl_nothing"], [5, 3, 1, "", "is_owl_thing"], [5, 5, 1, "", "reminder"], [5, 5, 1, "", "str"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLClassExpression": [[5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_nnf"], [5, 3, 1, "", "get_object_complement_of"], [5, 3, 1, "", "is_owl_nothing"], [5, 3, 1, "", "is_owl_thing"]], "owlapy.class_expression.OWLDataAllValuesFrom": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_property"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLDataCardinalityRestriction": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_property"]], "owlapy.class_expression.OWLDataExactCardinality": [[5, 2, 1, "", "__slots__"], [5, 3, 1, "", "as_intersection_of_min_max"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLDataHasValue": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "as_some_values_from"], [5, 3, 1, "", "get_property"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLDataMaxCardinality": [[5, 2, 1, "", "__slots__"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLDataMinCardinality": [[5, 2, 1, "", "__slots__"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLDataOneOf": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 3, 1, "", "operands"], [5, 2, 1, "", "type_index"], [5, 3, 1, "", "values"]], "owlapy.class_expression.OWLDataRestriction": [[5, 2, 1, "", "__slots__"], [5, 3, 1, "", "is_data_restriction"]], "owlapy.class_expression.OWLDataSomeValuesFrom": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_property"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLDatatypeRestriction": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_datatype"], [5, 3, 1, "", "get_facet_restrictions"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLFacet": [[5, 2, 1, "", "FRACTION_DIGITS"], [5, 2, 1, "", "LENGTH"], [5, 2, 1, "", "MAX_EXCLUSIVE"], [5, 2, 1, "", "MAX_INCLUSIVE"], [5, 2, 1, "", "MAX_LENGTH"], [5, 2, 1, "", "MIN_EXCLUSIVE"], [5, 2, 1, "", "MIN_INCLUSIVE"], [5, 2, 1, "", "MIN_LENGTH"], [5, 2, 1, "", "PATTERN"], [5, 2, 1, "", "TOTAL_DIGITS"], [5, 3, 1, "", "from_str"], [5, 5, 1, "", "operator"], [5, 5, 1, "", "symbolic_form"]], "owlapy.class_expression.OWLFacetRestriction": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_facet"], [5, 3, 1, "", "get_facet_value"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLHasValueRestriction": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_filler"]], "owlapy.class_expression.OWLNaryBooleanClassExpression": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "operands"]], "owlapy.class_expression.OWLObjectAllValuesFrom": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_property"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectCardinalityRestriction": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_property"]], "owlapy.class_expression.OWLObjectComplementOf": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_operand"], [5, 3, 1, "", "operands"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectExactCardinality": [[5, 2, 1, "", "__slots__"], [5, 3, 1, "", "as_intersection_of_min_max"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectHasSelf": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_property"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectHasValue": [[5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "as_some_values_from"], [5, 3, 1, "", "get_property"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectIntersectionOf": [[5, 2, 1, "", "__slots__"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectMaxCardinality": [[5, 2, 1, "", "__slots__"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectMinCardinality": [[5, 2, 1, "", "__slots__"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectOneOf": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "as_object_union_of"], [5, 3, 1, "", "individuals"], [5, 3, 1, "", "operands"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectRestriction": [[5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_property"], [5, 3, 1, "", "is_object_restriction"]], "owlapy.class_expression.OWLObjectSomeValuesFrom": [[5, 3, 1, "", "__eq__"], [5, 3, 1, "", "__hash__"], [5, 3, 1, "", "__repr__"], [5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_property"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectUnionOf": [[5, 2, 1, "", "__slots__"], [5, 2, 1, "", "type_index"]], "owlapy.class_expression.OWLQuantifiedDataRestriction": [[5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_filler"]], "owlapy.class_expression.OWLQuantifiedObjectRestriction": [[5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_filler"]], "owlapy.class_expression.OWLQuantifiedRestriction": [[5, 2, 1, "", "__slots__"]], "owlapy.class_expression.OWLRestriction": [[5, 2, 1, "", "__slots__"], [5, 3, 1, "", "get_property"], [5, 3, 1, "", "is_data_restriction"], [5, 3, 1, "", "is_object_restriction"]], "owlapy.class_expression.class_expression": [[4, 1, 1, "", "OWLAnonymousClassExpression"], [4, 1, 1, "", "OWLBooleanClassExpression"], [4, 1, 1, "", "OWLClassExpression"], [4, 1, 1, "", "OWLObjectComplementOf"]], "owlapy.class_expression.class_expression.OWLAnonymousClassExpression": [[4, 3, 1, "", "get_nnf"], [4, 3, 1, "", "get_object_complement_of"], [4, 3, 1, "", "is_owl_nothing"], [4, 3, 1, "", "is_owl_thing"]], "owlapy.class_expression.class_expression.OWLBooleanClassExpression": [[4, 2, 1, "", "__slots__"]], "owlapy.class_expression.class_expression.OWLClassExpression": [[4, 2, 1, "", "__slots__"], [4, 3, 1, "", "get_nnf"], [4, 3, 1, "", "get_object_complement_of"], [4, 3, 1, "", "is_owl_nothing"], [4, 3, 1, "", "is_owl_thing"]], "owlapy.class_expression.class_expression.OWLObjectComplementOf": [[4, 3, 1, "", "__eq__"], [4, 3, 1, "", "__hash__"], [4, 3, 1, "", "__repr__"], [4, 2, 1, "", "__slots__"], [4, 3, 1, "", "get_operand"], [4, 3, 1, "", "operands"], [4, 2, 1, "", "type_index"]], "owlapy.class_expression.nary_boolean_expression": [[6, 1, 1, "", "OWLNaryBooleanClassExpression"], [6, 1, 1, "", "OWLObjectIntersectionOf"], [6, 1, 1, "", "OWLObjectUnionOf"]], "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression": [[6, 3, 1, "", "__eq__"], [6, 3, 1, "", "__hash__"], [6, 3, 1, "", "__repr__"], [6, 2, 1, "", "__slots__"], [6, 3, 1, "", "operands"]], "owlapy.class_expression.nary_boolean_expression.OWLObjectIntersectionOf": [[6, 2, 1, "", "__slots__"], [6, 2, 1, "", "type_index"]], "owlapy.class_expression.nary_boolean_expression.OWLObjectUnionOf": [[6, 2, 1, "", "__slots__"], [6, 2, 1, "", "type_index"]], "owlapy.class_expression.owl_class": [[7, 1, 1, "", "OWLClass"]], "owlapy.class_expression.owl_class.OWLClass": [[7, 2, 1, "", "__slots__"], [7, 3, 1, "", "get_nnf"], [7, 3, 1, "", "get_object_complement_of"], [7, 5, 1, "", "iri"], [7, 3, 1, "", "is_owl_nothing"], [7, 3, 1, "", "is_owl_thing"], [7, 5, 1, "", "reminder"], [7, 5, 1, "", "str"], [7, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction": [[8, 4, 1, "", "Literals"], [8, 1, 1, "", "OWLCardinalityRestriction"], [8, 1, 1, "", "OWLDataAllValuesFrom"], [8, 1, 1, "", "OWLDataCardinalityRestriction"], [8, 1, 1, "", "OWLDataExactCardinality"], [8, 1, 1, "", "OWLDataHasValue"], [8, 1, 1, "", "OWLDataMaxCardinality"], [8, 1, 1, "", "OWLDataMinCardinality"], [8, 1, 1, "", "OWLDataOneOf"], [8, 1, 1, "", "OWLDataRestriction"], [8, 1, 1, "", "OWLDataSomeValuesFrom"], [8, 1, 1, "", "OWLDatatypeRestriction"], [8, 1, 1, "", "OWLFacetRestriction"], [8, 1, 1, "", "OWLHasValueRestriction"], [8, 1, 1, "", "OWLObjectAllValuesFrom"], [8, 1, 1, "", "OWLObjectCardinalityRestriction"], [8, 1, 1, "", "OWLObjectExactCardinality"], [8, 1, 1, "", "OWLObjectHasSelf"], [8, 1, 1, "", "OWLObjectHasValue"], [8, 1, 1, "", "OWLObjectMaxCardinality"], [8, 1, 1, "", "OWLObjectMinCardinality"], [8, 1, 1, "", "OWLObjectOneOf"], [8, 1, 1, "", "OWLObjectRestriction"], [8, 1, 1, "", "OWLObjectSomeValuesFrom"], [8, 1, 1, "", "OWLQuantifiedDataRestriction"], [8, 1, 1, "", "OWLQuantifiedObjectRestriction"], [8, 1, 1, "", "OWLQuantifiedRestriction"], [8, 1, 1, "", "OWLRestriction"]], "owlapy.class_expression.restriction.OWLCardinalityRestriction": [[8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_cardinality"], [8, 3, 1, "", "get_filler"]], "owlapy.class_expression.restriction.OWLDataAllValuesFrom": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_property"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLDataCardinalityRestriction": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_property"]], "owlapy.class_expression.restriction.OWLDataExactCardinality": [[8, 2, 1, "", "__slots__"], [8, 3, 1, "", "as_intersection_of_min_max"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLDataHasValue": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "as_some_values_from"], [8, 3, 1, "", "get_property"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLDataMaxCardinality": [[8, 2, 1, "", "__slots__"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLDataMinCardinality": [[8, 2, 1, "", "__slots__"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLDataOneOf": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 3, 1, "", "operands"], [8, 2, 1, "", "type_index"], [8, 3, 1, "", "values"]], "owlapy.class_expression.restriction.OWLDataRestriction": [[8, 2, 1, "", "__slots__"], [8, 3, 1, "", "is_data_restriction"]], "owlapy.class_expression.restriction.OWLDataSomeValuesFrom": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_property"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLDatatypeRestriction": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_datatype"], [8, 3, 1, "", "get_facet_restrictions"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLFacetRestriction": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_facet"], [8, 3, 1, "", "get_facet_value"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLHasValueRestriction": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_filler"]], "owlapy.class_expression.restriction.OWLObjectAllValuesFrom": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_property"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLObjectCardinalityRestriction": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_property"]], "owlapy.class_expression.restriction.OWLObjectExactCardinality": [[8, 2, 1, "", "__slots__"], [8, 3, 1, "", "as_intersection_of_min_max"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLObjectHasSelf": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_property"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLObjectHasValue": [[8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "as_some_values_from"], [8, 3, 1, "", "get_property"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLObjectMaxCardinality": [[8, 2, 1, "", "__slots__"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLObjectMinCardinality": [[8, 2, 1, "", "__slots__"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLObjectOneOf": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "as_object_union_of"], [8, 3, 1, "", "individuals"], [8, 3, 1, "", "operands"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLObjectRestriction": [[8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_property"], [8, 3, 1, "", "is_object_restriction"]], "owlapy.class_expression.restriction.OWLObjectSomeValuesFrom": [[8, 3, 1, "", "__eq__"], [8, 3, 1, "", "__hash__"], [8, 3, 1, "", "__repr__"], [8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_property"], [8, 2, 1, "", "type_index"]], "owlapy.class_expression.restriction.OWLQuantifiedDataRestriction": [[8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_filler"]], "owlapy.class_expression.restriction.OWLQuantifiedObjectRestriction": [[8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_filler"]], "owlapy.class_expression.restriction.OWLQuantifiedRestriction": [[8, 2, 1, "", "__slots__"]], "owlapy.class_expression.restriction.OWLRestriction": [[8, 2, 1, "", "__slots__"], [8, 3, 1, "", "get_property"], [8, 3, 1, "", "is_data_restriction"], [8, 3, 1, "", "is_object_restriction"]], "owlapy.converter": [[9, 1, 1, "", "Owl2SparqlConverter"], [9, 1, 1, "", "VariablesMapping"], [9, 4, 1, "", "converter"], [9, 6, 1, "", "owl_expression_to_sparql"], [9, 6, 1, "", "owl_expression_to_sparql_with_confusion_matrix"], [9, 6, 1, "", "peek"]], "owlapy.converter.Owl2SparqlConverter": [[9, 2, 1, "", "__slots__"], [9, 3, 1, "", "append"], [9, 3, 1, "", "append_triple"], [9, 3, 1, "", "as_confusion_matrix_query"], [9, 3, 1, "", "as_query"], [9, 2, 1, "", "ce"], [9, 2, 1, "", "cnt"], [9, 3, 1, "", "convert"], [9, 5, 1, "", "current_variable"], [9, 3, 1, "", "forAll"], [9, 3, 1, "", "forAllDeMorgan"], [9, 2, 1, "", "for_all_de_morgan"], [9, 2, 1, "", "grouping_vars"], [9, 2, 1, "", "having_conditions"], [9, 2, 1, "", "mapping"], [9, 5, 1, "", "modal_depth"], [9, 2, 1, "", "named_individuals"], [9, 3, 1, "", "new_count_var"], [9, 2, 1, "", "parent"], [9, 2, 1, "", "parent_var"], [9, 3, 1, "", "process"], [9, 2, 1, "", "properties"], [9, 3, 1, "", "render"], [9, 2, 1, "", "sparql"], [9, 3, 1, "", "stack_parent"], [9, 3, 1, "", "stack_variable"], [9, 3, 1, "", "triple"], [9, 2, 1, "", "variable_entities"], [9, 2, 1, "", "variables"]], "owlapy.converter.VariablesMapping": [[9, 3, 1, "", "__contains__"], [9, 3, 1, "", "__getitem__"], [9, 2, 1, "", "__slots__"], [9, 2, 1, "", "class_cnt"], [9, 2, 1, "", "dict"], [9, 3, 1, "", "get_variable"], [9, 2, 1, "", "ind_cnt"], [9, 3, 1, "", "new_individual_variable"], [9, 3, 1, "", "new_property_variable"], [9, 2, 1, "", "prop_cnt"]], "owlapy.iri": [[12, 1, 1, "", "IRI"]], "owlapy.iri.IRI": [[12, 3, 1, "", "__eq__"], [12, 3, 1, "", "__hash__"], [12, 3, 1, "", "__repr__"], [12, 2, 1, "", "__slots__"], [12, 3, 1, "", "as_iri"], [12, 3, 1, "", "as_str"], [12, 3, 1, "", "create"], [12, 3, 1, "", "get_namespace"], [12, 3, 1, "", "get_remainder"], [12, 3, 1, "", "is_nothing"], [12, 3, 1, "", "is_reserved_vocabulary"], [12, 3, 1, "", "is_thing"], [12, 5, 1, "", "reminder"], [12, 5, 1, "", "str"], [12, 2, 1, "", "type_index"]], "owlapy.meta_classes": [[13, 1, 1, "", "HasCardinality"], [13, 1, 1, "", "HasFiller"], [13, 1, 1, "", "HasIRI"], [13, 1, 1, "", "HasOperands"]], "owlapy.meta_classes.HasCardinality": [[13, 2, 1, "", "__slots__"], [13, 3, 1, "", "get_cardinality"]], "owlapy.meta_classes.HasFiller": [[13, 2, 1, "", "__slots__"], [13, 3, 1, "", "get_filler"]], "owlapy.meta_classes.HasIRI": [[13, 2, 1, "", "__slots__"], [13, 5, 1, "", "iri"], [13, 5, 1, "", "str"]], "owlapy.meta_classes.HasOperands": [[13, 2, 1, "", "__slots__"], [13, 3, 1, "", "operands"]], "owlapy.namespaces": [[14, 1, 1, "", "Namespaces"], [14, 4, 1, "", "OWL"], [14, 4, 1, "", "RDF"], [14, 4, 1, "", "RDFS"], [14, 4, 1, "", "XSD"]], "owlapy.namespaces.Namespaces": [[14, 3, 1, "", "__eq__"], [14, 3, 1, "", "__hash__"], [14, 3, 1, "", "__repr__"], [14, 2, 1, "", "__slots__"], [14, 5, 1, "", "ns"], [14, 5, 1, "", "prefix"]], "owlapy.owl_annotation": [[15, 1, 1, "", "OWLAnnotationObject"], [15, 1, 1, "", "OWLAnnotationSubject"], [15, 1, 1, "", "OWLAnnotationValue"]], "owlapy.owl_annotation.OWLAnnotationObject": [[15, 2, 1, "", "__slots__"], [15, 3, 1, "", "as_anonymous_individual"], [15, 3, 1, "", "as_iri"]], "owlapy.owl_annotation.OWLAnnotationSubject": [[15, 2, 1, "", "__slots__"]], "owlapy.owl_annotation.OWLAnnotationValue": [[15, 2, 1, "", "__slots__"], [15, 3, 1, "", "as_literal"], [15, 3, 1, "", "is_literal"]], "owlapy.owl_axiom": [[16, 1, 1, "", "OWLAnnotation"], [16, 1, 1, "", "OWLAnnotationAssertionAxiom"], [16, 1, 1, "", "OWLAnnotationAxiom"], [16, 1, 1, "", "OWLAnnotationProperty"], [16, 1, 1, "", "OWLAnnotationPropertyDomainAxiom"], [16, 1, 1, "", "OWLAnnotationPropertyRangeAxiom"], [16, 1, 1, "", "OWLAsymmetricObjectPropertyAxiom"], [16, 1, 1, "", "OWLAxiom"], [16, 1, 1, "", "OWLClassAssertionAxiom"], [16, 1, 1, "", "OWLClassAxiom"], [16, 1, 1, "", "OWLDataPropertyAssertionAxiom"], [16, 1, 1, "", "OWLDataPropertyAxiom"], [16, 1, 1, "", "OWLDataPropertyCharacteristicAxiom"], [16, 1, 1, "", "OWLDataPropertyDomainAxiom"], [16, 1, 1, "", "OWLDataPropertyRangeAxiom"], [16, 1, 1, "", "OWLDatatypeDefinitionAxiom"], [16, 1, 1, "", "OWLDeclarationAxiom"], [16, 1, 1, "", "OWLDifferentIndividualsAxiom"], [16, 1, 1, "", "OWLDisjointClassesAxiom"], [16, 1, 1, "", "OWLDisjointDataPropertiesAxiom"], [16, 1, 1, "", "OWLDisjointObjectPropertiesAxiom"], [16, 1, 1, "", "OWLDisjointUnionAxiom"], [16, 1, 1, "", "OWLEquivalentClassesAxiom"], [16, 1, 1, "", "OWLEquivalentDataPropertiesAxiom"], [16, 1, 1, "", "OWLEquivalentObjectPropertiesAxiom"], [16, 1, 1, "", "OWLFunctionalDataPropertyAxiom"], [16, 1, 1, "", "OWLFunctionalObjectPropertyAxiom"], [16, 1, 1, "", "OWLHasKeyAxiom"], [16, 1, 1, "", "OWLIndividualAxiom"], [16, 1, 1, "", "OWLInverseFunctionalObjectPropertyAxiom"], [16, 1, 1, "", "OWLInverseObjectPropertiesAxiom"], [16, 1, 1, "", "OWLIrreflexiveObjectPropertyAxiom"], [16, 1, 1, "", "OWLLogicalAxiom"], [16, 1, 1, "", "OWLNaryAxiom"], [16, 1, 1, "", "OWLNaryClassAxiom"], [16, 1, 1, "", "OWLNaryIndividualAxiom"], [16, 1, 1, "", "OWLNaryPropertyAxiom"], [16, 1, 1, "", "OWLNegativeDataPropertyAssertionAxiom"], [16, 1, 1, "", "OWLNegativeObjectPropertyAssertionAxiom"], [16, 1, 1, "", "OWLObjectPropertyAssertionAxiom"], [16, 1, 1, "", "OWLObjectPropertyAxiom"], [16, 1, 1, "", "OWLObjectPropertyCharacteristicAxiom"], [16, 1, 1, "", "OWLObjectPropertyDomainAxiom"], [16, 1, 1, "", "OWLObjectPropertyRangeAxiom"], [16, 1, 1, "", "OWLPropertyAssertionAxiom"], [16, 1, 1, "", "OWLPropertyAxiom"], [16, 1, 1, "", "OWLPropertyDomainAxiom"], [16, 1, 1, "", "OWLPropertyRangeAxiom"], [16, 1, 1, "", "OWLReflexiveObjectPropertyAxiom"], [16, 1, 1, "", "OWLSameIndividualAxiom"], [16, 1, 1, "", "OWLSubAnnotationPropertyOfAxiom"], [16, 1, 1, "", "OWLSubClassOfAxiom"], [16, 1, 1, "", "OWLSubDataPropertyOfAxiom"], [16, 1, 1, "", "OWLSubObjectPropertyOfAxiom"], [16, 1, 1, "", "OWLSubPropertyAxiom"], [16, 1, 1, "", "OWLSymmetricObjectPropertyAxiom"], [16, 1, 1, "", "OWLTransitiveObjectPropertyAxiom"], [16, 1, 1, "", "OWLUnaryPropertyAxiom"]], "owlapy.owl_axiom.OWLAnnotation": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_property"], [16, 3, 1, "", "get_value"]], "owlapy.owl_axiom.OWLAnnotationAssertionAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_property"], [16, 3, 1, "", "get_subject"], [16, 3, 1, "", "get_value"]], "owlapy.owl_axiom.OWLAnnotationAxiom": [[16, 2, 1, "", "__slots__"], [16, 3, 1, "", "is_annotation_axiom"]], "owlapy.owl_axiom.OWLAnnotationProperty": [[16, 2, 1, "", "__slots__"], [16, 5, 1, "", "iri"], [16, 5, 1, "", "str"]], "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_domain"], [16, 3, 1, "", "get_property"]], "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_property"], [16, 3, 1, "", "get_range"]], "owlapy.owl_axiom.OWLAsymmetricObjectPropertyAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLAxiom": [[16, 2, 1, "", "__slots__"], [16, 3, 1, "", "annotations"], [16, 3, 1, "", "is_annotated"], [16, 3, 1, "", "is_annotation_axiom"], [16, 3, 1, "", "is_logical_axiom"]], "owlapy.owl_axiom.OWLClassAssertionAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_class_expression"], [16, 3, 1, "", "get_individual"]], "owlapy.owl_axiom.OWLClassAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyAssertionAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyDomainAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyRangeAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_datarange"], [16, 3, 1, "", "get_datatype"]], "owlapy.owl_axiom.OWLDeclarationAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_entity"]], "owlapy.owl_axiom.OWLDifferentIndividualsAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointClassesAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointDataPropertiesAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointObjectPropertiesAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointUnionAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_class_expressions"], [16, 3, 1, "", "get_owl_class"], [16, 3, 1, "", "get_owl_disjoint_classes_axiom"], [16, 3, 1, "", "get_owl_equivalent_classes_axiom"]], "owlapy.owl_axiom.OWLEquivalentClassesAxiom": [[16, 2, 1, "", "__slots__"], [16, 3, 1, "", "contains_named_equivalent_class"], [16, 3, 1, "", "contains_owl_nothing"], [16, 3, 1, "", "contains_owl_thing"], [16, 3, 1, "", "named_classes"]], "owlapy.owl_axiom.OWLEquivalentDataPropertiesAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLEquivalentObjectPropertiesAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLFunctionalDataPropertyAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLFunctionalObjectPropertyAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLHasKeyAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_class_expression"], [16, 3, 1, "", "get_property_expressions"], [16, 3, 1, "", "operands"]], "owlapy.owl_axiom.OWLIndividualAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLInverseFunctionalObjectPropertyAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom": [[16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_first_property"], [16, 3, 1, "", "get_second_property"]], "owlapy.owl_axiom.OWLIrreflexiveObjectPropertyAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLLogicalAxiom": [[16, 2, 1, "", "__slots__"], [16, 3, 1, "", "is_logical_axiom"]], "owlapy.owl_axiom.OWLNaryAxiom": [[16, 2, 1, "", "__slots__"], [16, 3, 1, "", "as_pairwise_axioms"]], "owlapy.owl_axiom.OWLNaryClassAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "as_pairwise_axioms"], [16, 3, 1, "", "class_expressions"]], "owlapy.owl_axiom.OWLNaryIndividualAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "as_pairwise_axioms"], [16, 3, 1, "", "individuals"]], "owlapy.owl_axiom.OWLNaryPropertyAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "as_pairwise_axioms"], [16, 3, 1, "", "properties"]], "owlapy.owl_axiom.OWLNegativeDataPropertyAssertionAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLNegativeObjectPropertyAssertionAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyAssertionAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyDomainAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyRangeAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLPropertyAssertionAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_object"], [16, 3, 1, "", "get_property"], [16, 3, 1, "", "get_subject"]], "owlapy.owl_axiom.OWLPropertyAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLPropertyDomainAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_domain"]], "owlapy.owl_axiom.OWLPropertyRangeAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_range"]], "owlapy.owl_axiom.OWLReflexiveObjectPropertyAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSameIndividualAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_sub_property"], [16, 3, 1, "", "get_super_property"]], "owlapy.owl_axiom.OWLSubClassOfAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_sub_class"], [16, 3, 1, "", "get_super_class"]], "owlapy.owl_axiom.OWLSubDataPropertyOfAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSubObjectPropertyOfAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSubPropertyAxiom": [[16, 3, 1, "", "__eq__"], [16, 3, 1, "", "__hash__"], [16, 3, 1, "", "__repr__"], [16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_sub_property"], [16, 3, 1, "", "get_super_property"]], "owlapy.owl_axiom.OWLSymmetricObjectPropertyAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLTransitiveObjectPropertyAxiom": [[16, 2, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLUnaryPropertyAxiom": [[16, 2, 1, "", "__slots__"], [16, 3, 1, "", "get_property"]], "owlapy.owl_data_ranges": [[17, 1, 1, "", "OWLDataComplementOf"], [17, 1, 1, "", "OWLDataIntersectionOf"], [17, 1, 1, "", "OWLDataRange"], [17, 1, 1, "", "OWLDataUnionOf"], [17, 1, 1, "", "OWLNaryDataRange"], [17, 1, 1, "", "OWLPropertyRange"]], "owlapy.owl_data_ranges.OWLDataComplementOf": [[17, 3, 1, "", "__eq__"], [17, 3, 1, "", "__hash__"], [17, 3, 1, "", "__repr__"], [17, 3, 1, "", "get_data_range"], [17, 2, 1, "", "type_index"]], "owlapy.owl_data_ranges.OWLDataIntersectionOf": [[17, 2, 1, "", "__slots__"], [17, 2, 1, "", "type_index"]], "owlapy.owl_data_ranges.OWLDataUnionOf": [[17, 2, 1, "", "__slots__"], [17, 2, 1, "", "type_index"]], "owlapy.owl_data_ranges.OWLNaryDataRange": [[17, 3, 1, "", "__eq__"], [17, 3, 1, "", "__hash__"], [17, 3, 1, "", "__repr__"], [17, 2, 1, "", "__slots__"], [17, 3, 1, "", "operands"]], "owlapy.owl_datatype": [[18, 1, 1, "", "OWLDatatype"]], "owlapy.owl_datatype.OWLDatatype": [[18, 2, 1, "", "__slots__"], [18, 5, 1, "", "iri"], [18, 5, 1, "", "str"], [18, 2, 1, "", "type_index"]], "owlapy.owl_hierarchy": [[19, 1, 1, "", "AbstractHierarchy"], [19, 1, 1, "", "ClassHierarchy"], [19, 1, 1, "", "DatatypePropertyHierarchy"], [19, 1, 1, "", "ObjectPropertyHierarchy"]], "owlapy.owl_hierarchy.AbstractHierarchy": [[19, 3, 1, "", "__contains__"], [19, 3, 1, "", "__len__"], [19, 2, 1, "", "__slots__"], [19, 3, 1, "", "children"], [19, 3, 1, "", "get_bottom_entity"], [19, 3, 1, "", "get_top_entity"], [19, 3, 1, "", "is_child_of"], [19, 3, 1, "", "is_parent_of"], [19, 3, 1, "", "items"], [19, 3, 1, "", "leaves"], [19, 3, 1, "", "parents"], [19, 3, 1, "", "restrict"], [19, 3, 1, "", "restrict_and_copy"], [19, 3, 1, "", "roots"], [19, 3, 1, "", "siblings"]], "owlapy.owl_hierarchy.ClassHierarchy": [[19, 3, 1, "", "get_bottom_entity"], [19, 3, 1, "", "get_top_entity"], [19, 3, 1, "", "is_subclass_of"], [19, 3, 1, "", "sub_classes"], [19, 3, 1, "", "super_classes"]], "owlapy.owl_hierarchy.DatatypePropertyHierarchy": [[19, 3, 1, "", "get_bottom_entity"], [19, 3, 1, "", "get_top_entity"], [19, 3, 1, "", "is_sub_property_of"], [19, 3, 1, "", "more_general_roles"], [19, 3, 1, "", "more_special_roles"], [19, 3, 1, "", "most_general_roles"], [19, 3, 1, "", "most_special_roles"], [19, 3, 1, "", "sub_data_properties"], [19, 3, 1, "", "super_data_properties"]], "owlapy.owl_hierarchy.ObjectPropertyHierarchy": [[19, 3, 1, "", "get_bottom_entity"], [19, 3, 1, "", "get_top_entity"], [19, 3, 1, "", "is_sub_property_of"], [19, 3, 1, "", "more_general_roles"], [19, 3, 1, "", "more_special_roles"], [19, 3, 1, "", "most_general_roles"], [19, 3, 1, "", "most_special_roles"], [19, 3, 1, "", "sub_object_properties"], [19, 3, 1, "", "super_object_properties"]], "owlapy.owl_individual": [[20, 1, 1, "", "OWLIndividual"], [20, 1, 1, "", "OWLNamedIndividual"]], "owlapy.owl_individual.OWLIndividual": [[20, 2, 1, "", "__slots__"]], "owlapy.owl_individual.OWLNamedIndividual": [[20, 2, 1, "", "__slots__"], [20, 5, 1, "", "iri"], [20, 5, 1, "", "str"], [20, 2, 1, "", "type_index"]], "owlapy.owl_literal": [[21, 4, 1, "", "BooleanOWLDatatype"], [21, 4, 1, "", "DateOWLDatatype"], [21, 4, 1, "", "DateTimeOWLDatatype"], [21, 4, 1, "", "DoubleOWLDatatype"], [21, 4, 1, "", "DurationOWLDatatype"], [21, 4, 1, "", "IntegerOWLDatatype"], [21, 4, 1, "", "Literals"], [21, 4, 1, "", "NUMERIC_DATATYPES"], [21, 4, 1, "", "OWLBottomDataProperty"], [21, 4, 1, "", "OWLBottomObjectProperty"], [21, 1, 1, "", "OWLLiteral"], [21, 4, 1, "", "OWLTopDataProperty"], [21, 4, 1, "", "OWLTopObjectProperty"], [21, 4, 1, "", "StringOWLDatatype"], [21, 4, 1, "", "TIME_DATATYPES"], [21, 4, 1, "", "TopOWLDatatype"]], "owlapy.owl_literal.OWLLiteral": [[21, 2, 1, "", "__slots__"], [21, 3, 1, "", "as_literal"], [21, 3, 1, "", "get_datatype"], [21, 3, 1, "", "get_literal"], [21, 3, 1, "", "is_boolean"], [21, 3, 1, "", "is_date"], [21, 3, 1, "", "is_datetime"], [21, 3, 1, "", "is_double"], [21, 3, 1, "", "is_duration"], [21, 3, 1, "", "is_integer"], [21, 3, 1, "", "is_literal"], [21, 3, 1, "", "is_string"], [21, 3, 1, "", "parse_boolean"], [21, 3, 1, "", "parse_date"], [21, 3, 1, "", "parse_datetime"], [21, 3, 1, "", "parse_double"], [21, 3, 1, "", "parse_duration"], [21, 3, 1, "", "parse_integer"], [21, 3, 1, "", "parse_string"], [21, 3, 1, "", "to_python"], [21, 2, 1, "", "type_index"]], "owlapy.owl_object": [[22, 1, 1, "", "OWLEntity"], [22, 1, 1, "", "OWLNamedObject"], [22, 1, 1, "", "OWLObject"], [22, 1, 1, "", "OWLObjectParser"], [22, 1, 1, "", "OWLObjectRenderer"]], "owlapy.owl_object.OWLEntity": [[22, 2, 1, "", "__slots__"], [22, 3, 1, "", "is_anonymous"], [22, 3, 1, "", "to_string_id"]], "owlapy.owl_object.OWLNamedObject": [[22, 3, 1, "", "__eq__"], [22, 3, 1, "", "__hash__"], [22, 3, 1, "", "__lt__"], [22, 3, 1, "", "__repr__"], [22, 2, 1, "", "__slots__"]], "owlapy.owl_object.OWLObject": [[22, 3, 1, "", "__eq__"], [22, 3, 1, "", "__hash__"], [22, 3, 1, "", "__repr__"], [22, 2, 1, "", "__slots__"], [22, 3, 1, "", "is_anonymous"]], "owlapy.owl_object.OWLObjectParser": [[22, 3, 1, "", "parse_expression"]], "owlapy.owl_object.OWLObjectRenderer": [[22, 3, 1, "", "render"], [22, 3, 1, "", "set_short_form_provider"]], "owlapy.owl_ontology": [[23, 1, 1, "", "FromOwlready2"], [23, 1, 1, "", "OWLOntologyID"], [23, 4, 1, "", "OWLREADY2_FACET_KEYS"], [23, 1, 1, "", "Ontology"], [23, 1, 1, "", "SyncOntology"], [23, 1, 1, "", "ToOwlready2"], [23, 4, 1, "", "logger"]], "owlapy.owl_ontology.FromOwlready2": [[23, 2, 1, "", "__slots__"], [23, 3, 1, "", "map_concept"], [23, 3, 1, "", "map_datarange"]], "owlapy.owl_ontology.OWLOntologyID": [[23, 3, 1, "", "__eq__"], [23, 3, 1, "", "__repr__"], [23, 2, 1, "", "__slots__"], [23, 3, 1, "", "get_default_document_iri"], [23, 3, 1, "", "get_ontology_iri"], [23, 3, 1, "", "get_version_iri"], [23, 3, 1, "", "is_anonymous"]], "owlapy.owl_ontology.Ontology": [[23, 3, 1, "", "__eq__"], [23, 3, 1, "", "__hash__"], [23, 3, 1, "", "__len__"], [23, 3, 1, "", "__repr__"], [23, 2, 1, "", "__slots__"], [23, 3, 1, "", "abox_axioms_between_individuals"], [23, 3, 1, "", "abox_axioms_between_individuals_and_classes"], [23, 3, 1, "", "add_axiom"], [23, 3, 1, "", "classes_in_signature"], [23, 3, 1, "", "data_properties_in_signature"], [23, 3, 1, "", "data_property_domain_axioms"], [23, 3, 1, "", "data_property_range_axioms"], [23, 3, 1, "", "equivalent_classes_axioms"], [23, 3, 1, "", "general_class_axioms"], [23, 3, 1, "", "get_ontology_id"], [23, 3, 1, "", "get_original_iri"], [23, 3, 1, "", "get_owl_ontology_manager"], [23, 3, 1, "", "individuals_in_signature"], [23, 2, 1, "", "is_modified"], [23, 3, 1, "", "object_properties_in_signature"], [23, 3, 1, "", "object_property_domain_axioms"], [23, 3, 1, "", "object_property_range_axioms"], [23, 3, 1, "", "properties_in_signature"], [23, 3, 1, "", "remove_axiom"], [23, 3, 1, "", "save"], [23, 3, 1, "", "tbox_axioms"]], "owlapy.owl_ontology.SyncOntology": [[23, 3, 1, "", "__eq__"], [23, 3, 1, "", "__hash__"], [23, 3, 1, "", "__repr__"], [23, 3, 1, "", "add_axiom"], [23, 3, 1, "", "classes_in_signature"], [23, 3, 1, "", "data_properties_in_signature"], [23, 3, 1, "", "data_property_domain_axioms"], [23, 3, 1, "", "data_property_range_axioms"], [23, 3, 1, "", "equivalent_classes_axioms"], [23, 3, 1, "", "general_class_axioms"], [23, 3, 1, "", "get_abox_axioms"], [23, 3, 1, "", "get_ontology_id"], [23, 3, 1, "", "get_owl_ontology_manager"], [23, 3, 1, "", "get_owlapi_ontology"], [23, 3, 1, "", "get_signature"], [23, 3, 1, "", "get_tbox_axioms"], [23, 3, 1, "", "individuals_in_signature"], [23, 2, 1, "", "manager"], [23, 2, 1, "", "mapper"], [23, 2, 1, "", "new"], [23, 3, 1, "", "object_properties_in_signature"], [23, 3, 1, "", "object_property_domain_axioms"], [23, 3, 1, "", "object_property_range_axioms"], [23, 2, 1, "", "path"], [23, 3, 1, "", "remove_axiom"]], "owlapy.owl_ontology.ToOwlready2": [[23, 2, 1, "", "__slots__"], [23, 3, 1, "", "map_concept"], [23, 3, 1, "", "map_datarange"], [23, 3, 1, "", "map_object"]], "owlapy.owl_ontology_manager": [[24, 1, 1, "", "AddImport"], [24, 1, 1, "", "OWLImportsDeclaration"], [24, 1, 1, "", "OntologyManager"], [24, 1, 1, "", "SyncOntologyManager"]], "owlapy.owl_ontology_manager.AddImport": [[24, 2, 1, "", "__slots__"], [24, 3, 1, "", "get_import_declaration"]], "owlapy.owl_ontology_manager.OWLImportsDeclaration": [[24, 2, 1, "", "__slots__"], [24, 5, 1, "", "iri"], [24, 5, 1, "", "str"]], "owlapy.owl_ontology_manager.OntologyManager": [[24, 2, 1, "", "__slots__"], [24, 3, 1, "", "apply_change"], [24, 3, 1, "", "create_ontology"], [24, 3, 1, "", "load_ontology"], [24, 3, 1, "", "save_world"]], "owlapy.owl_ontology_manager.SyncOntologyManager": [[24, 3, 1, "", "apply_change"], [24, 3, 1, "", "create_ontology"], [24, 3, 1, "", "get_owlapi_manager"], [24, 3, 1, "", "load_ontology"], [24, 2, 1, "", "owlapi_manager"]], "owlapy.owl_property": [[25, 1, 1, "", "OWLDataProperty"], [25, 1, 1, "", "OWLDataPropertyExpression"], [25, 1, 1, "", "OWLObjectInverseOf"], [25, 1, 1, "", "OWLObjectProperty"], [25, 1, 1, "", "OWLObjectPropertyExpression"], [25, 1, 1, "", "OWLProperty"], [25, 1, 1, "", "OWLPropertyExpression"]], "owlapy.owl_property.OWLDataProperty": [[25, 2, 1, "", "__slots__"], [25, 3, 1, "", "is_owl_top_data_property"], [25, 2, 1, "", "type_index"]], "owlapy.owl_property.OWLDataPropertyExpression": [[25, 2, 1, "", "__slots__"], [25, 3, 1, "", "is_data_property_expression"]], "owlapy.owl_property.OWLObjectInverseOf": [[25, 3, 1, "", "__eq__"], [25, 3, 1, "", "__hash__"], [25, 3, 1, "", "__repr__"], [25, 2, 1, "", "__slots__"], [25, 3, 1, "", "get_inverse"], [25, 3, 1, "", "get_inverse_property"], [25, 3, 1, "", "get_named_property"], [25, 2, 1, "", "type_index"]], "owlapy.owl_property.OWLObjectProperty": [[25, 2, 1, "", "__slots__"], [25, 3, 1, "", "get_inverse_property"], [25, 3, 1, "", "get_named_property"], [25, 3, 1, "", "is_owl_top_object_property"], [25, 2, 1, "", "type_index"]], "owlapy.owl_property.OWLObjectPropertyExpression": [[25, 2, 1, "", "__slots__"], [25, 3, 1, "", "get_inverse_property"], [25, 3, 1, "", "get_named_property"], [25, 3, 1, "", "is_object_property_expression"]], "owlapy.owl_property.OWLProperty": [[25, 2, 1, "", "__slots__"], [25, 5, 1, "", "iri"], [25, 5, 1, "", "str"]], "owlapy.owl_property.OWLPropertyExpression": [[25, 2, 1, "", "__slots__"], [25, 3, 1, "", "is_data_property_expression"], [25, 3, 1, "", "is_object_property_expression"], [25, 3, 1, "", "is_owl_top_data_property"], [25, 3, 1, "", "is_owl_top_object_property"]], "owlapy.owl_reasoner": [[26, 1, 1, "", "StructuralReasoner"], [26, 1, 1, "", "SyncReasoner"], [26, 4, 1, "", "logger"]], "owlapy.owl_reasoner.StructuralReasoner": [[26, 3, 1, "", "all_data_property_values"], [26, 2, 1, "", "class_cache"], [26, 3, 1, "", "data_property_domains"], [26, 3, 1, "", "data_property_values"], [26, 3, 1, "", "different_individuals"], [26, 3, 1, "", "disjoint_classes"], [26, 3, 1, "", "disjoint_data_properties"], [26, 3, 1, "", "disjoint_object_properties"], [26, 3, 1, "", "equivalent_classes"], [26, 3, 1, "", "equivalent_data_properties"], [26, 3, 1, "", "equivalent_object_properties"], [26, 3, 1, "", "get_instances_from_owl_class"], [26, 3, 1, "", "get_root_ontology"], [26, 3, 1, "", "instances"], [26, 3, 1, "", "object_property_domains"], [26, 3, 1, "", "object_property_ranges"], [26, 3, 1, "", "object_property_values"], [26, 3, 1, "", "reset"], [26, 3, 1, "", "reset_and_disable_cache"], [26, 3, 1, "", "same_individuals"], [26, 3, 1, "", "sub_classes"], [26, 3, 1, "", "sub_data_properties"], [26, 3, 1, "", "sub_object_properties"], [26, 3, 1, "", "super_classes"], [26, 3, 1, "", "super_data_properties"], [26, 3, 1, "", "super_object_properties"], [26, 3, 1, "", "types"]], "owlapy.owl_reasoner.SyncReasoner": [[26, 3, 1, "", "data_property_domains"], [26, 3, 1, "", "data_property_values"], [26, 3, 1, "", "different_individuals"], [26, 3, 1, "", "disjoint_classes"], [26, 3, 1, "", "disjoint_data_properties"], [26, 3, 1, "", "disjoint_object_properties"], [26, 3, 1, "", "equivalent_classes"], [26, 3, 1, "", "equivalent_data_properties"], [26, 3, 1, "", "equivalent_object_properties"], [26, 3, 1, "", "generate_and_save_inferred_class_assertion_axioms"], [26, 3, 1, "", "get_root_ontology"], [26, 3, 1, "", "has_consistent_ontology"], [26, 3, 1, "", "infer_axioms"], [26, 3, 1, "", "infer_axioms_and_save"], [26, 2, 1, "", "inference_types_mapping"], [26, 3, 1, "", "instances"], [26, 3, 1, "", "is_entailed"], [26, 3, 1, "", "is_satisfiable"], [26, 2, 1, "", "mapper"], [26, 3, 1, "", "object_property_domains"], [26, 3, 1, "", "object_property_ranges"], [26, 3, 1, "", "object_property_values"], [26, 2, 1, "", "reasoner"], [26, 3, 1, "", "same_individuals"], [26, 3, 1, "", "sub_classes"], [26, 3, 1, "", "sub_data_properties"], [26, 3, 1, "", "sub_object_properties"], [26, 3, 1, "", "super_classes"], [26, 3, 1, "", "super_data_properties"], [26, 3, 1, "", "super_object_properties"], [26, 3, 1, "", "types"], [26, 3, 1, "", "unsatisfiable_classes"]], "owlapy.owlapi_mapper": [[27, 1, 1, "", "OWLAPIMapper"], [27, 6, 1, "", "init"]], "owlapy.owlapi_mapper.OWLAPIMapper": [[27, 2, 1, "", "manager"], [27, 3, 1, "", "map_"], [27, 2, 1, "", "namespace"], [27, 2, 1, "", "ontology"], [27, 2, 1, "", "parser"], [27, 2, 1, "", "renderer"], [27, 3, 1, "", "to_list"]], "owlapy.parser": [[28, 1, 1, "", "DLSyntaxParser"], [28, 4, 1, "", "DL_GRAMMAR"], [28, 4, 1, "", "DLparser"], [28, 4, 1, "", "MANCHESTER_GRAMMAR"], [28, 1, 1, "", "ManchesterOWLSyntaxParser"], [28, 4, 1, "", "ManchesterParser"], [28, 6, 1, "", "dl_to_owl_expression"], [28, 6, 1, "", "manchester_to_owl_expression"]], "owlapy.parser.DLSyntaxParser": [[28, 3, 1, "", "generic_visit"], [28, 2, 1, "", "grammar"], [28, 2, 1, "", "ns"], [28, 3, 1, "", "parse_expression"], [28, 2, 1, "", "slots"], [28, 3, 1, "", "visit_abbreviated_iri"], [28, 3, 1, "", "visit_boolean_literal"], [28, 3, 1, "", "visit_cardinality_res"], [28, 3, 1, "", "visit_class_expression"], [28, 3, 1, "", "visit_class_iri"], [28, 3, 1, "", "visit_data_cardinality_res"], [28, 3, 1, "", "visit_data_intersection"], [28, 3, 1, "", "visit_data_parentheses"], [28, 3, 1, "", "visit_data_primary"], [28, 3, 1, "", "visit_data_property_iri"], [28, 3, 1, "", "visit_data_some_only_res"], [28, 3, 1, "", "visit_data_union"], [28, 3, 1, "", "visit_data_value_res"], [28, 3, 1, "", "visit_datatype"], [28, 3, 1, "", "visit_datatype_iri"], [28, 3, 1, "", "visit_datatype_restriction"], [28, 3, 1, "", "visit_date_literal"], [28, 3, 1, "", "visit_datetime_literal"], [28, 3, 1, "", "visit_decimal_literal"], [28, 3, 1, "", "visit_duration_literal"], [28, 3, 1, "", "visit_facet"], [28, 3, 1, "", "visit_facet_restriction"], [28, 3, 1, "", "visit_facet_restrictions"], [28, 3, 1, "", "visit_float_literal"], [28, 3, 1, "", "visit_full_iri"], [28, 3, 1, "", "visit_has_self"], [28, 3, 1, "", "visit_individual_iri"], [28, 3, 1, "", "visit_individual_list"], [28, 3, 1, "", "visit_integer_literal"], [28, 3, 1, "", "visit_intersection"], [28, 3, 1, "", "visit_iri"], [28, 3, 1, "", "visit_literal"], [28, 3, 1, "", "visit_literal_list"], [28, 3, 1, "", "visit_non_negative_integer"], [28, 3, 1, "", "visit_object_property"], [28, 3, 1, "", "visit_object_property_iri"], [28, 3, 1, "", "visit_parentheses"], [28, 3, 1, "", "visit_primary"], [28, 3, 1, "", "visit_quoted_string"], [28, 3, 1, "", "visit_simple_iri"], [28, 3, 1, "", "visit_some_only_res"], [28, 3, 1, "", "visit_string_literal_language"], [28, 3, 1, "", "visit_string_literal_no_language"], [28, 3, 1, "", "visit_typed_literal"], [28, 3, 1, "", "visit_union"], [28, 3, 1, "", "visit_value_res"]], "owlapy.parser.ManchesterOWLSyntaxParser": [[28, 3, 1, "", "generic_visit"], [28, 2, 1, "", "grammar"], [28, 2, 1, "", "ns"], [28, 3, 1, "", "parse_expression"], [28, 2, 1, "", "slots"], [28, 3, 1, "", "visit_abbreviated_iri"], [28, 3, 1, "", "visit_boolean_literal"], [28, 3, 1, "", "visit_cardinality_res"], [28, 3, 1, "", "visit_class_expression"], [28, 3, 1, "", "visit_class_iri"], [28, 3, 1, "", "visit_data_cardinality_res"], [28, 3, 1, "", "visit_data_intersection"], [28, 3, 1, "", "visit_data_parentheses"], [28, 3, 1, "", "visit_data_primary"], [28, 3, 1, "", "visit_data_property_iri"], [28, 3, 1, "", "visit_data_some_only_res"], [28, 3, 1, "", "visit_data_union"], [28, 3, 1, "", "visit_data_value_res"], [28, 3, 1, "", "visit_datatype"], [28, 3, 1, "", "visit_datatype_iri"], [28, 3, 1, "", "visit_datatype_restriction"], [28, 3, 1, "", "visit_date_literal"], [28, 3, 1, "", "visit_datetime_literal"], [28, 3, 1, "", "visit_decimal_literal"], [28, 3, 1, "", "visit_duration_literal"], [28, 3, 1, "", "visit_facet"], [28, 3, 1, "", "visit_facet_restriction"], [28, 3, 1, "", "visit_facet_restrictions"], [28, 3, 1, "", "visit_float_literal"], [28, 3, 1, "", "visit_full_iri"], [28, 3, 1, "", "visit_has_self"], [28, 3, 1, "", "visit_individual_iri"], [28, 3, 1, "", "visit_individual_list"], [28, 3, 1, "", "visit_integer_literal"], [28, 3, 1, "", "visit_intersection"], [28, 3, 1, "", "visit_iri"], [28, 3, 1, "", "visit_literal"], [28, 3, 1, "", "visit_literal_list"], [28, 3, 1, "", "visit_non_negative_integer"], [28, 3, 1, "", "visit_object_property"], [28, 3, 1, "", "visit_object_property_iri"], [28, 3, 1, "", "visit_parentheses"], [28, 3, 1, "", "visit_primary"], [28, 3, 1, "", "visit_quoted_string"], [28, 3, 1, "", "visit_simple_iri"], [28, 3, 1, "", "visit_some_only_res"], [28, 3, 1, "", "visit_string_literal_language"], [28, 3, 1, "", "visit_string_literal_no_language"], [28, 3, 1, "", "visit_typed_literal"], [28, 3, 1, "", "visit_union"], [28, 3, 1, "", "visit_value_res"]], "owlapy.providers": [[29, 4, 1, "", "Restriction_Literals"], [29, 6, 1, "", "owl_datatype_max_exclusive_restriction"], [29, 6, 1, "", "owl_datatype_max_inclusive_restriction"], [29, 6, 1, "", "owl_datatype_min_exclusive_restriction"], [29, 6, 1, "", "owl_datatype_min_inclusive_restriction"], [29, 6, 1, "", "owl_datatype_min_max_exclusive_restriction"], [29, 6, 1, "", "owl_datatype_min_max_inclusive_restriction"]], "owlapy.render": [[30, 1, 1, "", "DLSyntaxObjectRenderer"], [30, 4, 1, "", "DLrenderer"], [30, 1, 1, "", "ManchesterOWLSyntaxOWLObjectRenderer"], [30, 4, 1, "", "ManchesterRenderer"], [30, 4, 1, "", "mapper"], [30, 6, 1, "", "owl_expression_to_dl"], [30, 6, 1, "", "owl_expression_to_manchester"], [30, 6, 1, "", "translating_short_form_endpoint"], [30, 6, 1, "", "translating_short_form_provider"]], "owlapy.render.DLSyntaxObjectRenderer": [[30, 2, 1, "", "__slots__"], [30, 3, 1, "", "render"], [30, 3, 1, "", "set_short_form_provider"]], "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer": [[30, 2, 1, "", "__slots__"], [30, 3, 1, "", "render"], [30, 3, 1, "", "set_short_form_provider"]], "owlapy.static_funcs": [[31, 6, 1, "", "download_external_files"], [31, 6, 1, "", "move"], [31, 6, 1, "", "startJVM"], [31, 6, 1, "", "stopJVM"]], "owlapy.utils": [[32, 1, 1, "", "ConceptOperandSorter"], [32, 1, 1, "", "EvaluatedDescriptionSet"], [32, 1, 1, "", "HasIndex"], [32, 1, 1, "", "LRUCache"], [32, 1, 1, "", "NNF"], [32, 1, 1, "", "OWLClassExpressionLengthMetric"], [32, 1, 1, "", "OperandSetTransform"], [32, 1, 1, "", "OrderedOWLObject"], [32, 1, 1, "", "TopLevelCNF"], [32, 1, 1, "", "TopLevelDNF"], [32, 6, 1, "", "as_index"], [32, 6, 1, "", "combine_nary_expressions"], [32, 6, 1, "", "concept_reducer"], [32, 6, 1, "", "concept_reducer_properties"], [32, 6, 1, "", "get_expression_length"], [32, 6, 1, "", "iter_count"], [32, 4, 1, "", "measurer"], [32, 6, 1, "", "run_with_timeout"]], "owlapy.utils.ConceptOperandSorter": [[32, 3, 1, "", "sort"]], "owlapy.utils.EvaluatedDescriptionSet": [[32, 3, 1, "", "__iter__"], [32, 2, 1, "", "__slots__"], [32, 3, 1, "", "best"], [32, 3, 1, "", "best_quality_value"], [32, 3, 1, "", "clean"], [32, 2, 1, "", "items"], [32, 3, 1, "", "maybe_add"], [32, 3, 1, "", "worst"]], "owlapy.utils.HasIndex": [[32, 3, 1, "", "__eq__"], [32, 2, 1, "", "type_index"]], "owlapy.utils.LRUCache": [[32, 2, 1, "", "KEY"], [32, 2, 1, "", "NEXT"], [32, 2, 1, "", "PREV"], [32, 2, 1, "", "RESULT"], [32, 3, 1, "", "__contains__"], [32, 3, 1, "", "__getitem__"], [32, 3, 1, "", "__setitem__"], [32, 2, 1, "", "cache"], [32, 3, 1, "", "cache_clear"], [32, 2, 1, "", "cache_get"], [32, 3, 1, "", "cache_info"], [32, 2, 1, "", "cache_len"], [32, 2, 1, "", "full"], [32, 2, 1, "", "lock"], [32, 2, 1, "", "maxsize"], [32, 2, 1, "", "root"], [32, 2, 1, "id1", "sentinel"]], "owlapy.utils.NNF": [[32, 3, 1, "", "get_class_nnf"]], "owlapy.utils.OWLClassExpressionLengthMetric": [[32, 2, 1, "", "__slots__"], [32, 2, 1, "", "class_length"], [32, 2, 1, "", "data_all_values_length"], [32, 2, 1, "", "data_cardinality_length"], [32, 2, 1, "", "data_complement_length"], [32, 2, 1, "", "data_has_value_length"], [32, 2, 1, "", "data_intersection_length"], [32, 2, 1, "", "data_one_of_length"], [32, 2, 1, "", "data_property_length"], [32, 2, 1, "", "data_some_values_length"], [32, 2, 1, "", "data_union_length"], [32, 2, 1, "", "datatype_length"], [32, 3, 1, "", "get_default"], [32, 3, 1, "", "length"], [32, 2, 1, "", "object_all_values_length"], [32, 2, 1, "", "object_cardinality_length"], [32, 2, 1, "", "object_complement_length"], [32, 2, 1, "", "object_has_self_length"], [32, 2, 1, "", "object_has_value_length"], [32, 2, 1, "", "object_intersection_length"], [32, 2, 1, "", "object_inverse_length"], [32, 2, 1, "", "object_one_of_length"], [32, 2, 1, "", "object_property_length"], [32, 2, 1, "", "object_some_values_length"], [32, 2, 1, "", "object_union_length"]], "owlapy.utils.OperandSetTransform": [[32, 3, 1, "", "simplify"]], "owlapy.utils.OrderedOWLObject": [[32, 3, 1, "", "__eq__"], [32, 3, 1, "", "__lt__"], [32, 2, 1, "", "__slots__"], [32, 2, 1, "id0", "o"]], "owlapy.utils.TopLevelCNF": [[32, 3, 1, "", "get_top_level_cnf"]], "owlapy.utils.TopLevelDNF": [[32, 3, 1, "", "get_top_level_dnf"]], "owlapy.vocab": [[33, 1, 1, "", "OWLFacet"], [33, 1, 1, "", "OWLRDFVocabulary"], [33, 1, 1, "", "XSDVocabulary"]], "owlapy.vocab.OWLFacet": [[33, 2, 1, "", "FRACTION_DIGITS"], [33, 2, 1, "", "LENGTH"], [33, 2, 1, "", "MAX_EXCLUSIVE"], [33, 2, 1, "", "MAX_INCLUSIVE"], [33, 2, 1, "", "MAX_LENGTH"], [33, 2, 1, "", "MIN_EXCLUSIVE"], [33, 2, 1, "", "MIN_INCLUSIVE"], [33, 2, 1, "", "MIN_LENGTH"], [33, 2, 1, "", "PATTERN"], [33, 2, 1, "", "TOTAL_DIGITS"], [33, 3, 1, "", "from_str"], [33, 5, 1, "", "operator"], [33, 5, 1, "", "symbolic_form"]], "owlapy.vocab.OWLRDFVocabulary": [[33, 2, 1, "", "OWL_BOTTOM_DATA_PROPERTY"], [33, 2, 1, "", "OWL_BOTTOM_OBJECT_PROPERTY"], [33, 2, 1, "", "OWL_CLASS"], [33, 2, 1, "", "OWL_NAMED_INDIVIDUAL"], [33, 2, 1, "", "OWL_NOTHING"], [33, 2, 1, "", "OWL_THING"], [33, 2, 1, "", "OWL_TOP_DATA_PROPERTY"], [33, 2, 1, "", "OWL_TOP_OBJECT_PROPERTY"], [33, 2, 1, "", "RDFS_LITERAL"]], "owlapy.vocab.XSDVocabulary": [[33, 2, 1, "", "BOOLEAN"], [33, 2, 1, "", "DATE"], [33, 2, 1, "", "DATE_TIME"], [33, 2, 1, "", "DATE_TIME_STAMP"], [33, 2, 1, "", "DECIMAL"], [33, 2, 1, "", "DOUBLE"], [33, 2, 1, "", "DURATION"], [33, 2, 1, "", "FLOAT"], [33, 2, 1, "", "INTEGER"], [33, 2, 1, "", "LONG"], [33, 2, 1, "", "STRING"]], "run": [[34, 6, 1, "", "get_default_arguments"], [34, 4, 1, "", "inference_types"], [34, 6, 1, "", "main"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "attribute", "Python attribute"], "3": ["py", "method", "Python method"], "4": ["py", "data", "Python data"], "5": ["py", "property", "Python property"], "6": ["py", "function", "Python function"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:attribute", "3": "py:method", "4": "py:data", "5": "py:property", "6": "py:function"}, "terms": {"": [2, 3, 26, 28, 30, 38, 41, 42], "0": [5, 8, 9, 12, 32, 36, 40], "01": 12, "02": 12, "07": 12, "1": [0, 3, 5, 6, 8, 9, 16, 17, 26, 32, 36, 37, 38, 39, 40, 42], "10": [32, 36, 37], "100": 36, "1000": [2, 3, 26, 36], "1001": [5, 7], "1002": 25, "1003": 25, "1004": 25, "1005": [20, 36], "1017": 36, "1019": 36, "1020": 36, "1023": 36, "1026": 36, "1029": 36, "103": 36, "1036": 36, "1042": 36, "1043": 36, "1045": 36, "1058": 36, "1059": 36, "106": 36, "1074": 36, "1076": 36, "1077": 36, "1083": 36, "1086": 36, "1089": 36, "1092": 36, "1097": 36, "11": 36, "110": 36, "1100": 36, "1102": 36, "1104": 36, "1109": 36, "111": 36, "1114": 36, "1117": 36, "112": 36, "1123": 36, "113": 36, "1130": 36, "114": 36, "1140": 36, "1150": 36, "1152": 36, "1157": 36, "116": 36, "1162": 36, "1164": 36, "1166": 36, "1167": 36, "1173": 36, "1186": 36, "1188": 36, "1190": 36, "1191": 36, "12": 36, "1202": 36, "1209": 36, "1229": 36, "124": 36, "1247": 36, "125": 36, "126": 36, "1260": 36, "1262": 36, "1263": 36, "1267": 36, "1270": 36, "1271": 36, "128": 36, "129": 36, "13": 37, "130": 36, "131": 36, "1312": 36, "1316": 36, "1320": 36, "133": 36, "1334": 36, "1346": 36, "1349": 36, "136": 36, "1364": 36, "138": 36, "141": 36, "142": 36, "144": 36, "1453": 36, "1459": 36, "1467": 36, "147": 36, "148": 36, "150": 36, "1506": 36, "151": 36, "152": 36, "1527": 36, "153": 36, "155": 36, "1558": 36, "157": 36, "158": 36, "1590": 36, "16": 36, "162": 36, "164": 36, "169": 36, "17": [36, 38], "170": 36, "171": 36, "173": 36, "174": 36, "175": 36, "176": 36, "179": 36, "182": 36, "184": 36, "185": 36, "187": 36, "189": 36, "19": 36, "190": 36, "193": 36, "195": 36, "196": 36, "1999": 12, "2": [0, 3, 4, 5, 7, 8, 10, 16, 17, 20, 22, 23, 25, 32, 36, 37, 40, 41, 42], "20": 36, "200": 36, "2000": 12, "2001": [12, 21], "2002": 12, "202": 36, "203": 36, "206": 36, "208": 36, "209": 36, "21": 36, "217": 36, "218": 36, "22": 12, "221": 36, "222": 36, "229": 36, "230": 36, "233": 36, "235": 36, "236": 36, "237": 36, "24": 36, "240": 36, "243": 36, "244": 36, "245": 36, "246": 36, "247": 36, "248": 36, "249": 36, "25": 36, "251": 36, "252": 36, "253": 36, "256": 36, "257": 36, "258": 36, "26": 36, "260": 36, "261": 36, "262": 36, "263": 36, "264": 36, "265": 36, "268": 36, "269": 36, "27": 36, "272": 36, "273": 36, "276": 36, "277": 36, "279": 36, "280": 36, "283": 36, "285": 36, "286": 36, "287": 36, "288": 36, "289": 36, "29": 36, "291": 36, "293": 36, "294": 36, "295": 36, "299": 36, "2nd": 38, "3": [32, 36, 37], "30": 36, "3001": [5, 6], "3002": [5, 6], "3003": [4, 5], "3004": [5, 8], "3005": [5, 8], "3006": [5, 8], "3007": [5, 8], "3008": [5, 8], "3009": [5, 8], "301": 36, "3010": [5, 8], "3011": [5, 8], "3012": [5, 8], "3013": [5, 8], "3014": [5, 8], "3015": [5, 8], "3016": [5, 8], "3017": [5, 8], "302": 36, "303": 36, "304": 36, "306": 36, "307": 36, "308": 36, "31": 36, "311": 36, "312": 36, "313": 36, "315": 36, "316": 36, "317": 36, "32": 36, "321": 36, "323": 36, "325": 36, "326": 36, "327": 36, "328": 36, "329": 36, "33": 36, "332": 36, "334": 36, "335": 36, "336": 36, "337": 36, "338": 36, "339": 36, "34": 36, "340": 36, "341": 36, "342": 36, "343": 36, "345": 36, "346": 36, "347": 36, "350": 36, "355": 36, "357": 36, "359": 36, "36": 36, "361": 36, "365": 36, "366": 36, "367": 36, "37": 36, "370": 36, "371": 36, "373": 36, "374": 36, "376": 36, "378": 36, "379": 36, "38": 36, "380": 36, "381": 36, "382": 36, "385": 36, "387": 36, "388": 36, "39": 36, "391": 36, "394": 36, "398": 36, "4": [32, 36], "40": 36, "400": 36, "4001": 18, "4002": 17, "4003": [5, 8], "4004": 17, "4005": 17, "4006": [5, 8], "4007": [5, 8], "4008": 21, "401": 36, "404": 36, "406": 36, "408": 36, "409": 36, "41": 36, "415": 36, "416": 36, "417": 36, "419": 36, "42": 36, "420": 36, "423": 36, "427": 36, "429": 36, "43": 36, "430": 36, "431": 36, "433": 36, "434": 36, "435": 36, "436": 36, "437": 36, "439": 36, "44": 36, "440": 36, "441": 36, "442": 36, "443": 36, "445": 36, "447": 36, "45": 36, "451": 36, "452": 36, "454": 36, "455": 36, "456": 36, "459": 36, "46": 36, "460": 36, "461": 36, "462": 36, "463": 36, "464": 36, "465": 36, "466": 36, "467": 36, "469": 36, "471": 36, "472": 36, "473": 36, "475": 36, "477": 36, "478": 36, "479": 36, "481": 36, "482": 36, "483": 36, "484": 36, "485": 36, "488": 36, "489": 36, "49": 36, "491": 36, "492": 36, "493": 36, "494": 36, "497": 36, "498": 36, "499": 36, "5": [32, 39], "50": 36, "502": 36, "505": 36, "506": 36, "508": 36, "509": 36, "510": 36, "511": 36, "513": 36, "514": 36, "515": 36, "518": 36, "519": 36, "52": 36, "521": 36, "522": 36, "523": 36, "525": 36, "526": 36, "530": 36, "534": 36, "536": 36, "538": 36, "54": 36, "542": 36, "546": 36, "548": 36, "55": 36, "550": 36, "552": 36, "554": 36, "555": 36, "558": 36, "559": 36, "56": 36, "560": 36, "561": 36, "562": 36, "563": 36, "564": 36, "566": 36, "569": 36, "57": 36, "570": 36, "572": 36, "574": 36, "575": 36, "576": 36, "578": 36, "579": 36, "58": 36, "580": 36, "581": 36, "582": 36, "583": 36, "584": 36, "587": 36, "588": 36, "59": 36, "591": 36, "5919": 36, "592": 36, "593": 36, "596": 36, "597": 36, "6": [32, 36], "601": 36, "605": 36, "607": 36, "609": 36, "610": 36, "616": 36, "619": 36, "62": 36, "620": 36, "621": 36, "623": 36, "625": 36, "627": 36, "628": 36, "629": 36, "63": 36, "631": 36, "635": 36, "636": 36, "639": 36, "642": 36, "643": 36, "645": 36, "647": 36, "648": 36, "651": 36, "652": 36, "656": 36, "66": 36, "662": 36, "663": 36, "666": 36, "667": 36, "67": 36, "670": 36, "674": 36, "675": 36, "678": 36, "679": 36, "68": 36, "683": 36, "684": 36, "689": 36, "69": 36, "692": 36, "693": 36, "695": 36, "696": 36, "697": 36, "700": 36, "701": 36, "705": 36, "706": 36, "709": 36, "71": 36, "711": 36, "712": 36, "714": 36, "716": 36, "719": 36, "720": 36, "723": 36, "727": 36, "731": 36, "734": 36, "736": 36, "737": 36, "738": 36, "741": 36, "742": 36, "746": 36, "75": 36, "750": 36, "751": 36, "752": 36, "753": 36, "754": 36, "756": 36, "758": 36, "76": 36, "762": 36, "763": 36, "765": 36, "766": 36, "767": 36, "77": 36, "770": 36, "771": 36, "778": 36, "779": 36, "78": 36, "780": 36, "787": 36, "789": 36, "79": 36, "792": 36, "794": 36, "795": 36, "798": 36, "799": 36, "80": 36, "801": 36, "803": 36, "804": 36, "805": 36, "807": 36, "81": 36, "811": 36, "813": 36, "816": 36, "818": 36, "82": 36, "822": 36, "823": 36, "825": 36, "828": 36, "83": 36, "830": 36, "831": 36, "834": 36, "835": 36, "837": 36, "84": 36, "840": 36, "841": 36, "844": 36, "845": 36, "85": 36, "853": 36, "859": 36, "86": 36, "861": 36, "864": 36, "865": 36, "867": 36, "870": 36, "873": 36, "876": 36, "878": 36, "887": 36, "89": 36, "890": 36, "894": 36, "9": [36, 39], "90": 36, "904": 36, "907": 36, "908": 36, "909": 36, "91": 36, "916": 36, "917": 36, "92": 36, "920": 36, "928": 36, "929": 36, "931": 36, "933": 36, "936": 36, "937": 36, "94": 36, "941": 36, "942": 36, "95": 36, "951": 36, "956": 36, "961": 36, "962": 36, "963": 36, "966": 36, "967": 36, "968": 36, "97": 36, "971": 36, "979": 36, "98": 36, "984": 36, "985": 36, "986": 36, "988": 36, "99": 36, "992": 36, "993": 36, "A": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 13, 15, 16, 17, 19, 21, 23, 24, 25, 26, 30, 32, 41], "As": [38, 39, 42], "BY": 42, "By": [25, 38, 40], "For": [5, 8, 13, 24, 25, 32, 38, 40, 41], "If": [0, 2, 3, 9, 19, 23, 26, 30, 36, 38, 40, 41], "In": [4, 5, 8, 10, 13, 16, 25, 36, 38, 40, 41, 42], "It": [1, 3, 11, 16, 24, 38, 40, 41, 42], "NOT": [9, 11], "On": [38, 41], "One": 32, "Such": [5, 8, 16], "That": [39, 40], "The": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 30, 32, 36, 38, 39, 40, 41, 42], "Then": 38, "There": 41, "These": [5, 8, 16], "To": [38, 39, 40, 41, 42], "With": 39, "_": 19, "__contains__": [9, 19, 32], "__eq__": [4, 5, 6, 8, 12, 14, 16, 17, 22, 23, 25, 32], "__getitem__": [9, 32], "__hash__": [4, 5, 6, 8, 12, 14, 16, 17, 22, 23, 25], "__init__": 36, "__iter__": 32, "__len__": [19, 23], "__lt__": [22, 32], "__module__": 31, "__repr__": [4, 5, 6, 8, 12, 14, 16, 17, 22, 23, 25], "__setitem__": 32, "__slots__": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 30, 32], "__weakref__": 12, "_annot": 16, "_c": 16, "_cardin": [5, 8], "_chain": 32, "_children_map": 19, "_cl": 16, "_class_express": 16, "_datarang": 16, "_datatyp": 16, "_declar": 24, "_domain": 16, "_ent_set": 19, "_entiti": 16, "_f": [5, 8], "_facet": [5, 8], "_facet_restrict": [5, 8], "_filler": [5, 8], "_first": 16, "_hasindex": 32, "_individu": 16, "_inverse_properti": 25, "_iri": [5, 7, 16, 18, 20, 23, 24, 25], "_is_noth": [5, 7], "_is_th": [5, 7], "_k": 32, "_liter": [5, 8], "_m": [0, 3, 23], "_manag": 23, "_max_siz": 32, "_n": [14, 32], "_namespac": 12, "_no_render_th": 30, "_o": 32, "_object": 16, "_oi": [0, 3], "_om": 23, "_ont": 24, "_onto": 23, "_ontology_iri": 23, "_operand": [4, 5, 6, 17], "_order": 32, "_p": 16, "_parents_map": 19, "_parents_map_tran": 19, "_prefix": 14, "_properti": [5, 8, 16], "_property_express": 16, "_r": 16, "_rang": 16, "_remaind": 12, "_second": 16, "_sfp": 30, "_simple_short_form_provid": 30, "_sm": 23, "_so": 27, "_sub_class": 16, "_sub_properti": 16, "_subject": 16, "_super_class": 16, "_super_properti": 16, "_t": [5, 8, 13], "_type": [5, 8, 19], "_u": 19, "_v": [5, 8, 32], "_valu": [5, 8, 16], "_version_iri": 23, "_vocabulari": [5, 33], "_world": [11, 23, 24], "_x": [5, 33], "a0": [5, 8], "a1": [5, 8, 16], "a2": 16, "abc": 30, "abcmeta": 30, "abl": [39, 41], "about": [35, 38, 39, 40, 41, 42], "abov": [38, 39], "abox": [23, 41], "abox_axioms_between_individu": 23, "abox_axioms_between_individuals_and_class": 23, "abstract": [4, 5, 8, 9, 11, 13, 16, 19, 21, 22, 23, 24, 25, 26, 28, 32, 36, 38, 39], "abstract_owl_ontologi": [1, 2, 3, 23, 24, 26, 36], "abstract_owl_ontology_manag": [3, 11, 24, 36], "abstract_owl_reason": [3, 19, 26, 36], "abstracthierarchi": 19, "abstractmethod": [13, 19], "abstractowlontologi": [0, 1, 2, 3, 23, 24, 26, 40], "abstractowlontologychang": [1, 3, 11, 24], "abstractowlontologymanag": [1, 3, 11, 24], "abstractowlreason": [2, 3, 19, 26, 40], "accept": 41, "access": [1, 3, 11, 13, 24, 38, 39], "accord": [5, 8, 42], "account": [2, 3, 26], "across": 28, "act": 16, "activ": 37, "actual": [11, 24, 25], "ad": [24, 26, 38, 41], "adapt": [32, 38, 41], "add": [0, 3, 23, 39, 41, 42], "add_axiom": [0, 3, 23, 38, 39], "addimport": 24, "addit": [39, 41], "affect": [16, 38, 41], "after": [39, 41], "ag": 38, "again": 40, "against": 30, "ai": [5, 8, 16], "aj": 16, "alch": [40, 41], "algorithm": 42, "all": [0, 2, 3, 5, 6, 8, 10, 16, 17, 18, 19, 23, 26, 28, 32, 38, 39, 40, 41, 42], "all_data_property_valu": [2, 3, 26], "allow": [16, 18, 19, 38, 40], "along": 16, "alreadi": [38, 39, 42], "also": [0, 1, 3, 11, 16, 21, 23, 24, 38, 39, 40, 41, 42], "altern": 19, "although": [1, 3, 11, 24, 39], "alwai": [18, 19, 40], "an": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 30, 31, 32, 35, 36, 37, 39, 40, 42], "analog": [16, 18, 21], "ancestor": [2, 3, 26], "ani": [2, 3, 16, 18, 26, 30, 36, 41], "anna": 40, "anna_typ": 40, "annot": [10, 15, 16, 21, 37], "annotation_assert": 16, "annotation_property_domain": 16, "annotation_property_rang": 16, "annotation_subproperti": 16, "annotationassert": 16, "annotationproperti": 16, "annotationpropertydomain": 16, "annotationpropertyrang": 16, "anonym": [2, 3, 4, 5, 15, 16, 20, 23, 26, 37, 41, 42], "anoth": [40, 41], "answer": 39, "anymor": 39, "anyth": 22, "ap": 16, "ap1": 16, "ap2": 16, "api": [1, 3, 11, 24, 26, 39, 41, 42], "apibind": 24, "apidocs_5": 24, "appear": [2, 3, 16, 26], "append": 9, "append_tripl": 9, "appli": [0, 1, 3, 11, 23, 24, 32, 41, 42], "applic": [1, 3, 16], "apply_chang": [1, 3, 11, 24], "appreci": 36, "appropri": 42, "ar": [0, 2, 3, 4, 5, 6, 8, 9, 10, 11, 16, 17, 18, 20, 21, 23, 25, 26, 30, 36, 37, 38, 39, 40, 41, 42], "aren": 25, "arg": [26, 31, 32], "argument": [23, 38, 40, 41], "aris": 38, "ariti": [5, 8, 16, 17, 18], "around": 39, "arr": 9, "arrai": 9, "as_anonymous_individu": 15, "as_confusion_matrix_queri": 9, "as_index": 32, "as_intersection_of_min_max": [5, 8], "as_iri": [12, 15], "as_liter": [15, 21], "as_object_union_of": [5, 8], "as_pairwise_axiom": 16, "as_queri": 9, "as_some_values_from": [5, 8], "as_str": 12, "assert": [16, 26], "assign": 38, "associ": [14, 18, 26, 30, 32, 38, 41], "assum": [1, 3, 11, 24, 40], "assumpt": 16, "asymmetr": 16, "asymmetri": 16, "asymmetricobjectproperti": 16, "atleast": [2, 3], "atom": [35, 41], "attribut": [25, 31, 36, 38, 41], "autom": 38, "automat": [31, 39, 41], "av": 16, "avail": [40, 41], "avali": 26, "awesom": 39, "axiom": [0, 2, 3, 4, 5, 6, 8, 13, 16, 17, 23, 26, 37, 39, 41], "axiomat": 16, "axioms_to_add": 41, "axioms_to_remov": 41, "b": [19, 32, 41], "base": [0, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 30, 32, 33, 37, 39, 40, 41], "basi": 38, "basic": [16, 35, 38, 40], "becaus": [39, 41], "befor": 41, "begin": 42, "being": [5, 8, 16, 18, 39], "belong": [0, 3, 23, 40], "below": [40, 41], "best": 32, "best_quality_valu": 32, "better": 36, "between": [38, 39, 40], "binari": 32, "bind": 16, "block": 10, "bool": [0, 2, 3, 4, 5, 7, 8, 9, 11, 12, 15, 16, 19, 21, 22, 23, 25, 26, 32, 33], "boolean": [4, 5, 6, 21, 33, 40, 41], "booleanowldatatyp": 21, "both": [16, 42], "bottom": [2, 3, 26], "bottomdataproperti": [2, 3, 26], "bottomobjectproperti": [2, 3, 26], "briefli": 41, "build": [10, 41], "built": [4, 5, 7, 18, 37], "bundl": 23, "c": [0, 2, 3, 5, 8, 9, 11, 16, 23, 26, 32, 41], "cach": [26, 32, 40], "cache_clear": 32, "cache_get": 32, "cache_info": 32, "cache_len": 32, "caglardemir8": 36, "calcul": 32, "call": [1, 3, 11, 24, 25, 31, 38], "callabl": [5, 30, 32, 33], "can": [0, 1, 2, 3, 5, 7, 8, 11, 15, 16, 17, 19, 21, 23, 24, 25, 26, 30, 32, 38, 39, 40, 41, 42], "cannot": [0, 3, 16, 23, 39], "capabl": 40, "car": 25, "cardin": [5, 8, 13, 32, 42], "case": [1, 3, 5, 8, 11, 13, 24, 28, 36, 39, 40, 42], "cast": 32, "cd": 12, "ce": [2, 3, 5, 8, 9, 16, 26, 32, 42], "ce1": [5, 6, 16], "ce2": 16, "cei": [5, 6, 16], "cej": 16, "cen": [5, 6, 16], "certain": 40, "chain": 41, "chang": [0, 1, 3, 11, 23, 24, 41], "changeappli": [1, 3, 11, 24], "check": [0, 3, 26, 30, 38, 39, 40, 41, 42], "child": [19, 38, 42], "child_class": 38, "child_class_declaration_axiom": 38, "children": [19, 28], "choic": 37, "choos": 39, "cl": [32, 39], "class": [10, 31, 35, 37, 41], "class_assert": 16, "class_assertion_axiom": 38, "class_cach": 26, "class_cnt": 9, "class_express": [0, 2, 3, 9, 11, 16, 19, 23, 26, 28, 29, 32, 36, 38, 39, 40, 42], "class_length": 32, "classassert": [2, 3, 16, 26], "classconstruct": 23, "classes_in_signatur": [0, 3, 23, 39], "classexpress": [4, 5], "classhierarchi": 19, "classmethod": 19, "classvar": 32, "clean": 32, "clear": 32, "clone": 37, "closur": [2, 3, 26], "cls_": 16, "cnt": 9, "code": [5, 8, 38, 39, 41], "coincid": [12, 16], "collect": [0, 3, 13, 23], "com": [36, 37, 38, 39, 40, 41, 42], "combin": 32, "combine_nary_express": 32, "come": [16, 41], "commit": 36, "commut": 32, "compar": 41, "complement": [4, 5, 7, 17, 32], "complement_of_data_rang": 17, "complex": [0, 3, 16, 23, 35, 37, 40, 41], "compon": [32, 40], "comput": 38, "concept": [23, 32, 38, 41, 42], "concept_reduc": 32, "concept_reducer_properti": 32, "conceptoperandsort": 32, "concret": 38, "conda": 37, "condit": [4, 5], "configur": [22, 30], "conjunct": [5, 8, 32], "connect": [5, 8, 16, 25], "consid": [25, 40, 41], "consider": 40, "consist": [0, 3, 5, 8, 12, 21, 23, 26, 39], "constant": [5, 8, 13, 32], "constitut": 10, "construct": [16, 30, 37, 38, 41, 42], "constructor": 29, "contact": [36, 37], "contain": [0, 2, 3, 5, 6, 8, 9, 11, 16, 17, 18, 19, 23, 26, 32, 38, 39, 40, 42], "contains_named_equivalent_class": 16, "contains_owl_noth": 16, "contains_owl_th": 16, "content": 38, "context": 32, "continu": 41, "contribut": 35, "conveni": [0, 1, 3, 5, 8, 11, 23, 24, 26, 40, 42], "convers": [9, 39], "convert": [11, 27, 32, 35, 36, 37, 38], "copi": 38, "correct": 42, "correspond": [12, 25], "could": 16, "count": [9, 11, 32, 42], "counterpart": 37, "cover": [16, 36, 40, 41], "coverag": 35, "creat": [1, 3, 11, 12, 23, 24, 29, 36, 37, 38, 39, 40, 41, 42], "create_ontologi": [1, 3, 11, 24], "current": [31, 36, 37], "current_vari": 9, "cwa": 40, "d": [2, 3, 5, 8, 26, 41], "data": [0, 2, 3, 5, 8, 10, 13, 16, 17, 18, 19, 21, 23, 25, 26, 32, 35, 37, 41], "data_all_values_length": 32, "data_cardinality_length": 32, "data_complement_length": 32, "data_has_value_length": 32, "data_intersection_length": 32, "data_one_of_length": 32, "data_properti": 25, "data_properties_in_signatur": [0, 3, 23], "data_property_domain": [2, 3, 16, 26], "data_property_domain_axiom": [0, 3, 23], "data_property_length": 32, "data_property_rang": [2, 3, 16], "data_property_range_axiom": [0, 3, 23], "data_property_valu": [2, 3, 26, 40], "data_rang": 17, "data_some_values_length": 32, "data_subproperti": 16, "data_union_length": 32, "dataallvaluesfrom": [5, 8, 16], "datacomplementof": [5, 8, 17], "dataexactcardin": 5, "datahasvalu": [5, 8], "dataintersectionof": 17, "datamaxcardin": [5, 8, 16], "datamincardin": [5, 8], "dataoneof": [5, 8, 17], "datapropertyassert": [2, 3, 16, 26], "datapropertycomplementof": [2, 3, 26], "datapropertydomain": 16, "datapropertyrang": 16, "datarang": [16, 17], "dataset": 40, "datasomevaluesfrom": [2, 3, 5, 8, 16, 26], "datatyp": [2, 3, 5, 8, 10, 16, 17, 18, 21, 26, 29, 32], "datatype_definit": 16, "datatype_length": 32, "datatype_restrict": [5, 8], "datatypedefinit": 16, "datatypepropertyhierarchi": 19, "datatyperestrict": [5, 8, 17], "dataunionof": 17, "date": [21, 33], "date_tim": 33, "date_time_stamp": 33, "dateowldatatyp": 21, "datetim": [21, 33], "datetimeowldatatyp": 21, "datetimestamp": 33, "de": 37, "debug": 30, "decid": 41, "decim": 33, "declar": [16, 24, 32, 38], "deduc": 41, "def": 32, "default": [23, 26, 28, 32, 37, 38, 39, 40], "defin": [10, 16, 32, 38, 40, 41], "definit": [16, 25, 41], "deleg": 41, "denot": [16, 18, 21], "depend": [16, 26, 31, 32, 40, 41], "deploi": 24, "deprec": 12, "deriv": 16, "descend": [2, 3, 26], "describ": [25, 36, 40], "descript": [28, 34, 37], "desir": 26, "detach": 31, "determin": [0, 3, 4, 5, 7, 8, 12, 23, 25, 26], "develop": 41, "diagram": 42, "dice": 37, "dict": [9, 30], "dictionari": 30, "differ": [0, 2, 3, 5, 8, 16, 18, 23, 25, 26, 30, 38, 39, 40, 41], "different_individu": [2, 3, 26], "differenti": 39, "differentindividu": [2, 3, 16, 26], "direct": [2, 3, 19, 26, 40, 41], "directclassassert": [2, 3, 26], "directli": [0, 3, 23, 42], "directori": [26, 38, 42], "directsubclassof": [2, 3, 26], "directsubdatapropertyof": [2, 3, 26], "directsubobjectpropertyof": [2, 3, 26], "disjoint": [2, 3, 16, 26, 41], "disjoint_class": [2, 3, 16, 26, 41], "disjoint_data_properti": [2, 3, 16, 26], "disjoint_object_properti": [2, 3, 16, 26], "disjoint_union_of_class_express": 16, "disjointclass": [0, 3, 16, 23], "disjointdataproperti": 16, "disjointobjectproperti": 16, "disjointunion": 16, "disjunct": 32, "distinct": [16, 42], "distribut": 41, "dl": [5, 8, 20, 30, 35], "dl_express": [11, 28], "dl_grammar": 28, "dl_to_owl_express": [11, 28, 42], "dlparser": 28, "dlrender": 30, "dlsyntaxobjectrender": 30, "dlsyntaxpars": 28, "do": [23, 38, 39, 40], "doc": 39, "document": [1, 3, 11, 14, 23, 24, 31, 40, 41, 42], "document_iri": [0, 3, 23], "doe": [0, 3, 4, 5, 7, 35, 38, 40, 41, 42], "doesn": [16, 23], "domain": [2, 3, 16, 26, 38, 40, 41, 42], "don": [39, 41], "done": [38, 39], "doubl": [21, 33], "doubleowldatatyp": 21, "down": 31, "download_external_fil": 31, "downward": 19, "dp": [2, 3, 26], "dp_assertion_axiom": 38, "dpe": [5, 8, 16], "dpe1": [5, 8, 16], "dpe2": 16, "dpei": [5, 8, 16], "dpej": 16, "dpen": [5, 8, 16], "dr": [5, 8, 16, 17], "dr1": 17, "dri": 17, "drn": 17, "dt": [5, 8, 16], "due": 40, "durat": [21, 33], "durationowldatatyp": 21, "dure": [22, 30], "e": [2, 3, 4, 5, 6, 8, 9, 13, 16, 17, 22, 25, 26, 27, 30, 32, 37, 38, 41], "each": [2, 3, 5, 8, 16, 17, 18, 21, 26, 32, 38, 40, 41], "earlier": 39, "easi": 42, "easili": 41, "either": [15, 16, 25, 39], "element": [9, 14, 32], "els": [2, 3, 23, 26, 40], "empti": [0, 1, 2, 3, 11, 23, 24, 26], "enabl": 41, "end": 40, "endpoint": 30, "ensur": 32, "entail": [2, 3, 26, 41], "entiti": [2, 3, 9, 11, 16, 18, 19, 20, 22, 23, 26, 27, 30, 37, 38, 42], "enum": [5, 33], "enumer": [5, 8, 33], "enumeration_of_individu": [5, 8], "enumeration_of_liter": [5, 8], "environ": 41, "equal": [0, 3, 12, 16, 17, 23], "equival": [0, 2, 3, 4, 5, 6, 7, 8, 13, 16, 17, 23, 26, 40, 41], "equivalent_class": [2, 3, 16, 26, 40, 41], "equivalent_classes_axiom": [0, 3, 23], "equivalent_data_properti": [2, 3, 16, 26], "equivalent_object_properti": [2, 3, 16, 26, 40, 41], "equivalent_to_haschild": 40, "equivalentclass": [0, 2, 3, 16, 23, 26], "equivalentdataproperti": [2, 3, 16, 26], "equivalentobjectproperti": [2, 3, 16, 26], "etc": [22, 32, 40], "evaluateddescriptionset": 32, "even": 28, "ever": 39, "everi": [37, 38, 40, 41, 42], "evolv": 38, "exact": [5, 8], "exact_cardin": [5, 8], "exactli": [5, 8, 16], "exampl": [2, 3, 9, 11, 22, 24, 25, 30, 32, 35, 36, 38, 40, 42], "example_reason": 41, "except": 32, "exclud": [16, 23], "exclus": 29, "execut": [39, 40], "exist": [9, 11, 16, 19], "existenti": [5, 8, 16], "existential_quantification_2": [5, 8], "expect": [1, 3, 11, 24], "explain": 41, "explan": 41, "explicitli": [5, 8, 16, 41], "explor": 42, "express": [0, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 16, 22, 23, 25, 26, 27, 28, 32, 35, 37, 38, 40, 41], "expression_str": [22, 28], "expressionop": 16, "extens": [5, 8, 14, 16], "extra": [39, 40], "f": [39, 41], "f1": [5, 8], "facet": [5, 8, 33], "facet_restrict": [5, 8], "fact": [40, 41], "factori": 19, "fals": [2, 3, 9, 11, 12, 19, 23, 26, 30, 32, 40, 41], "famili": [38, 39, 40, 42], "familiar": 40, "fast": 26, "faster": 40, "fastinstancecheckerreason": [40, 41], "father": [38, 39, 40], "feel": 36, "femal": 42, "fi": [5, 8], "fic": 41, "field": [26, 32], "file": [11, 24, 26, 38], "filler": [5, 8, 13, 42], "filter": [9, 11], "final": [0, 3, 4, 5, 6, 7, 8, 12, 14, 17, 18, 20, 21, 25, 33, 38], "find": [35, 36, 41, 42], "first": [16, 38, 40, 41], "firstli": 38, "float": [21, 32, 33], "fn": [5, 8], "focu": 37, "folder": [36, 39], "follow": [16, 28, 32, 38, 40, 41, 42], "for_all_de_morgan": [9, 11], "foral": 9, "foralldemorgan": 9, "form": [4, 5, 7, 8, 16, 21, 22, 25, 30, 32], "formal": [4, 5, 38], "format": [9, 26, 42], "former": [16, 18], "found": 30, "four": 42, "fraction": 42, "fraction_digit": [5, 33], "frag": 9, "framework": [36, 40], "free": [36, 39], "freed": 39, "frequent": 38, "from": [2, 3, 9, 11, 16, 20, 23, 26, 30, 31, 32, 37, 38, 39, 40, 41, 42], "from_str": [5, 33], "fromowlready2": 23, "ftp_link": 31, "full": [32, 40, 41], "func": 32, "function": [16, 25, 26, 35, 37, 39, 40, 41], "functional_object_properti": 16, "functionaldataproperti": 16, "functionalobjectproperti": 16, "functool": 32, "fundament": [10, 16], "further": [35, 40], "g": [4, 5, 6, 8, 13, 16, 17, 25, 30, 32, 41], "gain": 38, "gap": 37, "gener": [0, 3, 5, 8, 9, 11, 13, 16, 19, 23, 26, 30, 31, 32, 36], "general_class_axiom": [0, 3, 23], "generate_and_save_inferred_class_assertion_axiom": 26, "generic_visit": 28, "get": [0, 1, 2, 3, 4, 5, 6, 7, 8, 13, 16, 17, 18, 20, 21, 23, 24, 25, 26, 36, 38, 40, 41], "get_abox_axiom": 23, "get_bottom_ent": 19, "get_cardin": [5, 8, 13], "get_class_express": 16, "get_class_nnf": 32, "get_data_rang": 17, "get_datarang": 16, "get_datatyp": [5, 8, 16, 21], "get_default": 32, "get_default_argu": 34, "get_default_document_iri": 23, "get_domain": 16, "get_ent": 16, "get_expression_length": 32, "get_facet": [5, 8], "get_facet_restrict": [5, 8], "get_facet_valu": [5, 8], "get_fil": [5, 8, 13], "get_first_properti": 16, "get_import_declar": 24, "get_individu": 16, "get_instances_from_owl_class": 26, "get_invers": 25, "get_inverse_properti": 25, "get_liter": 21, "get_named_properti": 25, "get_namespac": 12, "get_nnf": [4, 5, 7], "get_object": 16, "get_object_complement_of": [4, 5, 7], "get_ontologi": [1, 3], "get_ontology_id": [0, 3, 23], "get_ontology_iri": 23, "get_operand": [4, 5], "get_original_iri": 23, "get_owl_class": 16, "get_owl_disjoint_classes_axiom": 16, "get_owl_equivalent_classes_axiom": 16, "get_owl_ontology_manag": [0, 1, 3, 11, 23, 24], "get_owlapi_manag": 24, "get_owlapi_ontologi": 23, "get_properti": [5, 8, 16], "get_property_express": 16, "get_rang": 16, "get_remaind": 12, "get_root_ontologi": [2, 3, 26], "get_second_properti": 16, "get_signatur": 23, "get_sub_class": 16, "get_sub_properti": 16, "get_subject": 16, "get_super_class": 16, "get_super_properti": 16, "get_tbox_axiom": 23, "get_top_ent": 19, "get_top_level_cnf": 32, "get_top_level_dnf": 32, "get_valu": 16, "get_vari": 9, "get_version_iri": 23, "git": 37, "github": [24, 36, 37], "give": [40, 41], "given": [2, 3, 19, 20, 26, 30, 39, 41], "gmail": 36, "go": 39, "goal": 40, "good": 36, "grammar": 28, "graph": 37, "group": [32, 37, 42], "grouping_var": 9, "guid": [38, 39, 40, 41], "h": 41, "ha": [0, 1, 3, 5, 8, 11, 17, 22, 23, 24, 32, 40, 41], "handi": 41, "handl": [38, 39], "has_at_least_one_child": 42, "has_consistent_ontologi": [26, 39], "hasag": 38, "hasage_dp": 38, "hasage_dp_declaration_axiom": 38, "hascardin": [5, 8, 13], "haschild": [40, 42], "haschild_domain": 40, "haschild_rang": 40, "haschild_sub_properti": 40, "hasfil": [5, 8, 13], "hasindex": 32, "hasiri": [13, 18, 22, 24], "haskei": 16, "hasoperand": [4, 5, 6, 8, 13, 16, 17], "haspar": 38, "hasparent_op": 38, "hasparent_op_declaration_axiom": 38, "haspart": 25, "hasvalu": [5, 8], "have": [0, 1, 3, 11, 13, 23, 24, 35, 36, 38, 39, 40, 41, 42], "having_condit": 9, "heinz": 38, "help": 40, "helper": 9, "here": [38, 40, 41, 42], "hermit": [26, 39, 40, 41], "hide": 31, "hierarch": 42, "hierarchi": [16, 19, 40], "hierarchy_down": 19, "high": 25, "holder": 32, "host": 31, "how": [0, 3, 23, 35, 38, 39, 40, 41], "howev": [39, 42], "html": 24, "http": [4, 5, 6, 7, 8, 9, 11, 12, 16, 17, 18, 20, 21, 24, 25, 28, 30, 37, 38, 39, 40, 42], "i": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 28, 30, 31, 32, 35, 36, 38, 39, 40, 41, 42], "i1": 25, "i2": 25, "id": 23, "idea": [38, 41], "identifi": [0, 1, 3, 10, 11, 14, 16, 20, 23, 24, 37], "ignor": 19, "impl": 32, "implement": [1, 3, 11, 24, 28, 38, 40, 41], "implementor": 39, "impli": 16, "import": [2, 3, 16, 23, 24, 26, 31, 38, 39, 40, 42], "import_declar": 24, "import_iri": 24, "includ": [0, 3, 16, 21, 23, 37], "include_imports_closur": 23, "inclus": 29, "incomplet": [26, 40], "ind": [2, 3, 26, 38, 39, 40], "ind2": [2, 3], "ind_cnt": 9, "ind_data_properti": [2, 3, 40], "ind_object_properti": [2, 3, 40], "independ": 38, "index": [32, 38], "indirect": [2, 3, 26], "individu": [0, 2, 3, 4, 5, 6, 7, 8, 10, 13, 15, 16, 17, 18, 20, 21, 23, 25, 26, 37, 38, 39, 40, 41, 42], "individual_equ": 16, "individual_inequ": 16, "individual_value_restrict": [5, 8], "individuals_in_signatur": [0, 3, 23, 38, 40], "inequ": 16, "infer": [26, 38, 39, 41], "infer_axiom": [26, 39], "infer_axioms_and_sav": 26, "infer_data_property_valu": 41, "infer_property_valu": 41, "inference_typ": [26, 34], "inference_types_map": 26, "inferred_axiom": 26, "inferredclassassertionaxiomgener": [26, 34], "inferreddatapropertycharacteristicaxiomgener": 26, "inferreddisjointclassesaxiomgener": 26, "inferredequivalentclassaxiomgener": 26, "inferredequivalentdatapropertiesaxiomgener": 26, "inferredequivalentobjectpropertyaxiomgener": 26, "inferredinverseobjectpropertiesaxiomgener": 26, "inferredobjectpropertycharacteristicaxiomgener": 26, "inferredsubclassaxiomgener": [26, 34], "inferredsubdatapropertyaxiomgener": 26, "inferredsubobjectpropertyaxiomgener": 26, "info": 19, "inform": [23, 30, 37], "inherit": [32, 39, 40], "init": 27, "initi": [31, 40, 41], "inplac": 23, "insid": [35, 41], "inspect": 38, "instal": [35, 41], "instanc": [1, 2, 3, 4, 5, 6, 8, 9, 11, 16, 23, 24, 26, 30, 32, 35, 38, 39, 41], "instanti": 41, "instead": [9, 11, 38, 40], "int": [2, 3, 5, 8, 9, 13, 21, 23, 26, 28, 32], "integ": [5, 8, 13, 21, 32, 33, 38], "integerowldatatyp": 21, "intend": 39, "interchang": 41, "interfac": [5, 8, 13, 15, 16, 22, 25, 32, 37], "intern": 31, "interpret": [5, 8], "intersect": [5, 6, 17, 32], "intersection_of_class_express": [5, 6], "intersection_of_data_rang": 17, "introduc": 39, "inv": 25, "invers": [16, 25, 32], "inverse_object_properti": 25, "inverse_object_properties_2": 16, "inversefunctionalobjectproperti": 16, "inverseobjectproperti": 16, "inverseof": 25, "io": 24, "ir": 10, "iri": [0, 1, 3, 5, 7, 11, 13, 15, 16, 18, 20, 22, 23, 24, 25, 28, 30, 36, 38, 40, 42], "irreflex": 16, "irreflexive_object_properti": 16, "irreflexiveobjectproperti": 16, "is_annot": 16, "is_annotation_axiom": 16, "is_anonym": [0, 3, 22, 23], "is_boolean": 21, "is_child_of": 19, "is_dat": 21, "is_data_property_express": 25, "is_data_restrict": [5, 8], "is_datetim": 21, "is_doubl": 21, "is_dur": 21, "is_entail": 26, "is_integ": 21, "is_liter": [15, 21], "is_logical_axiom": 16, "is_modifi": 23, "is_noth": 12, "is_object_property_express": 25, "is_object_restrict": [5, 8], "is_owl_noth": [4, 5, 7], "is_owl_th": [4, 5, 7], "is_owl_top_data_properti": 25, "is_owl_top_object_properti": 25, "is_parent_of": 19, "is_reserved_vocabulari": 12, "is_satisfi": 26, "is_str": 21, "is_sub_property_of": 19, "is_subclass_of": 19, "is_th": 12, "isn": 39, "isol": 38, "ispartof": 25, "issu": [30, 36, 41], "item": [9, 19, 32], "iter": [0, 2, 3, 4, 5, 6, 8, 9, 11, 13, 16, 17, 19, 23, 26, 30, 32, 39, 40], "iter_count": 32, "its": [0, 1, 2, 3, 11, 16, 22, 23, 24, 26, 37, 40, 41], "itself": 16, "j": [2, 3, 16, 26, 41], "jar": 31, "java": [27, 31, 37, 39, 40, 41], "jdk": 41, "jfact": [39, 40], "jpype": [31, 39], "jre": 41, "just": [1, 3, 11, 24, 39, 41, 42], "jvm": [31, 39], "k": 41, "keep": [39, 40], "kei": [16, 30, 32], "keyerror": 32, "kg": [38, 39, 40], "kind": [16, 18], "kit": 41, "know": [36, 41], "knowledg": [2, 3, 25, 26, 37, 38, 41], "kt": 32, "kwarg": 32, "l": [2, 3, 26], "label": [2, 3, 26], "lambda": 32, "languag": [14, 21, 37], "larger": 16, "last": 9, "latter": [16, 38], "lead": 30, "learn": [37, 38, 42], "least": [5, 6, 8, 17, 25, 42], "leav": [19, 28], "length": [5, 32, 33], "let": [2, 3, 26, 38, 40, 42], "level": [16, 25, 32, 41], "lexic": 21, "librari": [36, 37, 39, 40, 42], "licens": 37, "like": [37, 39, 40, 41, 42], "limit": [2, 3, 26, 40], "line": 38, "link": 32, "linux": 41, "list": [9, 16, 26, 27, 28, 31, 32, 37, 38, 40, 41], "liter": [2, 3, 5, 8, 15, 16, 17, 18, 21, 25, 26, 30, 37, 38, 40, 41], "literal_17": 38, "literal_value_restrict": [5, 8], "load": [1, 2, 3, 11, 23, 24, 26, 35, 39], "load_ontologi": [1, 3, 11, 24, 38, 39, 40], "locat": [0, 3, 23], "lock": 32, "logger": [2, 23, 26], "logic": [10, 16, 28, 37, 39], "long": [33, 39], "longer": 39, "look": 36, "lookup_nam": 32, "loos": [37, 39], "low": 41, "lru": 32, "lru_cach": 32, "lrucach": 32, "lt": [5, 8, 16], "lt1": [5, 8], "lti": [5, 8], "ltn": [5, 8], "m": [16, 28], "machin": [31, 37, 38, 39, 41], "maco": 41, "made": [38, 40, 41, 42], "mai": [0, 3, 23, 38, 40, 41], "main": [1, 3, 11, 16, 18, 24, 34, 40, 42], "maintain": 37, "make": [28, 38, 39, 40, 41], "male": [39, 40, 42], "male_equivalent_class": 40, "male_individu": 40, "male_sub_class": 40, "male_super_class": 40, "manag": [0, 1, 3, 11, 23, 24, 26, 27, 37, 38, 39, 40, 41], "manchest": [28, 30, 35, 37], "manchester_express": [11, 28], "manchester_grammar": 28, "manchester_to_owl_express": [11, 28, 42], "manchesterowlsyntaxowlobjectrender": 30, "manchesterowlsyntaxpars": 28, "manchesterpars": 28, "manchesterrender": 30, "mandat": 24, "manipul": 37, "manual": 39, "manuscript": 36, "map": [1, 3, 9, 11, 19, 23, 24, 27, 30, 32, 39], "map_": 27, "map_concept": 23, "map_datarang": 23, "map_object": 23, "mapper": [23, 26, 30, 39, 40], "marker": 15, "markup": 14, "match": [0, 3, 23, 30], "max": [5, 8, 29, 42], "max_": 29, "max_exclus": [5, 33], "max_inclus": [5, 33], "max_length": [5, 33], "max_siz": 32, "maximum": [5, 8], "maximum_cardin": [5, 8], "maxsiz": 32, "mayb": 26, "maybe_add": 32, "mean": [16, 38, 39, 40], "meaning": 32, "measur": 32, "memori": [38, 40], "mention": [39, 41], "merg": 42, "meta": 13, "meta_class": [4, 5, 6, 8, 11, 16, 17, 18, 22, 24, 36], "method": [0, 1, 3, 4, 5, 7, 8, 11, 14, 22, 23, 24, 26, 28, 31, 38, 39, 40, 41, 42], "might": [24, 32], "min": [5, 8, 29, 42], "min_": 29, "min_exclus": [5, 33], "min_inclus": [5, 33], "min_length": [5, 33], "mind": [39, 40, 41], "minimum": [5, 8], "minimum_cardin": [5, 8], "miss": [32, 36, 39, 40], "mit": 37, "modal_depth": 9, "model": [9, 23], "modif": [38, 39], "modifi": [0, 3, 23, 35], "modul": 39, "moment": 41, "more": [5, 8, 16, 19, 26, 32, 35, 38, 39, 40, 41, 42], "more_general_rol": 19, "more_special_rol": 19, "most": [5, 8, 16, 19, 28, 39, 41], "most_general_rol": 19, "most_special_rol": 19, "move": 31, "multipl": [5, 8, 16, 26, 38, 41], "must": [0, 2, 3, 5, 8, 16, 17, 20, 23, 26, 30], "mutagenesi": 40, "n": [2, 3, 5, 6, 8, 12, 14, 16, 17, 26, 28, 32, 37], "name": [2, 3, 4, 5, 7, 9, 10, 12, 14, 16, 20, 22, 25, 26, 32, 33, 36, 38, 40, 41, 42], "named_class": 16, "named_individu": [9, 11, 20], "namedindividu": [9, 11], "namespac": [11, 12, 27, 28, 33, 36, 38, 40, 42], "nari": [6, 32], "nary_boolean_express": [5, 8, 36], "ncname": 12, "necessari": 39, "necessarili": 25, "need": [0, 3, 23, 38, 39, 41, 42], "neg": [5, 8, 9, 11, 13, 16], "negat": [4, 5, 7, 32], "negation_default": [26, 40], "negative_data_property_assert": 16, "negative_exampl": [9, 11], "negative_object_property_assert": 16, "negativedatapropertyassert": 16, "negativeobjectpropertyassert": 16, "nest": [9, 11, 32], "new": [1, 3, 11, 16, 23, 24, 26, 39], "new_count_var": 9, "new_individual_vari": 9, "new_property_vari": 9, "newli": [1, 3, 11, 24], "next": [32, 38, 40], "nnf": [4, 5, 7, 32], "no_render_th": 30, "node": [2, 3, 26, 28, 32], "nodevisitor": 28, "nomin": [5, 8], "non": [2, 3, 5, 8, 13, 24, 26], "none": [0, 3, 9, 11, 12, 15, 16, 19, 21, 22, 23, 24, 26, 28, 30, 31, 32, 34], "nonneg": [5, 8], "normal": [4, 5, 7, 32], "notat": [37, 42], "note": [2, 3, 21, 25, 35, 40, 41], "noth": [0, 2, 3, 4, 5, 7, 12, 23, 26], "notic": [39, 42], "now": [28, 38, 40, 42], "number": [18, 32], "numeric_datatyp": 21, "o": [11, 22, 23, 30, 32], "obj": 32, "object": [0, 2, 3, 4, 5, 7, 8, 10, 13, 15, 16, 17, 18, 20, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 35, 41], "object_": [9, 16], "object_all_values_length": 32, "object_cardinality_length": 32, "object_complement_length": 32, "object_has_self_length": 32, "object_has_value_length": 32, "object_intersection_length": 32, "object_inverse_length": 32, "object_one_of_length": 32, "object_properti": [25, 40], "object_properties_in_signatur": [0, 3, 23, 38], "object_properties_valu": 40, "object_property_domain": [2, 3, 16, 26, 40, 41], "object_property_domain_axiom": [0, 3, 23], "object_property_length": 32, "object_property_rang": [2, 3, 16, 26, 40], "object_property_range_axiom": [0, 3, 23], "object_property_valu": [2, 3, 26, 40, 41], "object_some_values_length": 32, "object_subproperti": 16, "object_union_length": 32, "objectallvaluesfrom": [5, 8, 16], "objectcomplementof": [2, 3, 4, 5, 26], "objectexactcardin": [5, 8], "objecthasself": [5, 8, 16], "objecthasvalu": [5, 8], "objectintersectionof": [5, 6], "objectinverseof": [2, 3, 16, 25, 26], "objectmaxcardin": [5, 8], "objectmincardin": [5, 8, 42], "objectoneof": [5, 8], "objectproperti": 42, "objectpropertyassert": [2, 3, 16, 26], "objectpropertychain": 16, "objectpropertycomplementof": [2, 3, 26], "objectpropertydomain": 16, "objectpropertyhierarchi": 19, "objectpropertyrang": 16, "objectsomevaluesfrom": [2, 3, 5, 8, 16, 26], "objectunionof": [5, 6], "objet": 19, "obtain": [0, 3, 5, 8, 23, 25, 26], "offer": [35, 40], "often": 41, "onc": 39, "one": [1, 2, 3, 5, 6, 8, 11, 16, 17, 18, 24, 25, 32, 38, 39, 40, 41, 42], "oneof": [5, 8], "onli": [0, 2, 3, 5, 8, 9, 11, 16, 23, 25, 26, 39, 40, 41, 42], "only_nam": [26, 40, 41], "onto": [37, 38, 40], "ontolearn": [30, 37], "ontologi": [0, 1, 2, 3, 10, 11, 16, 20, 22, 23, 24, 26, 27, 35, 37, 39, 40, 42], "ontology_iri": 23, "ontologymanag": [11, 24, 38, 40], "ontosampl": 37, "op": [2, 3, 4, 5, 8, 16, 26, 40], "ope1": 16, "ope2": 16, "opei": 16, "opej": 16, "opem": 16, "open": [16, 36, 37], "openllet": [39, 40], "oper": [5, 32, 33, 41], "operand": [0, 3, 4, 5, 6, 8, 13, 16, 17, 23, 32], "operandsettransform": 32, "opt": 32, "optim": 38, "option": [23, 26, 30], "order": 32, "orderedowlobject": 32, "org": [4, 5, 6, 7, 8, 9, 11, 12, 16, 17, 18, 20, 21, 24, 25, 28, 30], "origin": [26, 41], "other": [4, 5, 6, 8, 12, 14, 16, 17, 22, 23, 25, 32, 38, 39, 40, 41, 42], "otherwis": [12, 15, 21, 26], "our": [36, 38, 40, 41], "out": 39, "output": 26, "output_format": 26, "output_path": 26, "over": [2, 3, 26, 30, 37, 39, 40], "overcom": 41, "owl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 35, 37, 38, 39, 40, 42], "owl2": [4, 5, 6, 7, 8, 9, 11, 16, 17, 18, 20, 21, 25, 28], "owl2sparqlconvert": 9, "owl_annot": [11, 12, 16, 21, 36], "owl_axiom": [0, 3, 11, 23, 26, 36, 38, 39], "owl_bottom_data_properti": 33, "owl_bottom_object_properti": 33, "owl_class": [5, 33, 36], "owl_data_rang": [2, 3, 4, 5, 8, 11, 18, 23, 28, 32, 36], "owl_datatyp": [5, 8, 11, 16, 21, 28, 36], "owl_datatype_max_exclusive_restrict": 29, "owl_datatype_max_inclusive_restrict": 29, "owl_datatype_min_exclusive_restrict": 29, "owl_datatype_min_inclusive_restrict": 29, "owl_datatype_min_max_exclusive_restrict": 29, "owl_datatype_min_max_inclusive_restrict": 29, "owl_expression_to_dl": [11, 30, 42], "owl_expression_to_manchest": [11, 30, 42], "owl_expression_to_sparql": [9, 11, 42], "owl_expression_to_sparql_with_confusion_matrix": [9, 11], "owl_hierarchi": 11, "owl_individu": [0, 2, 3, 5, 8, 9, 11, 16, 23, 26, 28, 36], "owl_liter": [2, 3, 5, 8, 11, 16, 26, 28, 36, 38], "owl_named_individu": 33, "owl_noth": 33, "owl_object": [0, 2, 3, 5, 7, 8, 9, 11, 15, 16, 17, 18, 20, 23, 25, 26, 28, 30, 32, 36], "owl_ontologi": [11, 24, 26, 36], "owl_ontology_manag": [11, 36, 38, 39, 40], "owl_properti": [0, 2, 3, 5, 8, 11, 16, 19, 23, 26, 28, 36, 38, 40, 42], "owl_reason": [11, 36, 39, 40], "owl_th": 33, "owl_top_data_properti": 33, "owl_top_object_properti": 33, "owlannot": [0, 3, 16, 23], "owlannotationassertionaxiom": 16, "owlannotationaxiom": 16, "owlannotationobject": 15, "owlannotationproperti": 16, "owlannotationpropertydomainaxiom": 16, "owlannotationpropertyrangeaxiom": 16, "owlannotationsubject": [12, 15, 16], "owlannotationvalu": [12, 15, 16, 21], "owlanonymousclassexpress": [4, 5, 8], "owlanonymousindividu": 16, "owlapi": [36, 38, 40, 41, 42], "owlapi_manag": 24, "owlapi_mapp": [11, 36], "owlapimapp": [27, 39], "owlasymmetricobjectpropertyaxiom": 16, "owlaxiom": [0, 3, 16, 23, 26, 39], "owlbooleanclassexpress": [4, 5, 6], "owlbottomdataproperti": 21, "owlbottomobjectproperti": 21, "owlc": 24, "owlcardinalityrestrict": [5, 8], "owlclass": [0, 2, 3, 5, 7, 16, 19, 23, 26, 28, 38, 39, 40, 42], "owlclassassertionaxiom": [16, 38], "owlclassaxiom": [0, 3, 16, 23], "owlclassexpress": [2, 3, 4, 5, 6, 7, 8, 9, 11, 16, 23, 26, 28, 32, 40], "owlclassexpressionlengthmetr": 32, "owldataallvaluesfrom": [5, 8], "owldatacardinalityrestrict": [5, 8, 28], "owldatacomplementof": 17, "owldataexactcardin": [5, 8], "owldatahasvalu": [5, 8, 28], "owldataintersectionof": 17, "owldatamaxcardin": [5, 8], "owldatamincardin": [5, 8], "owldataoneof": [5, 8, 28], "owldataproperti": [0, 2, 3, 19, 23, 25, 26, 28, 38], "owldatapropertyassertionaxiom": [16, 38], "owldatapropertyaxiom": 16, "owldatapropertycharacteristicaxiom": 16, "owldatapropertydomainaxiom": [0, 3, 16, 23], "owldatapropertyexpress": [5, 8, 16, 25], "owldatapropertyrangeaxiom": [0, 3, 16, 23], "owldatarang": [2, 3, 5, 8, 16, 17, 18, 23, 28, 32], "owldatarestrict": [5, 8], "owldatasomevaluesfrom": [5, 8], "owldatatyp": [5, 8, 16, 18, 21, 28], "owldatatypedefinitionaxiom": 16, "owldatatyperestrict": [5, 8, 28, 29], "owldataunionof": 17, "owldeclarationaxiom": [16, 38, 39], "owldifferentindividualsaxiom": 16, "owldisjointclassesaxiom": 16, "owldisjointdatapropertiesaxiom": 16, "owldisjointobjectpropertiesaxiom": 16, "owldisjointunionaxiom": 16, "owlent": [2, 3, 5, 7, 9, 16, 18, 20, 22, 25, 26, 30], "owlequivalentclassesaxiom": [0, 3, 16, 23, 38], "owlequivalentdatapropertiesaxiom": 16, "owlequivalentobjectpropertiesaxiom": 16, "owlfacet": [5, 8, 28, 33], "owlfacetrestrict": [5, 8, 28], "owlfunctionaldatapropertyaxiom": 16, "owlfunctionalobjectpropertyaxiom": 16, "owlhaskeyaxiom": 16, "owlhasvaluerestrict": [5, 8], "owlimportsdeclar": 24, "owlindividu": [5, 8, 16, 20], "owlindividualaxiom": 16, "owlinversefunctionalobjectpropertyaxiom": 16, "owlinverseobjectpropertiesaxiom": 16, "owlirreflexiveobjectpropertyaxiom": 16, "owlliter": [2, 3, 5, 8, 16, 21, 26, 28, 38, 40], "owllogicalaxiom": 16, "owlmanag": 24, "owlnamedindividu": [0, 2, 3, 9, 11, 20, 23, 26, 28, 40], "owlnamedobject": 22, "owlnaryaxiom": 16, "owlnarybooleanclassexpress": [5, 6], "owlnaryclassaxiom": 16, "owlnarydatarang": 17, "owlnaryindividualaxiom": 16, "owlnarypropertyaxiom": 16, "owlnegativedatapropertyassertionaxiom": 16, "owlnegativeobjectpropertyassertionaxiom": 16, "owlobject": [0, 3, 5, 8, 11, 15, 16, 17, 20, 22, 23, 25, 30, 32], "owlobjectallvaluesfrom": [5, 8, 9], "owlobjectcardinalityrestrict": [5, 8, 28, 32], "owlobjectcomplementof": [4, 5, 7], "owlobjectexactcardin": [5, 8], "owlobjecthasself": [5, 8, 28], "owlobjecthasvalu": [5, 8, 28], "owlobjectintersectionof": [5, 6, 8, 42], "owlobjectinverseof": 25, "owlobjectmaxcardin": [5, 8, 42], "owlobjectmincardin": [5, 8, 42], "owlobjectoneof": [5, 8, 28], "owlobjectpars": [22, 28], "owlobjectproperti": [0, 2, 3, 19, 23, 25, 26, 28, 38, 40, 42], "owlobjectpropertyassertionaxiom": [16, 38], "owlobjectpropertyaxiom": 16, "owlobjectpropertycharacteristicaxiom": 16, "owlobjectpropertydomainaxiom": [0, 3, 16, 23], "owlobjectpropertyexpress": [2, 3, 5, 8, 16, 25, 26, 28], "owlobjectpropertyrangeaxiom": [0, 3, 16, 23], "owlobjectrender": [22, 30], "owlobjectrestrict": [5, 8], "owlobjectsomevaluesfrom": [5, 8, 42], "owlobjectunionof": [5, 6, 32], "owlontologi": [0, 1, 3, 11, 23, 24, 38, 39], "owlontologyid": [0, 3, 23], "owlontologymanag": [0, 1, 3, 11, 23, 24, 38, 39], "owlproperti": [16, 23, 25], "owlpropertyassertionaxiom": 16, "owlpropertyaxiom": 16, "owlpropertydomainaxiom": 16, "owlpropertyexpress": [5, 8, 16, 25], "owlpropertyrang": [4, 5, 17], "owlpropertyrangeaxiom": 16, "owlquantifieddatarestrict": [5, 8, 28], "owlquantifiedobjectrestrict": [5, 8, 28, 32], "owlquantifiedrestrict": [5, 8], "owlrdfvocabulari": 33, "owlready2": [23, 38, 40, 41], "owlready2_facet_kei": 23, "owlreason": [2, 3, 26, 30, 39], "owlreflexiveobjectpropertyaxiom": 16, "owlrestrict": [5, 8], "owlsameindividualaxiom": 16, "owlsubannotationpropertyofaxiom": 16, "owlsubclassofaxiom": [16, 38], "owlsubdatapropertyofaxiom": 16, "owlsubobjectpropertyofaxiom": 16, "owlsubpropertyaxiom": 16, "owlsymmetricobjectpropertyaxiom": 16, "owltopdataproperti": 21, "owltopobjectproperti": 21, "owltransitiveobjectpropertyaxiom": 16, "owlunarypropertyaxiom": 16, "own": 41, "p": [2, 3, 5, 8, 23, 25, 26, 32, 41], "packag": [31, 35, 37, 39, 41], "paderborn": 37, "page": 36, "pair": [5, 8, 25, 32], "pairwis": 16, "panda": 21, "parallel": 38, "paramet": [0, 1, 2, 3, 5, 8, 9, 11, 13, 16, 19, 22, 23, 24, 26, 27, 28, 30, 31, 32, 41], "parameter": 32, "parent": [9, 19], "parent_var": 9, "pars": [21, 22, 28, 37, 42], "parse_boolean": 21, "parse_d": 21, "parse_datetim": 21, "parse_doubl": 21, "parse_dur": 21, "parse_express": [22, 28], "parse_integ": 21, "parse_str": 21, "parser": [11, 27, 36], "parsimoni": 28, "part": [25, 39, 42], "particular": [2, 3, 5, 8, 21, 26, 38, 41], "particularli": 41, "pass": [38, 42], "path": [11, 23, 24, 40], "pattern": [5, 9, 11, 33], "pcwa": 40, "pe": [2, 3, 23, 26], "peek": 9, "pellet": [39, 40, 41], "perfect": 37, "perform": [38, 39, 40], "person": 42, "pertain": 24, "pip3": 37, "plai": 39, "pleas": 36, "point": [1, 3, 11, 24, 36], "pop": 40, "posit": [9, 11, 16, 32], "positive_data_property_assert": 16, "positive_exampl": [9, 11], "positive_object_property_assert": 16, "possibl": [38, 39, 40, 41], "possibli": [0, 3, 23, 25], "potenti": [2, 3, 26], "power": [37, 40], "precis": 38, "predic": [9, 30], "prefer": 41, "prefix": 14, "present": 39, "prev": 32, "previou": [38, 41], "previous": 38, "print": [30, 38, 39, 40, 42], "problem": [9, 11], "proce": 40, "process": [9, 40], "program": 41, "project": [9, 11, 35, 37], "prop_cnt": 9, "properti": [0, 2, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 32, 33, 35, 37, 41], "properties_in_signatur": 23, "property_": 16, "property_cach": [26, 40], "property_express": 16, "protocol": 32, "provid": [11, 14, 22, 30, 36, 37, 38, 39, 40, 41], "publish": 37, "pull": 36, "purpos": [30, 31, 41], "py": [5, 36, 39], "pypi": 37, "python": [24, 27, 32, 35, 37, 38, 39, 40, 41], "quadstor": [11, 24, 38, 41], "qualifi": 14, "quantif": 16, "quantifi": [5, 8, 9, 11, 13], "queri": [9, 11, 19, 30, 37], "question": 35, "r": [5, 8, 9, 11, 32, 41], "r1": 41, "r2": 41, "rais": [1, 3, 11, 24], "rang": [2, 3, 5, 8, 13, 16, 17, 18, 23, 26, 37, 40, 41], "range_": 16, "rather": 18, "rdf": [2, 3, 12, 14, 16, 18, 21, 26, 33], "rdf_format": 23, "rdfs_liter": 33, "rdfxml": 23, "re": 28, "real": 41, "reason": [2, 3, 19, 26, 30, 35, 37, 38, 39], "recurs": 32, "reduc": 32, "reduct": 32, "refer": [14, 16, 18, 25, 36, 38, 39, 40, 41], "reflect": 41, "reflex": 16, "reflexive_object_properti": 16, "reflexiveobjectproperti": 16, "relat": [39, 41], "relationship": [38, 42], "relev": 41, "remaind": [5, 12, 33, 38], "remind": [5, 7, 12], "remov": [0, 3, 19, 23, 41], "remove_axiom": [0, 3, 23, 38], "render": [9, 11, 22, 27, 36, 37], "rendit": [22, 30], "replac": 16, "report": [32, 35], "repositori": 37, "repres": [0, 1, 3, 4, 5, 7, 8, 16, 17, 19, 20, 21, 22, 23, 24, 25, 28, 37, 38, 41, 42], "represent": [1, 3, 5, 7, 11, 13, 16, 18, 19, 20, 23, 24, 25, 35], "request": 36, "requir": [38, 40, 42], "research": 37, "reserv": [12, 20], "reset": 26, "reset_and_disable_cach": 26, "resolv": 24, "resourc": [35, 39], "respect": [2, 3, 4, 5, 26, 39], "restart": 39, "restrict": [5, 13, 18, 19, 25, 29, 32, 36, 42], "restrict_and_copi": 19, "restriction_liter": 29, "result": [2, 3, 5, 8, 17, 26, 28, 32, 41, 42], "retriev": [0, 2, 3, 23, 26, 30, 37, 40, 41], "return": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 30, 32, 39, 40, 41], "role": 19, "root": [2, 3, 9, 11, 19, 26, 32], "root_ontologi": 19, "root_vari": [9, 11], "roughli": 16, "rule": [30, 41], "run": [38, 41], "run_with_timeout": 32, "runtim": 41, "s_1": 42, "sai": [23, 38, 42], "said": [4, 5, 10, 42], "same": [2, 3, 16, 17, 26, 32, 38, 39, 40, 41], "same_individu": [2, 3, 26], "samea": [4, 5, 6, 8, 13, 16, 17], "sameindividu": [2, 3, 16, 26], "satisfi": [4, 5, 26], "save": [0, 3, 11, 23, 24, 26, 35, 37], "save_world": [11, 24, 38], "scenario": [39, 41], "schema": 12, "scienc": 37, "script": 41, "search": [0, 3, 23, 41], "second": [2, 3, 16, 26, 30, 38, 40, 42], "secondli": 38, "see": [0, 3, 19, 23, 38, 39, 42], "seen": [5, 8, 16], "select": 42, "self": [5, 8, 32, 39], "semant": [5, 8, 16], "semanticweb": 24, "sens": 28, "sentinel": 32, "separ": 38, "sequenc": [5, 8], "serv": [37, 38, 39, 40], "set": [0, 1, 2, 3, 4, 5, 7, 9, 10, 11, 16, 18, 19, 21, 23, 24, 25, 26, 31, 32, 40, 41], "set_short_form_provid": [22, 30], "sever": 38, "shall": 26, "share": 32, "short": [22, 30], "short_form_provid": [22, 30], "shortcut": [5, 8, 16], "shorten": [22, 30, 32], "should": [0, 1, 2, 3, 11, 12, 19, 21, 23, 24, 26, 32, 40, 41], "show": [38, 39, 40, 41, 42], "shut": 31, "shutdownjvm": 39, "sibl": 19, "side": 38, "signal": 32, "signatur": [0, 3, 10, 23, 26, 37, 38, 39, 40], "signific": 39, "similar": 16, "similarli": 41, "simp": [5, 8], "simpl": [13, 14, 30, 39, 40, 41, 42], "simpler": [5, 8], "simplest": 25, "simpli": [38, 42], "simplic": 41, "simplifi": [2, 3, 5, 8, 26, 32], "sinc": [0, 3, 20, 23], "singl": [0, 3, 23, 32], "singleton": [5, 8], "situat": [1, 3, 11, 24], "six": 42, "slightli": 40, "slot": 28, "small": 39, "so": [2, 3, 28, 38, 39, 41, 42], "softwar": 37, "some": [5, 8, 16, 25, 32, 38, 39, 40, 42], "some_new_class": 39, "somehow": 39, "someowlclass": 30, "sometim": [16, 38], "sort": [16, 32], "sortedset": 32, "sourc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 37], "space": [5, 8, 18, 21], "sparql": [9, 11, 30, 35, 37], "speak": [16, 40], "specif": [0, 3, 4, 5, 8, 16, 17, 19, 22, 23, 25, 30, 37, 38, 39, 41, 42], "specifi": [0, 1, 2, 3, 4, 5, 8, 11, 12, 23, 24, 26, 30, 40, 41, 42], "speech": 38, "speed": 40, "sphinx": 31, "sqlite3": [11, 24, 38], "stack_par": 9, "stack_vari": 9, "standard": [5, 8], "start": [12, 31, 36, 38, 39], "startjvm": [31, 39], "state": [11, 16, 24, 26, 41], "statement": [24, 38, 40], "static": [5, 12, 19, 27, 31, 32, 33, 39], "static_func": [11, 36, 39], "static_funct": 39, "statist": 32, "step": 38, "stmt": 36, "stop": 39, "stopjvm": [31, 39], "store": [30, 38, 40], "str": [1, 3, 5, 7, 9, 11, 12, 13, 14, 16, 18, 20, 21, 22, 23, 24, 25, 26, 28, 30, 31, 33], "stream": [2, 3, 16, 26, 27], "stream_obj": 27, "strict": [2, 3, 26], "strictli": 39, "strictsubclassof": [2, 3, 26], "strictsubdatapropertyof": [2, 3, 26], "strictsubobjectpropertyof": [2, 3, 26], "string": [1, 3, 5, 7, 11, 12, 13, 16, 18, 20, 21, 22, 24, 25, 28, 30, 33, 42], "stringowldatatyp": 21, "structur": [0, 3, 4, 5, 8, 23, 37, 38, 40, 42], "structural_reason": 40, "structuralreason": [26, 40], "style": 37, "sub": [0, 2, 3, 16, 19, 23, 26, 40, 41], "sub_class": [2, 3, 16, 19, 26, 40, 41], "sub_data_properti": [2, 3, 19, 26], "sub_object_properti": [2, 3, 19, 26, 40, 41], "sub_properti": [16, 19, 26, 40], "subannotationpropertyof": 16, "subclass": [0, 2, 3, 16, 19, 23, 26, 28, 40, 41], "subclass_axiom": 16, "subclassof": 16, "subdatapropertyof": 16, "subject": [2, 3, 9, 15, 16, 26, 40], "submodul": 35, "subobjectpropertyof": 16, "subproperti": [2, 3, 16, 26], "subsumpt": 41, "successfulli": [1, 3, 11, 24], "suitabl": 38, "super": [2, 3, 16, 19, 26, 41], "super_class": [2, 3, 16, 19, 26, 40, 41], "super_data_properti": [2, 3, 19, 26], "super_object_properti": [2, 3, 19, 26], "super_properti": [16, 19], "superclass": [19, 26, 40, 41], "support": [26, 40, 41], "suppos": 38, "sure": [28, 39], "symbolic_form": [5, 33], "symmetr": 16, "symmetri": 16, "symmetric_object_properti": 16, "symmetricobjectproperti": 16, "sync": [35, 40], "sync_reason": [40, 41], "synchron": [35, 40], "syncontologi": [23, 24, 26, 39, 40], "syncontologymanag": [24, 39], "syncreason": [26, 39, 40, 41], "synonym": 16, "syntact": [5, 8, 16], "syntax": [4, 5, 6, 7, 8, 9, 11, 12, 16, 17, 18, 20, 21, 25, 28, 30, 35, 37], "system": [25, 40], "t": [16, 23, 25, 30, 32, 39, 41], "tabl": 41, "tag": 21, "take": [2, 3, 26, 32, 36, 40], "taken": [2, 3, 26], "talk": 41, "target": 41, "tbox": [23, 41], "tbox_axiom": 23, "tell": 41, "temp": 26, "temp_owlapi": 37, "term": [10, 41], "test": [36, 38, 39, 41], "than": [16, 18, 26, 40], "thank": 39, "the_class": 27, "thei": [10, 16, 20, 21, 23, 38, 39, 41], "them": [14, 18, 26, 36, 38, 39, 40, 41], "themselv": [5, 8], "therefor": 41, "thi": [0, 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 16, 18, 19, 20, 21, 23, 24, 25, 26, 28, 30, 31, 32, 38, 39, 40, 41, 42], "thing": [2, 3, 4, 5, 7, 12, 16, 25, 26, 38, 39, 41, 42], "thingclass": 23, "third": 38, "those": [5, 8], "thread": 31, "three": 39, "through": [1, 3, 11, 24, 39, 42], "thu": [16, 18], "time": [2, 3, 16, 26, 38], "time_datatyp": 21, "timedelta": 21, "timeout": [2, 3, 26, 32], "tip": 42, "to_list": 27, "to_python": 21, "to_string_id": 22, "togeth": [2, 3, 23, 26, 40, 42], "toler": [1, 3, 11, 24], "too": [2, 3, 26], "toowlready2": 23, "top": [2, 3, 16, 26, 32], "topdataproperti": 25, "toplevelcnf": 32, "topleveldnf": 32, "topobjectproperti": 25, "topowldatatyp": 21, "total": [36, 42], "total_digit": [5, 33], "tr": [4, 5, 6, 7, 8, 9, 11, 16, 17, 18, 20, 21, 25, 28], "transfer": 41, "transform": [9, 11, 32], "transit": [16, 19], "transitive_object_properti": 16, "transitiveobjectproperti": 16, "translat": 30, "translating_short_form_endpoint": 30, "translating_short_form_provid": 30, "tri": 26, "tripl": [9, 30, 38], "triplestor": 30, "true": [2, 3, 4, 5, 7, 8, 9, 11, 12, 15, 19, 21, 23, 25, 26, 40, 41], "try": 32, "ttl": 26, "tupl": [5, 8, 17, 19], "turtl": 26, "two": [16, 38, 40, 41, 42], "type": [2, 3, 4, 5, 7, 8, 9, 13, 16, 19, 21, 23, 25, 26, 32, 38, 40, 41], "type_": [5, 8], "type_index": [0, 3, 4, 5, 6, 7, 8, 12, 17, 18, 20, 21, 25, 32], "typic": 32, "u": [16, 32, 40], "unari": [5, 8, 16], "unchang": 16, "unclear": [9, 11], "under": 40, "understood": [5, 7, 21], "uni": 37, "union": [5, 6, 8, 16, 17, 18, 32], "union_of_class_express": [5, 6], "union_of_data_rang": 17, "unionof": [5, 8], "uniqu": [10, 16, 32], "univers": [5, 8, 9, 11, 37, 38], "universal_quantif": [5, 8], "universal_quantification_2": [5, 8], "unsatisfi": [2, 3, 26], "unsatisfiable_class": 26, "unsuccessfulli": [1, 3, 11, 24], "until": [2, 3, 26], "up": [39, 40], "updat": 41, "update_isolated_ontologi": 41, "upfront": 42, "upon": [16, 40, 41, 42], "uri": [14, 15], "url": 24, "us": [0, 1, 2, 3, 5, 8, 9, 11, 14, 16, 18, 19, 20, 23, 24, 25, 26, 28, 30, 31, 32, 36, 37, 38, 39, 40, 41, 42], "usag": [35, 39], "usual": [2, 3, 10, 12, 26, 39], "util": [11, 36, 37], "v": 32, "valid": 40, "valu": [2, 3, 5, 8, 9, 11, 12, 13, 15, 16, 18, 21, 26, 30, 32, 38, 40, 41], "var": 9, "variabl": [9, 11, 32, 38, 40], "variable_ent": 9, "variablesmap": 9, "variou": 16, "veri": 40, "versa": [16, 39], "version": [0, 1, 3, 11, 23, 24, 37, 39], "version_iri": 23, "vi": [5, 8], "via": [0, 3, 23, 39], "vice": [16, 39], "virtual": [31, 39, 41], "visit": 28, "visit_abbreviated_iri": 28, "visit_boolean_liter": 28, "visit_cardinality_r": 28, "visit_class_express": 28, "visit_class_iri": 28, "visit_data_cardinality_r": 28, "visit_data_intersect": 28, "visit_data_parenthes": 28, "visit_data_primari": 28, "visit_data_property_iri": 28, "visit_data_some_only_r": 28, "visit_data_union": 28, "visit_data_value_r": 28, "visit_datatyp": 28, "visit_datatype_iri": 28, "visit_datatype_restrict": 28, "visit_date_liter": 28, "visit_datetime_liter": 28, "visit_decimal_liter": 28, "visit_duration_liter": 28, "visit_facet": 28, "visit_facet_restrict": 28, "visit_float_liter": 28, "visit_full_iri": 28, "visit_has_self": 28, "visit_individual_iri": 28, "visit_individual_list": 28, "visit_integer_liter": 28, "visit_intersect": 28, "visit_iri": 28, "visit_liter": 28, "visit_literal_list": 28, "visit_non_negative_integ": 28, "visit_object_properti": 28, "visit_object_property_iri": 28, "visit_parenthes": 28, "visit_primari": 28, "visit_quoted_str": 28, "visit_simple_iri": 28, "visit_some_only_r": 28, "visit_string_literal_languag": 28, "visit_string_literal_no_languag": 28, "visit_typed_liter": 28, "visit_union": 28, "visit_value_r": 28, "visited_children": 28, "visitor": 28, "vocab": [5, 8, 11, 28, 36], "vocabulari": [10, 12, 20, 33, 38], "vt": 32, "w": 32, "w3": [4, 5, 6, 7, 8, 9, 11, 12, 16, 17, 18, 20, 21, 25, 28], "wa": [1, 3, 11, 23, 24, 37, 39], "wai": [38, 40], "walk": 42, "want": [0, 3, 23, 36, 38, 40, 41, 42], "warn": 30, "we": [23, 28, 36, 37, 38, 39, 40, 41, 42], "web": 37, "well": [16, 17, 36, 38, 39, 40, 41], "what": [35, 38, 39, 40], "when": [1, 3, 11, 24, 32, 38, 39, 40, 41], "where": [0, 1, 2, 3, 5, 8, 11, 23, 24, 26, 38, 42], "wherea": 42, "whether": [0, 3, 16, 21, 23, 32, 40, 41], "which": [0, 2, 3, 4, 5, 15, 16, 18, 19, 21, 22, 23, 25, 26, 28, 38, 39, 40, 41, 42], "while": 16, "whole": 41, "whose": [2, 3, 5, 8, 16, 19, 26, 40], "wiki": 39, "window": 41, "without": [16, 25, 38], "word": [40, 42], "work": [36, 38, 40, 41, 42], "world": [23, 35], "world_stor": [11, 24], "worri": 39, "worst": 32, "would": [39, 40, 42], "wrap": [4, 5, 17], "www": [4, 5, 6, 7, 8, 9, 11, 12, 16, 17, 18, 20, 21, 25, 28, 41], "x": [2, 3, 9, 11, 16, 26, 32, 41, 42], "xml": 26, "xmlschema": [12, 21], "xsd": [14, 33], "xsdvocabulari": 33, "y": [16, 32, 41], "yet": [16, 31], "you": [0, 3, 23, 36, 38, 39, 40, 41, 42], "your": [36, 39, 40, 41], "z": [16, 32], "zero": 16}, "titles": ["owlapy.abstracts.abstract_owl_ontology", "owlapy.abstracts.abstract_owl_ontology_manager", "owlapy.abstracts.abstract_owl_reasoner", "owlapy.abstracts", "owlapy.class_expression.class_expression", "owlapy.class_expression", "owlapy.class_expression.nary_boolean_expression", "owlapy.class_expression.owl_class", "owlapy.class_expression.restriction", "owlapy.converter", "owlapy.entities", "owlapy", "owlapy.iri", "owlapy.meta_classes", "owlapy.namespaces", "owlapy.owl_annotation", "owlapy.owl_axiom", "owlapy.owl_data_ranges", "owlapy.owl_datatype", "owlapy.owl_hierarchy", "owlapy.owl_individual", "owlapy.owl_literal", "owlapy.owl_object", "owlapy.owl_ontology", "owlapy.owl_ontology_manager", "owlapy.owl_property", "owlapy.owl_reasoner", "owlapy.owlapi_mapper", "owlapy.parser", "owlapy.providers", "owlapy.render", "owlapy.static_funcs", "owlapy.utils", "owlapy.vocab", "run", "Welcome to OWLAPY!", "Further Resources", "About owlapy", "Ontologies", "Owlapi Synchronization", "Reasoners", "Reasoning Details", "Basic Usage"], "titleterms": {"about": 37, "abstract": [0, 1, 2, 3], "abstract_owl_ontologi": 0, "abstract_owl_ontology_manag": 1, "abstract_owl_reason": 2, "add": 38, "an": [38, 41], "assert": 38, "atom": 42, "attribut": [2, 8, 9, 14, 21, 23, 26, 28, 29, 30, 32, 34], "axiom": 38, "basic": 42, "capabl": 41, "class": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 38, 39, 40, 42], "class_express": [4, 5, 6, 7, 8], "complex": 42, "concret": 41, "content": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35], "contribut": 36, "convert": [9, 42], "coverag": 36, "data": [38, 40], "detail": 41, "dl": 42, "doe": 37, "entiti": 10, "exampl": [26, 39, 41], "express": 42, "find": 40, "function": [9, 11, 27, 28, 29, 30, 31, 32, 34], "further": 36, "have": 37, "how": 37, "i": 37, "insid": 36, "instal": 37, "instanc": 40, "iri": 12, "isol": 41, "load": 38, "manchest": 42, "meta_class": 13, "modifi": [38, 41], "modul": [0, 1, 2, 4, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "more": 36, "namespac": 14, "nary_boolean_express": 6, "new": 38, "note": [26, 39], "object": [38, 40, 42], "offer": 37, "ontologi": [38, 41], "owl_annot": 15, "owl_axiom": 16, "owl_class": 7, "owl_data_rang": 17, "owl_datatyp": 18, "owl_hierarchi": 19, "owl_individu": 20, "owl_liter": 21, "owl_object": 22, "owl_ontologi": 23, "owl_ontology_manag": 24, "owl_properti": 25, "owl_reason": 26, "owlapi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 35, 37, 39], "owlapi_mapp": 27, "packag": [3, 5, 11], "parser": 28, "project": 36, "properti": [38, 40, 42], "provid": 29, "question": 36, "reason": [40, 41], "remov": 38, "render": 30, "report": 36, "resourc": 36, "restrict": 8, "run": 34, "save": 38, "sparql": 42, "static_func": 31, "submodul": [3, 5, 11], "sync": [39, 41], "synchron": 39, "syntax": 42, "usag": [40, 42], "util": 32, "vocab": 33, "welcom": 35, "what": 37, "world": [38, 41]}})
\ No newline at end of file