├── .gitattributes ├── .github └── workflows │ ├── main.yaml │ └── pypi-publish.yaml ├── .gitignore ├── AUTHORS ├── ChangeLog ├── Grammar.txt ├── ImplementationNotes.md ├── LICENSE ├── OWL_2_Test_Cases.md ├── Pipfile ├── README.md ├── TestCaseIssues.md ├── UseCase.md ├── _config.yml ├── docs ├── filler └── index.md ├── funowl ├── ImplementationNotes.md ├── __init__.py ├── annotations.py ├── assertions.py ├── axioms.py ├── base │ ├── __init__.py │ ├── cast_function.py │ ├── clone_subgraph.py │ ├── fun_owl_base.py │ ├── fun_owl_choice.py │ ├── list_support.py │ └── rdftriple.py ├── class_axioms.py ├── class_expressions.py ├── cli.py ├── converters │ ├── __init__.py │ ├── functional_converter.py │ └── rdf_converter.py ├── dataproperty_axioms.py ├── dataproperty_expressions.py ├── dataranges.py ├── declarations.py ├── general_definitions.py ├── identifiers.py ├── individuals.py ├── literals.py ├── objectproperty_axioms.py ├── objectproperty_expressions.py ├── ontology_document.py ├── prefix_declarations.py ├── terminals │ ├── Patterns.py │ ├── Terminals.py │ ├── TypingHelper.py │ └── __init__.py └── writers │ ├── FunctionalWriter.py │ └── __init__.py ├── grammar.md ├── images └── owlinbucket.jpg ├── notebooks ├── SubclassToEquivalent.ipynb ├── basics.ipynb ├── pizza.ipynb ├── singleton_property.py └── singleton_property_original.py ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── data │ ├── all.rdf │ ├── all_test_files │ │ ├── Bnode2somevaluesfrom.rdf │ │ ├── Chain2trans.rdf │ │ ├── Consistent │ │ │ ├── but │ │ │ │ └── all │ │ │ │ │ └── unsat.rdf │ │ │ ├── dataproperty │ │ │ │ └── disjointness.func │ │ │ ├── dateTime.func │ │ │ └── integer │ │ │ │ └── filler.func │ │ ├── Contradicting │ │ │ ├── datatype │ │ │ │ └── restrictions.func │ │ │ └── dateTime │ │ │ │ └── restrictions.func │ │ ├── Datacomplement │ │ │ └── plus │ │ │ │ └── restrictions.func │ │ ├── Datatype │ │ │ ├── DataComplementOf │ │ │ │ ├── 001.func │ │ │ │ └── 001.rdf │ │ │ ├── Float │ │ │ │ └── Discrete │ │ │ │ │ ├── 001.func │ │ │ │ │ └── 001.rdf │ │ │ ├── restriction │ │ │ │ └── min │ │ │ │ │ └── max │ │ │ │ │ └── inconsistency.func │ │ │ └── restrictions │ │ │ │ └── different │ │ │ │ └── types.func │ │ ├── Different │ │ │ └── types │ │ │ │ └── plus │ │ │ │ └── complement.func │ │ ├── Direct_Semantics_Literal_disjoint_from_Thing.func │ │ ├── DisjointClasses │ │ │ ├── 001.func │ │ │ ├── 001.rdf │ │ │ ├── 002.func │ │ │ ├── 002.rdf │ │ │ └── 003.rdf │ │ ├── Disjoint_Props_via_Disjoint_Domains.func │ │ ├── Disjoint_Props_via_Disjoint_Ranges.func │ │ ├── FS2RDF │ │ │ ├── different │ │ │ │ └── individuals │ │ │ │ │ ├── 2 │ │ │ │ │ ├── annotation │ │ │ │ │ │ ├── ar.func │ │ │ │ │ │ └── ar.rdf │ │ │ │ │ ├── ar.func │ │ │ │ │ └── ar.rdf │ │ │ │ │ └── 3 │ │ │ │ │ ├── annotation │ │ │ │ │ ├── ar.func │ │ │ │ │ └── ar.rdf │ │ │ │ │ ├── ar.func │ │ │ │ │ └── ar.rdf │ │ │ ├── disjoint │ │ │ │ └── classes │ │ │ │ │ ├── 2 │ │ │ │ │ ├── annotation │ │ │ │ │ │ ├── ar.func │ │ │ │ │ │ └── ar.rdf │ │ │ │ │ ├── ar.func │ │ │ │ │ └── ar.rdf │ │ │ │ │ └── 3 │ │ │ │ │ ├── annotation │ │ │ │ │ ├── ar.func │ │ │ │ │ └── ar.rdf │ │ │ │ │ ├── ar.func │ │ │ │ │ └── ar.rdf │ │ │ ├── domain │ │ │ │ └── range │ │ │ │ │ ├── expression │ │ │ │ │ ├── ar.func │ │ │ │ │ └── ar.rdf │ │ │ │ │ └── simple │ │ │ │ │ ├── ar.func │ │ │ │ │ └── ar.rdf │ │ │ ├── equivalent │ │ │ │ └── classes │ │ │ │ │ ├── 2 │ │ │ │ │ ├── annotation │ │ │ │ │ │ ├── ar.func │ │ │ │ │ │ └── ar.rdf │ │ │ │ │ ├── ar.func │ │ │ │ │ └── ar.rdf │ │ │ │ │ └── 3 │ │ │ │ │ ├── annotation │ │ │ │ │ ├── ar.func │ │ │ │ │ └── ar.rdf │ │ │ │ │ ├── ar.func │ │ │ │ │ └── ar.rdf │ │ │ ├── literals │ │ │ │ ├── ar.func │ │ │ │ └── ar.rdf │ │ │ ├── negative │ │ │ │ └── property │ │ │ │ │ └── assertion │ │ │ │ │ ├── ar.func │ │ │ │ │ └── ar.rdf │ │ │ ├── no │ │ │ │ └── builtin │ │ │ │ │ └── prefixes │ │ │ │ │ ├── ar.func │ │ │ │ │ └── ar.rdf │ │ │ ├── ontology │ │ │ │ └── annotation │ │ │ │ │ └── annotation │ │ │ │ │ ├── ar.func │ │ │ │ │ └── ar.rdf │ │ │ ├── property │ │ │ │ └── attributes │ │ │ │ │ ├── ar.func │ │ │ │ │ └── ar.rdf │ │ │ ├── propertychain │ │ │ │ └── 2 │ │ │ │ │ ├── annotated │ │ │ │ │ ├── ar.func │ │ │ │ │ └── ar.rdf │ │ │ │ │ ├── ar.func │ │ │ │ │ └── ar.rdf │ │ │ └── same │ │ │ │ └── individual │ │ │ │ ├── 2 │ │ │ │ ├── annotation │ │ │ │ │ ├── ar.func │ │ │ │ │ └── ar.rdf │ │ │ │ ├── ar.func │ │ │ │ └── ar.rdf │ │ │ │ └── 3 │ │ │ │ └── annotation │ │ │ │ ├── ar.func │ │ │ │ └── ar.rdf │ │ ├── Footnote │ │ │ └── not │ │ │ │ └── about │ │ │ │ └── self.rdf │ │ ├── Functionality │ │ │ └── clash.func │ │ ├── Inconsistent │ │ │ ├── byte │ │ │ │ └── filler.func │ │ │ ├── disjoint │ │ │ │ └── dataproperties.func │ │ │ ├── integer │ │ │ │ └── filler.func │ │ │ └── pattern │ │ │ │ └── disjointness.func │ │ ├── Inconsistent_datatypes.func │ │ ├── Individual │ │ │ └── Class_Punning_vs._ObjectOneOf.func │ │ ├── Minus │ │ │ └── inf │ │ │ │ └── not │ │ │ │ └── owlreal.func │ │ ├── New │ │ │ └── Feature │ │ │ │ ├── AnnotationAnnotations │ │ │ │ ├── 001.func │ │ │ │ └── 001.rdf │ │ │ │ ├── AsymmetricProperty │ │ │ │ ├── 001.func │ │ │ │ └── 001.rdf │ │ │ │ ├── AxiomAnnotations │ │ │ │ ├── 001.func │ │ │ │ └── 001.rdf │ │ │ │ ├── BottomDataProperty │ │ │ │ ├── 001.func │ │ │ │ └── 001.rdf │ │ │ │ ├── BottomObjectProperty │ │ │ │ ├── 001.func │ │ │ │ └── 001.rdf │ │ │ │ ├── DataQCR │ │ │ │ ├── 001.func │ │ │ │ └── 001.rdf │ │ │ │ ├── DisjointDataProperties │ │ │ │ ├── 001.func │ │ │ │ ├── 001.rdf │ │ │ │ ├── 002.func │ │ │ │ └── 002.rdf │ │ │ │ ├── DisjointObjectProperties │ │ │ │ ├── 001.func │ │ │ │ ├── 001.rdf │ │ │ │ ├── 002.func │ │ │ │ └── 002.rdf │ │ │ │ ├── DisjointUnion │ │ │ │ ├── 001.func │ │ │ │ └── 001.rdf │ │ │ │ ├── IrreflexiveProperty │ │ │ │ ├── 001.func │ │ │ │ └── 001.rdf │ │ │ │ ├── Keys │ │ │ │ ├── 001.func │ │ │ │ ├── 001.rdf │ │ │ │ ├── 002.func │ │ │ │ ├── 002.rdf │ │ │ │ ├── 003.func │ │ │ │ ├── 003.rdf │ │ │ │ ├── 004.func │ │ │ │ ├── 004.rdf │ │ │ │ ├── 005.func │ │ │ │ ├── 005.rdf │ │ │ │ ├── 006.func │ │ │ │ ├── 006.rdf │ │ │ │ ├── 007.func │ │ │ │ └── 007.rdf │ │ │ │ ├── NegativeDataPropertyAssertion │ │ │ │ ├── 001.func │ │ │ │ └── 001.rdf │ │ │ │ ├── NegativeObjectPropertyAssertion │ │ │ │ ├── 001.func │ │ │ │ └── 001.rdf │ │ │ │ ├── ObjectPropertyChain │ │ │ │ ├── 001.func │ │ │ │ ├── 001.rdf │ │ │ │ └── BJP │ │ │ │ │ ├── 002.func │ │ │ │ │ ├── 003.rdf │ │ │ │ │ └── 004.rdf │ │ │ │ ├── ObjectQCR │ │ │ │ ├── 001.func │ │ │ │ ├── 001.rdf │ │ │ │ ├── 002.func │ │ │ │ └── 002.rdf │ │ │ │ ├── Rational │ │ │ │ ├── 001.rdf │ │ │ │ ├── 002.func │ │ │ │ ├── 002.rdf │ │ │ │ ├── 003.func │ │ │ │ └── 003.rdf │ │ │ │ ├── ReflexiveProperty │ │ │ │ ├── 001.func │ │ │ │ └── 001.rdf │ │ │ │ ├── SelfRestriction │ │ │ │ ├── 001.func │ │ │ │ ├── 001.rdf │ │ │ │ ├── 002.func │ │ │ │ └── 002.rdf │ │ │ │ └── TopObjectProperty │ │ │ │ ├── 001.func │ │ │ │ └── 001.rdf │ │ ├── One_equals_two.rdf │ │ ├── Owl2 │ │ │ └── rl │ │ │ │ ├── anonymous │ │ │ │ └── individual.rdf │ │ │ │ ├── invalid │ │ │ │ ├── leftside │ │ │ │ │ ├── allvaluesfrom.rdf │ │ │ │ │ └── maxcard.rdf │ │ │ │ ├── mincard.rdf │ │ │ │ ├── oneof.rdf │ │ │ │ ├── owlreal.rdf │ │ │ │ ├── rightside │ │ │ │ │ ├── somevaluesfrom.rdf │ │ │ │ │ └── unionof.rdf │ │ │ │ └── unionof.rdf │ │ │ │ ├── rules │ │ │ │ ├── fp │ │ │ │ │ └── differentFrom.rdf │ │ │ │ └── ifp │ │ │ │ │ ├── askey.rdf │ │ │ │ │ └── differentFrom.rdf │ │ │ │ └── valid │ │ │ │ ├── oneof.rdf │ │ │ │ └── rightside │ │ │ │ └── allvaluesfrom.rdf │ │ ├── Owlreal │ │ │ └── plus │ │ │ │ └── oneOf.func │ │ ├── Plus │ │ │ ├── and │ │ │ │ └── minus │ │ │ │ │ └── 0 │ │ │ │ │ └── integers.func │ │ │ └── minus │ │ │ │ └── 0 │ │ │ │ └── plus │ │ │ │ └── disjointness.func │ │ ├── Qualified │ │ │ └── cardinality │ │ │ │ ├── boolean.func │ │ │ │ └── restricted │ │ │ │ └── int.func │ │ ├── Rdfbased │ │ │ └── sem │ │ │ │ ├── bool │ │ │ │ ├── complement │ │ │ │ │ └── inst.rdf │ │ │ │ ├── intersection │ │ │ │ │ ├── inst │ │ │ │ │ │ ├── comp.rdf │ │ │ │ │ │ └── expr.rdf │ │ │ │ │ └── term.rdf │ │ │ │ └── union │ │ │ │ │ ├── inst │ │ │ │ │ └── comp.rdf │ │ │ │ │ └── term.rdf │ │ │ │ ├── chain │ │ │ │ └── def.rdf │ │ │ │ ├── char │ │ │ │ ├── asymmetric │ │ │ │ │ ├── inst.rdf │ │ │ │ │ └── term.rdf │ │ │ │ ├── functional │ │ │ │ │ └── inst.rdf │ │ │ │ ├── inversefunc │ │ │ │ │ ├── data.rdf │ │ │ │ │ └── inst.rdf │ │ │ │ ├── irreflexive │ │ │ │ │ └── inst.rdf │ │ │ │ ├── symmetric │ │ │ │ │ └── inst.rdf │ │ │ │ └── transitive │ │ │ │ │ └── inst.rdf │ │ │ │ ├── class │ │ │ │ ├── nothing │ │ │ │ │ ├── ext.rdf │ │ │ │ │ ├── term.rdf │ │ │ │ │ └── type.rdf │ │ │ │ └── thing │ │ │ │ │ ├── term.rdf │ │ │ │ │ └── type.rdf │ │ │ │ ├── enum │ │ │ │ └── inst │ │ │ │ │ └── included.rdf │ │ │ │ ├── eqdis │ │ │ │ ├── different │ │ │ │ │ ├── irrflxv.rdf │ │ │ │ │ └── sameas.rdf │ │ │ │ ├── disclass │ │ │ │ │ ├── eqclass.rdf │ │ │ │ │ ├── inst.rdf │ │ │ │ │ └── irrflxv.rdf │ │ │ │ ├── disprop │ │ │ │ │ ├── eqprop.rdf │ │ │ │ │ ├── inst.rdf │ │ │ │ │ └── irrflxv.rdf │ │ │ │ ├── eqclass │ │ │ │ │ ├── inst.rdf │ │ │ │ │ ├── rflxv.rdf │ │ │ │ │ ├── subclass │ │ │ │ │ │ ├── 1.rdf │ │ │ │ │ │ └── 2.rdf │ │ │ │ │ ├── subst.rdf │ │ │ │ │ ├── sym.rdf │ │ │ │ │ └── trans.rdf │ │ │ │ ├── eqprop │ │ │ │ │ ├── inst.rdf │ │ │ │ │ ├── rflxv.rdf │ │ │ │ │ ├── subprop │ │ │ │ │ │ ├── 1.rdf │ │ │ │ │ │ └── 2.rdf │ │ │ │ │ ├── subst.rdf │ │ │ │ │ ├── sym.rdf │ │ │ │ │ └── trans.rdf │ │ │ │ └── sameas │ │ │ │ │ ├── rflxv.rdf │ │ │ │ │ ├── subst.rdf │ │ │ │ │ ├── sym.rdf │ │ │ │ │ └── trans.rdf │ │ │ │ ├── inv │ │ │ │ └── inst.rdf │ │ │ │ ├── key │ │ │ │ └── def.rdf │ │ │ │ ├── ndis │ │ │ │ ├── alldifferent │ │ │ │ │ ├── fw.rdf │ │ │ │ │ └── fw │ │ │ │ │ │ └── distinctmembers.rdf │ │ │ │ ├── alldisjointclasses │ │ │ │ │ └── fw.rdf │ │ │ │ └── alldisjointproperties │ │ │ │ │ └── fw.rdf │ │ │ │ ├── npa │ │ │ │ ├── dat │ │ │ │ │ └── fw.rdf │ │ │ │ └── ind │ │ │ │ │ └── fw.rdf │ │ │ │ ├── prop │ │ │ │ ├── backwardcompatiblewith │ │ │ │ │ └── type │ │ │ │ │ │ └── annot.rdf │ │ │ │ ├── comment │ │ │ │ │ └── type.rdf │ │ │ │ ├── deprecated │ │ │ │ │ └── type.rdf │ │ │ │ ├── incompatiblewith │ │ │ │ │ └── type │ │ │ │ │ │ └── annot.rdf │ │ │ │ ├── isdefinedby │ │ │ │ │ └── type.rdf │ │ │ │ ├── label │ │ │ │ │ └── type.rdf │ │ │ │ ├── priorversion │ │ │ │ │ └── type │ │ │ │ │ │ └── annot.rdf │ │ │ │ ├── seealso │ │ │ │ │ └── type.rdf │ │ │ │ └── versioninfo │ │ │ │ │ └── type.rdf │ │ │ │ ├── rdfs │ │ │ │ ├── domain │ │ │ │ │ └── cond.rdf │ │ │ │ ├── range │ │ │ │ │ └── cond.rdf │ │ │ │ ├── subclass │ │ │ │ │ ├── cond.rdf │ │ │ │ │ └── trans.rdf │ │ │ │ └── subprop │ │ │ │ │ ├── cond.rdf │ │ │ │ │ └── trans.rdf │ │ │ │ ├── rdfsext │ │ │ │ ├── domain │ │ │ │ │ ├── subprop.rdf │ │ │ │ │ └── superclass.rdf │ │ │ │ └── range │ │ │ │ │ ├── subprop.rdf │ │ │ │ │ └── superclass.rdf │ │ │ │ └── restrict │ │ │ │ ├── allvalues │ │ │ │ ├── cmp │ │ │ │ │ ├── class.rdf │ │ │ │ │ └── prop.rdf │ │ │ │ └── inst │ │ │ │ │ └── obj.rdf │ │ │ │ ├── hasvalue │ │ │ │ ├── cmp │ │ │ │ │ └── prop.rdf │ │ │ │ └── inst │ │ │ │ │ ├── obj.rdf │ │ │ │ │ └── subj.rdf │ │ │ │ ├── maxcard │ │ │ │ └── inst │ │ │ │ │ └── obj │ │ │ │ │ ├── one.rdf │ │ │ │ │ └── zero.rdf │ │ │ │ ├── maxqcr │ │ │ │ └── inst │ │ │ │ │ └── obj │ │ │ │ │ ├── one.rdf │ │ │ │ │ └── zero.rdf │ │ │ │ └── somevalues │ │ │ │ ├── cmp │ │ │ │ ├── class.rdf │ │ │ │ └── prop.rdf │ │ │ │ └── inst │ │ │ │ └── subj.rdf │ │ ├── RoleChainViolationLumen.rdf │ │ ├── Somevaluesfrom2bnode.rdf │ │ ├── String │ │ │ └── integer │ │ │ │ └── clash.func │ │ └── TestCase-WebOnt │ │ │ ├── AllDifferent │ │ │ └── 001.rdf │ │ │ ├── AnnotationProperty │ │ │ ├── 002.rdf │ │ │ ├── 003.rdf │ │ │ └── 004.rdf │ │ │ ├── Class │ │ │ ├── 001.rdf │ │ │ ├── 002.rdf │ │ │ ├── 003.rdf │ │ │ ├── 004.rdf │ │ │ ├── 005.rdf │ │ │ ├── 005 │ │ │ │ └── direct.rdf │ │ │ └── 006.rdf │ │ │ ├── DatatypeProperty │ │ │ └── 001.rdf │ │ │ ├── FunctionalProperty │ │ │ ├── 001.rdf │ │ │ ├── 002.rdf │ │ │ ├── 003.rdf │ │ │ ├── 004.rdf │ │ │ └── 005.rdf │ │ │ ├── I4.5 │ │ │ ├── 001.rdf │ │ │ └── 002.rdf │ │ │ ├── I4.6 │ │ │ ├── 003.rdf │ │ │ ├── 004.rdf │ │ │ ├── 005.rdf │ │ │ └── 005 │ │ │ │ └── Direct.rdf │ │ │ ├── I5.1 │ │ │ ├── 001.rdf │ │ │ └── 010.rdf │ │ │ ├── I5.2 │ │ │ ├── 001.rdf │ │ │ ├── 002.rdf │ │ │ ├── 003.rdf │ │ │ ├── 004.rdf │ │ │ ├── 005.rdf │ │ │ ├── 006.rdf │ │ │ ├── 010.rdf │ │ │ └── 011.rdf │ │ │ ├── I5.21 │ │ │ └── 002.rdf │ │ │ ├── I5.24 │ │ │ ├── 001.rdf │ │ │ ├── 002.rdf │ │ │ ├── 003.rdf │ │ │ └── 004.rdf │ │ │ ├── I5.26 │ │ │ ├── 001.rdf │ │ │ ├── 002.rdf │ │ │ ├── 003.rdf │ │ │ ├── 004.rdf │ │ │ ├── 005.rdf │ │ │ ├── 006.rdf │ │ │ ├── 007.rdf │ │ │ ├── 009.rdf │ │ │ └── 010.rdf │ │ │ ├── I5.3 │ │ │ ├── 005.rdf │ │ │ ├── 006.rdf │ │ │ ├── 007.rdf │ │ │ ├── 008.rdf │ │ │ ├── 009.rdf │ │ │ ├── 010.rdf │ │ │ ├── 011.rdf │ │ │ ├── 014.rdf │ │ │ └── 015.rdf │ │ │ ├── I5.5 │ │ │ ├── 001.rdf │ │ │ ├── 002.rdf │ │ │ ├── 003.rdf │ │ │ ├── 004.rdf │ │ │ ├── 005.rdf │ │ │ ├── 006.rdf │ │ │ └── 007.rdf │ │ │ ├── I5.8 │ │ │ ├── 001.rdf │ │ │ ├── 002.rdf │ │ │ ├── 003.rdf │ │ │ ├── 004.rdf │ │ │ ├── 005.rdf │ │ │ ├── 006.rdf │ │ │ ├── 007.rdf │ │ │ ├── 008.rdf │ │ │ ├── 009.rdf │ │ │ ├── 010.rdf │ │ │ ├── 011.rdf │ │ │ ├── 013.rdf │ │ │ ├── 014.rdf │ │ │ ├── 015.rdf │ │ │ ├── 016.rdf │ │ │ └── 017.rdf │ │ │ ├── I6.1 │ │ │ └── 001.rdf │ │ │ ├── InverseFunctionalProperty │ │ │ ├── 001.rdf │ │ │ ├── 002.rdf │ │ │ ├── 003.rdf │ │ │ └── 004.rdf │ │ │ ├── Nothing │ │ │ ├── 001.rdf │ │ │ └── 002.rdf │ │ │ ├── Ontology │ │ │ ├── 001.rdf │ │ │ ├── 003.rdf │ │ │ └── 004.rdf │ │ │ ├── Restriction │ │ │ ├── 001.rdf │ │ │ ├── 002.rdf │ │ │ ├── 003.rdf │ │ │ ├── 004.rdf │ │ │ ├── 005.rdf │ │ │ ├── 005 │ │ │ │ └── direct.rdf │ │ │ └── 006.rdf │ │ │ ├── SymmetricProperty │ │ │ ├── 001.rdf │ │ │ ├── 002.rdf │ │ │ └── 003.rdf │ │ │ ├── Thing │ │ │ ├── 003.rdf │ │ │ ├── 004.rdf │ │ │ └── 005.rdf │ │ │ ├── TransitiveProperty │ │ │ ├── 001.rdf │ │ │ └── 002.rdf │ │ │ ├── allValuesFrom │ │ │ ├── 001.rdf │ │ │ └── 002.rdf │ │ │ ├── backwardCompatibleWith │ │ │ ├── 001.rdf │ │ │ └── 002.rdf │ │ │ ├── cardinality │ │ │ ├── 001.rdf │ │ │ ├── 002.rdf │ │ │ ├── 003.rdf │ │ │ ├── 004.rdf │ │ │ └── 006.rdf │ │ │ ├── complementOf │ │ │ └── 001.rdf │ │ │ ├── description │ │ │ └── logic │ │ │ │ ├── 001.rdf │ │ │ │ ├── 002.rdf │ │ │ │ ├── 003.rdf │ │ │ │ ├── 004.rdf │ │ │ │ ├── 005.rdf │ │ │ │ ├── 006.rdf │ │ │ │ ├── 007.rdf │ │ │ │ ├── 008.rdf │ │ │ │ ├── 009.rdf │ │ │ │ ├── 010.rdf │ │ │ │ ├── 011.rdf │ │ │ │ ├── 012.rdf │ │ │ │ ├── 013.rdf │ │ │ │ ├── 014.rdf │ │ │ │ ├── 015.rdf │ │ │ │ ├── 016.rdf │ │ │ │ ├── 017.rdf │ │ │ │ ├── 018.rdf │ │ │ │ ├── 019.rdf │ │ │ │ ├── 020.rdf │ │ │ │ ├── 021.rdf │ │ │ │ ├── 022.rdf │ │ │ │ ├── 023.rdf │ │ │ │ ├── 024.rdf │ │ │ │ ├── 025.rdf │ │ │ │ ├── 026.rdf │ │ │ │ ├── 027.rdf │ │ │ │ ├── 028.rdf │ │ │ │ ├── 029.rdf │ │ │ │ ├── 030.rdf │ │ │ │ ├── 031.rdf │ │ │ │ ├── 032.rdf │ │ │ │ ├── 033.rdf │ │ │ │ ├── 034.rdf │ │ │ │ ├── 035.rdf │ │ │ │ ├── 040.rdf │ │ │ │ ├── 101.rdf │ │ │ │ ├── 102.rdf │ │ │ │ ├── 103.rdf │ │ │ │ ├── 104.rdf │ │ │ │ ├── 105.rdf │ │ │ │ ├── 106.rdf │ │ │ │ ├── 107.rdf │ │ │ │ ├── 108.rdf │ │ │ │ ├── 109.rdf │ │ │ │ ├── 110.rdf │ │ │ │ ├── 111.rdf │ │ │ │ ├── 201.rdf │ │ │ │ ├── 202.rdf │ │ │ │ ├── 203.rdf │ │ │ │ ├── 204.rdf │ │ │ │ ├── 205.rdf │ │ │ │ ├── 206.rdf │ │ │ │ ├── 207.rdf │ │ │ │ ├── 208.rdf │ │ │ │ ├── 209.rdf │ │ │ │ ├── 501.rdf │ │ │ │ ├── 502.rdf │ │ │ │ ├── 503.rdf │ │ │ │ ├── 504.rdf │ │ │ │ ├── 601.rdf │ │ │ │ ├── 602.rdf │ │ │ │ ├── 603.rdf │ │ │ │ ├── 604.rdf │ │ │ │ ├── 605.rdf │ │ │ │ ├── 606.rdf │ │ │ │ ├── 608.rdf │ │ │ │ ├── 609.rdf │ │ │ │ ├── 610.rdf │ │ │ │ ├── 611.rdf │ │ │ │ ├── 612.rdf │ │ │ │ ├── 613.rdf │ │ │ │ ├── 614.rdf │ │ │ │ ├── 615.rdf │ │ │ │ ├── 616.rdf │ │ │ │ ├── 617.rdf │ │ │ │ ├── 623.rdf │ │ │ │ ├── 624.rdf │ │ │ │ ├── 625.rdf │ │ │ │ ├── 626.rdf │ │ │ │ ├── 627.rdf │ │ │ │ ├── 628.rdf │ │ │ │ ├── 629.rdf │ │ │ │ ├── 630.rdf │ │ │ │ ├── 631.rdf │ │ │ │ ├── 632.rdf │ │ │ │ ├── 633.rdf │ │ │ │ ├── 634.rdf │ │ │ │ ├── 641.rdf │ │ │ │ ├── 642.rdf │ │ │ │ ├── 643.rdf │ │ │ │ ├── 644.rdf │ │ │ │ ├── 646.rdf │ │ │ │ ├── 650.rdf │ │ │ │ ├── 661.rdf │ │ │ │ ├── 662.rdf │ │ │ │ ├── 663.rdf │ │ │ │ ├── 664.rdf │ │ │ │ ├── 665.rdf │ │ │ │ ├── 667.rdf │ │ │ │ ├── 901.rdf │ │ │ │ ├── 902.rdf │ │ │ │ ├── 903.rdf │ │ │ │ ├── 904.rdf │ │ │ │ ├── 905.rdf │ │ │ │ ├── 906.rdf │ │ │ │ ├── 907.rdf │ │ │ │ ├── 908.rdf │ │ │ │ ├── 909.rdf │ │ │ │ └── 910.rdf │ │ │ ├── differentFrom │ │ │ ├── 001.rdf │ │ │ └── 002.rdf │ │ │ ├── disjointWith │ │ │ ├── 001.rdf │ │ │ ├── 002.rdf │ │ │ ├── 003.rdf │ │ │ ├── 004.rdf │ │ │ ├── 005.rdf │ │ │ ├── 006.rdf │ │ │ ├── 007.rdf │ │ │ ├── 008.rdf │ │ │ ├── 009.rdf │ │ │ └── 010.rdf │ │ │ ├── distinctMembers │ │ │ └── 001.rdf │ │ │ ├── equivalentClass │ │ │ ├── 001.rdf │ │ │ ├── 002.rdf │ │ │ ├── 003.rdf │ │ │ ├── 004.rdf │ │ │ ├── 005.rdf │ │ │ ├── 006.rdf │ │ │ ├── 007.rdf │ │ │ ├── 008.rdf │ │ │ ├── 008 │ │ │ │ └── Direct.rdf │ │ │ └── 009.rdf │ │ │ ├── equivalentProperty │ │ │ ├── 001.rdf │ │ │ ├── 002.rdf │ │ │ ├── 003.rdf │ │ │ ├── 004.rdf │ │ │ ├── 005.rdf │ │ │ └── 006.rdf │ │ │ ├── extra │ │ │ └── credit │ │ │ │ ├── 002.rdf │ │ │ │ ├── 003.rdf │ │ │ │ └── 004.rdf │ │ │ ├── imports │ │ │ ├── 001.rdf │ │ │ ├── 002.rdf │ │ │ ├── 003.rdf │ │ │ ├── 004.rdf │ │ │ ├── 005.rdf │ │ │ ├── 006.rdf │ │ │ ├── 007.rdf │ │ │ ├── 008.rdf │ │ │ ├── 010.rdf │ │ │ ├── 011.rdf │ │ │ ├── 012.rdf │ │ │ ├── 013.rdf │ │ │ └── 014.rdf │ │ │ ├── intersectionOf │ │ │ └── 001.rdf │ │ │ ├── inverseOf │ │ │ └── 001.rdf │ │ │ ├── maxCardinality │ │ │ └── 001.rdf │ │ │ ├── miscellaneous │ │ │ ├── 302 │ │ │ │ └── Direct.rdf │ │ │ ├── 001.rdf │ │ │ ├── 002.rdf │ │ │ ├── 011.rdf │ │ │ ├── 102.rdf │ │ │ ├── 103.rdf │ │ │ ├── 202.rdf │ │ │ ├── 203.rdf │ │ │ ├── 204.rdf │ │ │ ├── 301.rdf │ │ │ ├── 302.rdf │ │ │ └── 303.rdf │ │ │ ├── oneOf │ │ │ ├── 001.rdf │ │ │ ├── 002.rdf │ │ │ ├── 003.rdf │ │ │ └── 004.rdf │ │ │ ├── sameAs │ │ │ └── 001.rdf │ │ │ ├── someValuesFrom │ │ │ ├── 001.rdf │ │ │ ├── 002.rdf │ │ │ └── 003.rdf │ │ │ └── unionOf │ │ │ ├── 001.rdf │ │ │ ├── 002.rdf │ │ │ ├── 003.rdf │ │ │ └── 004.rdf │ ├── cr.ofn.txt │ ├── ext.owlf │ ├── obi.owl │ ├── obi.owlf │ ├── pizza.owl │ ├── pizza.owl.out │ ├── pizza.ttl │ └── pizza_out.ttl ├── test_base │ ├── __init__.py │ ├── test_annotations.py │ ├── test_assertions.py │ ├── test_basics.py │ ├── test_classaxioms.py │ ├── test_declarations.py │ ├── test_funowlbase.py │ ├── test_generaldefinitions.py │ ├── test_identifiers.py │ ├── test_literals.py │ ├── test_module_init.py │ ├── test_ontologydocument.py │ ├── test_prefixdeclarations.py │ ├── test_syntax_converter.py │ └── test_typinghelper.py ├── test_cli │ ├── __init__.py │ ├── data │ │ ├── basic.owl │ │ ├── basic_out.n3 │ │ ├── basic_out_ed.n3 │ │ ├── basic_out_et.n3 │ │ ├── cli_help.txt │ │ ├── pizza.owl │ │ ├── pizza_out.jsonld │ │ ├── pizza_out.ttl │ │ ├── pizza_out2.jsonld │ │ ├── pizza_out3.foo │ │ └── pizza_out4.n3 │ └── test_cli.py ├── test_converters │ ├── __init__.py │ └── test_functional_converter.py ├── test_issues │ ├── __init__.py │ ├── test_add_functional_definitions.py │ ├── test_declaration.py │ ├── test_issue_12.py │ ├── test_issue_14.py │ ├── test_issue_2.py │ ├── test_issue_24.py │ ├── test_issue_27.py │ ├── test_issue_28.py │ ├── test_issue_33.py │ ├── test_issue_34.py │ ├── test_issue_39.py │ ├── test_issue_45.py │ ├── test_issue_57.py │ ├── test_rdflib_bindings.py │ └── test_rdflib_cache_issue.py ├── test_notebooks │ ├── __init__.py │ └── test_subclasstoequivalent.py ├── test_ontologies │ ├── __init__.py │ └── test_snomed.py ├── test_owl2_test_suite │ ├── README.md │ ├── __init__.py │ ├── all_parser.py │ ├── data │ │ ├── Bnode2somevaluesfrom.func │ │ ├── Bnode2somevaluesfrom.ttl │ │ ├── Bnode2somevaluesfrom.xml │ │ ├── Chain2trans.func │ │ ├── Chain2trans.ttl │ │ ├── Chain2trans.xml │ │ ├── Consistent │ │ │ ├── but │ │ │ │ └── all │ │ │ │ │ ├── unsat.func │ │ │ │ │ ├── unsat.ttl │ │ │ │ │ └── unsat.xml │ │ │ ├── dataproperty │ │ │ │ ├── disjointness.func │ │ │ │ ├── disjointness.ttl │ │ │ │ └── disjointness.xml │ │ │ ├── dateTime.func │ │ │ ├── dateTime.ttl │ │ │ ├── dateTime.xml │ │ │ └── integer │ │ │ │ ├── filler.func │ │ │ │ ├── filler.ttl │ │ │ │ └── filler.xml │ │ ├── Contradicting │ │ │ ├── datatype │ │ │ │ ├── restrictions.func │ │ │ │ ├── restrictions.ttl │ │ │ │ └── restrictions.xml │ │ │ └── dateTime │ │ │ │ ├── restrictions.func │ │ │ │ ├── restrictions.ttl │ │ │ │ └── restrictions.xml │ │ ├── Datacomplement │ │ │ └── plus │ │ │ │ ├── restrictions.func │ │ │ │ ├── restrictions.ttl │ │ │ │ └── restrictions.xml │ │ ├── Datatype │ │ │ ├── DataComplementOf │ │ │ │ ├── 001.func │ │ │ │ ├── 001.ttl │ │ │ │ └── 001.xml │ │ │ ├── Float │ │ │ │ └── Discrete │ │ │ │ │ ├── 001.func │ │ │ │ │ ├── 001.ttl │ │ │ │ │ └── 001.xml │ │ │ ├── restriction │ │ │ │ └── min │ │ │ │ │ └── max │ │ │ │ │ ├── inconsistency.func │ │ │ │ │ ├── inconsistency.ttl │ │ │ │ │ └── inconsistency.xml │ │ │ └── restrictions │ │ │ │ └── different │ │ │ │ ├── types.func │ │ │ │ ├── types.ttl │ │ │ │ └── types.xml │ │ ├── Different │ │ │ └── types │ │ │ │ └── plus │ │ │ │ ├── complement.func │ │ │ │ ├── complement.ttl │ │ │ │ └── complement.xml │ │ ├── Direct_Semantics_Literal_disjoint_from_Thing.func │ │ ├── Direct_Semantics_Literal_disjoint_from_Thing.ttl │ │ ├── Direct_Semantics_Literal_disjoint_from_Thing.xml │ │ ├── DisjointClasses │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ ├── 002.xml │ │ │ ├── 003.func │ │ │ ├── 003.ttl │ │ │ └── 003.xml │ │ ├── Disjoint_Props_via_Disjoint_Domains.func │ │ ├── Disjoint_Props_via_Disjoint_Domains.ttl │ │ ├── Disjoint_Props_via_Disjoint_Domains.xml │ │ ├── Disjoint_Props_via_Disjoint_Ranges.func │ │ ├── Disjoint_Props_via_Disjoint_Ranges.ttl │ │ ├── Disjoint_Props_via_Disjoint_Ranges.xml │ │ ├── FS2RDF │ │ │ ├── different │ │ │ │ └── individuals │ │ │ │ │ ├── 2 │ │ │ │ │ ├── annotation │ │ │ │ │ │ ├── ar.func │ │ │ │ │ │ ├── ar.ttl │ │ │ │ │ │ └── ar.xml │ │ │ │ │ ├── ar.func │ │ │ │ │ ├── ar.ttl │ │ │ │ │ └── ar.xml │ │ │ │ │ └── 3 │ │ │ │ │ ├── annotation │ │ │ │ │ ├── ar.func │ │ │ │ │ ├── ar.ttl │ │ │ │ │ └── ar.xml │ │ │ │ │ ├── ar.func │ │ │ │ │ ├── ar.ttl │ │ │ │ │ └── ar.xml │ │ │ ├── disjoint │ │ │ │ └── classes │ │ │ │ │ ├── 2 │ │ │ │ │ ├── annotation │ │ │ │ │ │ ├── ar.func │ │ │ │ │ │ ├── ar.ttl │ │ │ │ │ │ └── ar.xml │ │ │ │ │ ├── ar.func │ │ │ │ │ ├── ar.ttl │ │ │ │ │ └── ar.xml │ │ │ │ │ └── 3 │ │ │ │ │ ├── annotation │ │ │ │ │ ├── ar.func │ │ │ │ │ ├── ar.ttl │ │ │ │ │ └── ar.xml │ │ │ │ │ ├── ar.func │ │ │ │ │ ├── ar.ttl │ │ │ │ │ └── ar.xml │ │ │ ├── domain │ │ │ │ └── range │ │ │ │ │ ├── expression │ │ │ │ │ ├── ar.func │ │ │ │ │ ├── ar.ttl │ │ │ │ │ └── ar.xml │ │ │ │ │ └── simple │ │ │ │ │ ├── ar.func │ │ │ │ │ ├── ar.ttl │ │ │ │ │ └── ar.xml │ │ │ ├── equivalent │ │ │ │ └── classes │ │ │ │ │ ├── 2 │ │ │ │ │ ├── annotation │ │ │ │ │ │ ├── ar.func │ │ │ │ │ │ ├── ar.ttl │ │ │ │ │ │ └── ar.xml │ │ │ │ │ ├── ar.func │ │ │ │ │ ├── ar.ttl │ │ │ │ │ └── ar.xml │ │ │ │ │ └── 3 │ │ │ │ │ ├── annotation │ │ │ │ │ ├── ar.func │ │ │ │ │ ├── ar.ttl │ │ │ │ │ └── ar.xml │ │ │ │ │ ├── ar.func │ │ │ │ │ ├── ar.ttl │ │ │ │ │ └── ar.xml │ │ │ ├── literals │ │ │ │ ├── ar.func │ │ │ │ ├── ar.ttl │ │ │ │ └── ar.xml │ │ │ ├── negative │ │ │ │ └── property │ │ │ │ │ └── assertion │ │ │ │ │ ├── ar.func │ │ │ │ │ └── ar.xml │ │ │ ├── no │ │ │ │ └── builtin │ │ │ │ │ └── prefixes │ │ │ │ │ ├── ar.func │ │ │ │ │ ├── ar.ttl │ │ │ │ │ └── ar.xml │ │ │ ├── ontology │ │ │ │ └── annotation │ │ │ │ │ └── annotation │ │ │ │ │ ├── ar.func │ │ │ │ │ ├── ar.ttl │ │ │ │ │ └── ar.xml │ │ │ ├── property │ │ │ │ └── attributes │ │ │ │ │ ├── ar.func │ │ │ │ │ ├── ar.ttl │ │ │ │ │ └── ar.xml │ │ │ ├── propertychain │ │ │ │ └── 2 │ │ │ │ │ ├── annotated │ │ │ │ │ ├── ar.func │ │ │ │ │ ├── ar.ttl │ │ │ │ │ └── ar.xml │ │ │ │ │ ├── ar.func │ │ │ │ │ ├── ar.ttl │ │ │ │ │ └── ar.xml │ │ │ └── same │ │ │ │ └── individual │ │ │ │ ├── 2 │ │ │ │ ├── annotation │ │ │ │ │ ├── ar.func │ │ │ │ │ ├── ar.ttl │ │ │ │ │ └── ar.xml │ │ │ │ ├── ar.func │ │ │ │ ├── ar.ttl │ │ │ │ └── ar.xml │ │ │ │ └── 3 │ │ │ │ └── annotation │ │ │ │ ├── ar.func │ │ │ │ ├── ar.ttl │ │ │ │ └── ar.xml │ │ ├── Footnote │ │ │ └── not │ │ │ │ └── about │ │ │ │ ├── self.func │ │ │ │ ├── self.ttl │ │ │ │ └── self.xml │ │ ├── Functionality │ │ │ ├── clash.func │ │ │ ├── clash.ttl │ │ │ └── clash.xml │ │ ├── Inconsistent │ │ │ ├── byte │ │ │ │ ├── filler.func │ │ │ │ ├── filler.ttl │ │ │ │ └── filler.xml │ │ │ ├── disjoint │ │ │ │ ├── dataproperties.func │ │ │ │ ├── dataproperties.ttl │ │ │ │ └── dataproperties.xml │ │ │ ├── integer │ │ │ │ ├── filler.func │ │ │ │ ├── filler.ttl │ │ │ │ └── filler.xml │ │ │ └── pattern │ │ │ │ ├── disjointness.func │ │ │ │ ├── disjointness.ttl │ │ │ │ └── disjointness.xml │ │ ├── Inconsistent_datatypes.func │ │ ├── Inconsistent_datatypes.ttl │ │ ├── Inconsistent_datatypes.xml │ │ ├── Individual │ │ │ ├── Class_Punning_vs._ObjectOneOf.func │ │ │ ├── Class_Punning_vs._ObjectOneOf.ttl │ │ │ └── Class_Punning_vs._ObjectOneOf.xml │ │ ├── Minus │ │ │ └── inf │ │ │ │ └── not │ │ │ │ ├── owlreal.func │ │ │ │ ├── owlreal.ttl │ │ │ │ └── owlreal.xml │ │ ├── New │ │ │ └── Feature │ │ │ │ ├── AnnotationAnnotations │ │ │ │ ├── 001.func │ │ │ │ ├── 001.ttl │ │ │ │ └── 001.xml │ │ │ │ ├── AsymmetricProperty │ │ │ │ ├── 001.func │ │ │ │ ├── 001.ttl │ │ │ │ └── 001.xml │ │ │ │ ├── AxiomAnnotations │ │ │ │ ├── 001.func │ │ │ │ ├── 001.ttl │ │ │ │ └── 001.xml │ │ │ │ ├── BottomDataProperty │ │ │ │ ├── 001.func │ │ │ │ ├── 001.ttl │ │ │ │ └── 001.xml │ │ │ │ ├── BottomObjectProperty │ │ │ │ ├── 001.func │ │ │ │ ├── 001.ttl │ │ │ │ └── 001.xml │ │ │ │ ├── DataQCR │ │ │ │ ├── 001.func │ │ │ │ ├── 001.ttl │ │ │ │ └── 001.xml │ │ │ │ ├── DisjointDataProperties │ │ │ │ ├── 001.func │ │ │ │ ├── 001.ttl │ │ │ │ ├── 001.xml │ │ │ │ ├── 002.func │ │ │ │ ├── 002.ttl │ │ │ │ └── 002.xml │ │ │ │ ├── DisjointObjectProperties │ │ │ │ ├── 001.func │ │ │ │ ├── 001.ttl │ │ │ │ ├── 001.xml │ │ │ │ ├── 002.func │ │ │ │ ├── 002.ttl │ │ │ │ └── 002.xml │ │ │ │ ├── DisjointUnion │ │ │ │ ├── 001.func │ │ │ │ ├── 001.ttl │ │ │ │ └── 001.xml │ │ │ │ ├── IrreflexiveProperty │ │ │ │ ├── 001.func │ │ │ │ ├── 001.ttl │ │ │ │ └── 001.xml │ │ │ │ ├── Keys │ │ │ │ ├── 001.func │ │ │ │ ├── 001.ttl │ │ │ │ ├── 001.xml │ │ │ │ ├── 002.func │ │ │ │ ├── 002.ttl │ │ │ │ ├── 002.xml │ │ │ │ ├── 003.func │ │ │ │ ├── 003.ttl │ │ │ │ ├── 003.xml │ │ │ │ ├── 004.func │ │ │ │ ├── 004.ttl │ │ │ │ ├── 004.xml │ │ │ │ ├── 005.func │ │ │ │ ├── 005.ttl │ │ │ │ ├── 005.xml │ │ │ │ ├── 006.func │ │ │ │ ├── 006.ttl │ │ │ │ ├── 006.xml │ │ │ │ ├── 007.func │ │ │ │ ├── 007.ttl │ │ │ │ └── 007.xml │ │ │ │ ├── NegativeDataPropertyAssertion │ │ │ │ ├── 001.func │ │ │ │ ├── 001.ttl │ │ │ │ └── 001.xml │ │ │ │ ├── NegativeObjectPropertyAssertion │ │ │ │ ├── 001.func │ │ │ │ ├── 001.ttl │ │ │ │ └── 001.xml │ │ │ │ ├── ObjectPropertyChain │ │ │ │ ├── 001.func │ │ │ │ ├── 001.ttl │ │ │ │ ├── 001.xml │ │ │ │ └── BJP │ │ │ │ │ ├── 002.func │ │ │ │ │ ├── 002.ttl │ │ │ │ │ ├── 002.xml │ │ │ │ │ ├── 003.func │ │ │ │ │ ├── 003.ttl │ │ │ │ │ ├── 003.xml │ │ │ │ │ ├── 004.func │ │ │ │ │ ├── 004.ttl │ │ │ │ │ └── 004.xml │ │ │ │ ├── ObjectQCR │ │ │ │ ├── 001.func │ │ │ │ ├── 001.ttl │ │ │ │ ├── 001.xml │ │ │ │ ├── 002.func │ │ │ │ ├── 002.ttl │ │ │ │ └── 002.xml │ │ │ │ ├── Rational │ │ │ │ ├── 001.func │ │ │ │ ├── 001.ttl │ │ │ │ ├── 001.xml │ │ │ │ ├── 002.func │ │ │ │ ├── 002.ttl │ │ │ │ ├── 002.xml │ │ │ │ ├── 003.func │ │ │ │ ├── 003.ttl │ │ │ │ └── 003.xml │ │ │ │ ├── ReflexiveProperty │ │ │ │ ├── 001.func │ │ │ │ ├── 001.ttl │ │ │ │ └── 001.xml │ │ │ │ ├── SelfRestriction │ │ │ │ ├── 001.func │ │ │ │ ├── 001.ttl │ │ │ │ ├── 001.xml │ │ │ │ ├── 002.func │ │ │ │ ├── 002.ttl │ │ │ │ └── 002.xml │ │ │ │ └── TopObjectProperty │ │ │ │ ├── 001.func │ │ │ │ ├── 001.ttl │ │ │ │ └── 001.xml │ │ ├── One_equals_two.func │ │ ├── One_equals_two.ttl │ │ ├── One_equals_two.xml │ │ ├── Owl2 │ │ │ └── rl │ │ │ │ ├── anonymous │ │ │ │ ├── individual.func │ │ │ │ ├── individual.ttl │ │ │ │ └── individual.xml │ │ │ │ ├── invalid │ │ │ │ ├── leftside │ │ │ │ │ ├── allvaluesfrom.func │ │ │ │ │ ├── allvaluesfrom.ttl │ │ │ │ │ ├── allvaluesfrom.xml │ │ │ │ │ ├── maxcard.func │ │ │ │ │ ├── maxcard.ttl │ │ │ │ │ └── maxcard.xml │ │ │ │ ├── mincard.func │ │ │ │ ├── mincard.ttl │ │ │ │ ├── mincard.xml │ │ │ │ ├── oneof.func │ │ │ │ ├── oneof.ttl │ │ │ │ ├── oneof.xml │ │ │ │ ├── owlreal.func │ │ │ │ ├── owlreal.ttl │ │ │ │ ├── owlreal.xml │ │ │ │ ├── rightside │ │ │ │ │ ├── somevaluesfrom.func │ │ │ │ │ ├── somevaluesfrom.ttl │ │ │ │ │ ├── somevaluesfrom.xml │ │ │ │ │ ├── unionof.func │ │ │ │ │ ├── unionof.ttl │ │ │ │ │ └── unionof.xml │ │ │ │ ├── unionof.func │ │ │ │ ├── unionof.ttl │ │ │ │ └── unionof.xml │ │ │ │ ├── rules │ │ │ │ ├── fp │ │ │ │ │ ├── differentFrom.func │ │ │ │ │ ├── differentFrom.ttl │ │ │ │ │ └── differentFrom.xml │ │ │ │ └── ifp │ │ │ │ │ ├── askey.func │ │ │ │ │ ├── askey.ttl │ │ │ │ │ ├── askey.xml │ │ │ │ │ ├── differentFrom.func │ │ │ │ │ ├── differentFrom.ttl │ │ │ │ │ └── differentFrom.xml │ │ │ │ └── valid │ │ │ │ ├── oneof.func │ │ │ │ ├── oneof.ttl │ │ │ │ ├── oneof.xml │ │ │ │ └── rightside │ │ │ │ ├── allvaluesfrom.func │ │ │ │ ├── allvaluesfrom.ttl │ │ │ │ └── allvaluesfrom.xml │ │ ├── Owlreal │ │ │ └── plus │ │ │ │ ├── oneOf.func │ │ │ │ ├── oneOf.ttl │ │ │ │ └── oneOf.xml │ │ ├── Plus │ │ │ ├── and │ │ │ │ └── minus │ │ │ │ │ └── 0 │ │ │ │ │ ├── integers.func │ │ │ │ │ ├── integers.ttl │ │ │ │ │ └── integers.xml │ │ │ └── minus │ │ │ │ └── 0 │ │ │ │ └── plus │ │ │ │ ├── disjointness.func │ │ │ │ ├── disjointness.ttl │ │ │ │ └── disjointness.xml │ │ ├── Qualified │ │ │ └── cardinality │ │ │ │ ├── boolean.func │ │ │ │ ├── boolean.ttl │ │ │ │ ├── boolean.xml │ │ │ │ └── restricted │ │ │ │ ├── int.func │ │ │ │ ├── int.ttl │ │ │ │ └── int.xml │ │ ├── Rdfbased │ │ │ └── sem │ │ │ │ ├── bool │ │ │ │ ├── complement │ │ │ │ │ ├── inst.func │ │ │ │ │ ├── inst.ttl │ │ │ │ │ └── inst.xml │ │ │ │ ├── intersection │ │ │ │ │ ├── inst │ │ │ │ │ │ ├── comp.func │ │ │ │ │ │ ├── comp.ttl │ │ │ │ │ │ ├── comp.xml │ │ │ │ │ │ ├── expr.func │ │ │ │ │ │ ├── expr.ttl │ │ │ │ │ │ └── expr.xml │ │ │ │ │ ├── term.func │ │ │ │ │ ├── term.ttl │ │ │ │ │ └── term.xml │ │ │ │ └── union │ │ │ │ │ ├── inst │ │ │ │ │ ├── comp.func │ │ │ │ │ ├── comp.ttl │ │ │ │ │ └── comp.xml │ │ │ │ │ ├── term.func │ │ │ │ │ ├── term.ttl │ │ │ │ │ └── term.xml │ │ │ │ ├── chain │ │ │ │ ├── def.func │ │ │ │ ├── def.ttl │ │ │ │ └── def.xml │ │ │ │ ├── char │ │ │ │ ├── asymmetric │ │ │ │ │ ├── inst.func │ │ │ │ │ ├── inst.ttl │ │ │ │ │ ├── inst.xml │ │ │ │ │ ├── term.func │ │ │ │ │ ├── term.ttl │ │ │ │ │ └── term.xml │ │ │ │ ├── functional │ │ │ │ │ ├── inst.func │ │ │ │ │ ├── inst.ttl │ │ │ │ │ └── inst.xml │ │ │ │ ├── inversefunc │ │ │ │ │ ├── data.func │ │ │ │ │ ├── data.ttl │ │ │ │ │ ├── data.xml │ │ │ │ │ ├── inst.func │ │ │ │ │ ├── inst.ttl │ │ │ │ │ └── inst.xml │ │ │ │ ├── irreflexive │ │ │ │ │ ├── inst.func │ │ │ │ │ ├── inst.ttl │ │ │ │ │ └── inst.xml │ │ │ │ ├── symmetric │ │ │ │ │ ├── inst.func │ │ │ │ │ ├── inst.ttl │ │ │ │ │ └── inst.xml │ │ │ │ └── transitive │ │ │ │ │ ├── inst.func │ │ │ │ │ ├── inst.ttl │ │ │ │ │ └── inst.xml │ │ │ │ ├── class │ │ │ │ ├── nothing │ │ │ │ │ ├── ext.func │ │ │ │ │ ├── ext.ttl │ │ │ │ │ ├── ext.xml │ │ │ │ │ ├── term.func │ │ │ │ │ ├── term.ttl │ │ │ │ │ ├── term.xml │ │ │ │ │ ├── type.func │ │ │ │ │ ├── type.ttl │ │ │ │ │ └── type.xml │ │ │ │ └── thing │ │ │ │ │ ├── term.func │ │ │ │ │ ├── term.ttl │ │ │ │ │ ├── term.xml │ │ │ │ │ ├── type.func │ │ │ │ │ ├── type.ttl │ │ │ │ │ └── type.xml │ │ │ │ ├── enum │ │ │ │ └── inst │ │ │ │ │ ├── included.func │ │ │ │ │ ├── included.ttl │ │ │ │ │ └── included.xml │ │ │ │ ├── eqdis │ │ │ │ ├── different │ │ │ │ │ ├── irrflxv.func │ │ │ │ │ ├── irrflxv.ttl │ │ │ │ │ ├── irrflxv.xml │ │ │ │ │ ├── sameas.func │ │ │ │ │ ├── sameas.ttl │ │ │ │ │ └── sameas.xml │ │ │ │ ├── disclass │ │ │ │ │ ├── eqclass.func │ │ │ │ │ ├── eqclass.ttl │ │ │ │ │ ├── eqclass.xml │ │ │ │ │ ├── inst.func │ │ │ │ │ ├── inst.ttl │ │ │ │ │ ├── inst.xml │ │ │ │ │ ├── irrflxv.func │ │ │ │ │ ├── irrflxv.ttl │ │ │ │ │ └── irrflxv.xml │ │ │ │ ├── disprop │ │ │ │ │ ├── eqprop.func │ │ │ │ │ ├── eqprop.ttl │ │ │ │ │ ├── eqprop.xml │ │ │ │ │ ├── inst.func │ │ │ │ │ ├── inst.ttl │ │ │ │ │ ├── inst.xml │ │ │ │ │ ├── irrflxv.func │ │ │ │ │ ├── irrflxv.ttl │ │ │ │ │ └── irrflxv.xml │ │ │ │ ├── eqclass │ │ │ │ │ ├── inst.func │ │ │ │ │ ├── inst.ttl │ │ │ │ │ ├── inst.xml │ │ │ │ │ ├── rflxv.func │ │ │ │ │ ├── rflxv.ttl │ │ │ │ │ ├── rflxv.xml │ │ │ │ │ ├── subclass │ │ │ │ │ │ ├── 1.func │ │ │ │ │ │ ├── 1.ttl │ │ │ │ │ │ ├── 1.xml │ │ │ │ │ │ ├── 2.func │ │ │ │ │ │ ├── 2.ttl │ │ │ │ │ │ └── 2.xml │ │ │ │ │ ├── subst.func │ │ │ │ │ ├── subst.ttl │ │ │ │ │ ├── subst.xml │ │ │ │ │ ├── sym.func │ │ │ │ │ ├── sym.ttl │ │ │ │ │ ├── sym.xml │ │ │ │ │ ├── trans.func │ │ │ │ │ ├── trans.ttl │ │ │ │ │ └── trans.xml │ │ │ │ ├── eqprop │ │ │ │ │ ├── inst.func │ │ │ │ │ ├── inst.ttl │ │ │ │ │ ├── inst.xml │ │ │ │ │ ├── rflxv.func │ │ │ │ │ ├── rflxv.ttl │ │ │ │ │ ├── rflxv.xml │ │ │ │ │ ├── subprop │ │ │ │ │ │ ├── 1.func │ │ │ │ │ │ ├── 1.ttl │ │ │ │ │ │ ├── 1.xml │ │ │ │ │ │ ├── 2.func │ │ │ │ │ │ ├── 2.ttl │ │ │ │ │ │ └── 2.xml │ │ │ │ │ ├── subst.func │ │ │ │ │ ├── subst.ttl │ │ │ │ │ ├── subst.xml │ │ │ │ │ ├── sym.func │ │ │ │ │ ├── sym.ttl │ │ │ │ │ ├── sym.xml │ │ │ │ │ ├── trans.func │ │ │ │ │ ├── trans.ttl │ │ │ │ │ └── trans.xml │ │ │ │ └── sameas │ │ │ │ │ ├── rflxv.func │ │ │ │ │ ├── rflxv.ttl │ │ │ │ │ ├── rflxv.xml │ │ │ │ │ ├── subst.func │ │ │ │ │ ├── subst.ttl │ │ │ │ │ ├── subst.xml │ │ │ │ │ ├── sym.func │ │ │ │ │ ├── sym.ttl │ │ │ │ │ ├── sym.xml │ │ │ │ │ ├── trans.func │ │ │ │ │ ├── trans.ttl │ │ │ │ │ └── trans.xml │ │ │ │ ├── inv │ │ │ │ ├── inst.func │ │ │ │ ├── inst.ttl │ │ │ │ └── inst.xml │ │ │ │ ├── key │ │ │ │ ├── def.func │ │ │ │ ├── def.ttl │ │ │ │ └── def.xml │ │ │ │ ├── ndis │ │ │ │ ├── alldifferent │ │ │ │ │ ├── fw.func │ │ │ │ │ ├── fw.ttl │ │ │ │ │ ├── fw.xml │ │ │ │ │ └── fw │ │ │ │ │ │ ├── distinctmembers.func │ │ │ │ │ │ ├── distinctmembers.ttl │ │ │ │ │ │ └── distinctmembers.xml │ │ │ │ ├── alldisjointclasses │ │ │ │ │ ├── fw.func │ │ │ │ │ ├── fw.ttl │ │ │ │ │ └── fw.xml │ │ │ │ └── alldisjointproperties │ │ │ │ │ ├── fw.func │ │ │ │ │ ├── fw.ttl │ │ │ │ │ └── fw.xml │ │ │ │ ├── npa │ │ │ │ ├── dat │ │ │ │ │ ├── fw.func │ │ │ │ │ ├── fw.ttl │ │ │ │ │ └── fw.xml │ │ │ │ └── ind │ │ │ │ │ ├── fw.func │ │ │ │ │ ├── fw.ttl │ │ │ │ │ └── fw.xml │ │ │ │ ├── prop │ │ │ │ ├── backwardcompatiblewith │ │ │ │ │ └── type │ │ │ │ │ │ ├── annot.func │ │ │ │ │ │ ├── annot.ttl │ │ │ │ │ │ └── annot.xml │ │ │ │ ├── comment │ │ │ │ │ ├── type.func │ │ │ │ │ ├── type.ttl │ │ │ │ │ └── type.xml │ │ │ │ ├── deprecated │ │ │ │ │ ├── type.func │ │ │ │ │ ├── type.ttl │ │ │ │ │ └── type.xml │ │ │ │ ├── incompatiblewith │ │ │ │ │ └── type │ │ │ │ │ │ ├── annot.func │ │ │ │ │ │ ├── annot.ttl │ │ │ │ │ │ └── annot.xml │ │ │ │ ├── isdefinedby │ │ │ │ │ ├── type.func │ │ │ │ │ ├── type.ttl │ │ │ │ │ └── type.xml │ │ │ │ ├── label │ │ │ │ │ ├── type.func │ │ │ │ │ ├── type.ttl │ │ │ │ │ └── type.xml │ │ │ │ ├── priorversion │ │ │ │ │ └── type │ │ │ │ │ │ ├── annot.func │ │ │ │ │ │ ├── annot.ttl │ │ │ │ │ │ └── annot.xml │ │ │ │ ├── seealso │ │ │ │ │ ├── type.func │ │ │ │ │ ├── type.ttl │ │ │ │ │ └── type.xml │ │ │ │ └── versioninfo │ │ │ │ │ ├── type.func │ │ │ │ │ ├── type.ttl │ │ │ │ │ └── type.xml │ │ │ │ ├── rdfs │ │ │ │ ├── domain │ │ │ │ │ ├── cond.func │ │ │ │ │ ├── cond.ttl │ │ │ │ │ └── cond.xml │ │ │ │ ├── range │ │ │ │ │ ├── cond.func │ │ │ │ │ ├── cond.ttl │ │ │ │ │ └── cond.xml │ │ │ │ ├── subclass │ │ │ │ │ ├── cond.func │ │ │ │ │ ├── cond.ttl │ │ │ │ │ ├── cond.xml │ │ │ │ │ ├── trans.func │ │ │ │ │ ├── trans.ttl │ │ │ │ │ └── trans.xml │ │ │ │ └── subprop │ │ │ │ │ ├── cond.func │ │ │ │ │ ├── cond.ttl │ │ │ │ │ ├── cond.xml │ │ │ │ │ ├── trans.func │ │ │ │ │ ├── trans.ttl │ │ │ │ │ └── trans.xml │ │ │ │ ├── rdfsext │ │ │ │ ├── domain │ │ │ │ │ ├── subprop.func │ │ │ │ │ ├── subprop.ttl │ │ │ │ │ ├── subprop.xml │ │ │ │ │ ├── superclass.func │ │ │ │ │ ├── superclass.ttl │ │ │ │ │ └── superclass.xml │ │ │ │ └── range │ │ │ │ │ ├── subprop.func │ │ │ │ │ ├── subprop.ttl │ │ │ │ │ ├── subprop.xml │ │ │ │ │ ├── superclass.func │ │ │ │ │ ├── superclass.ttl │ │ │ │ │ └── superclass.xml │ │ │ │ └── restrict │ │ │ │ ├── allvalues │ │ │ │ ├── cmp │ │ │ │ │ ├── class.func │ │ │ │ │ ├── class.ttl │ │ │ │ │ ├── class.xml │ │ │ │ │ ├── prop.func │ │ │ │ │ ├── prop.ttl │ │ │ │ │ └── prop.xml │ │ │ │ └── inst │ │ │ │ │ ├── obj.func │ │ │ │ │ ├── obj.ttl │ │ │ │ │ └── obj.xml │ │ │ │ ├── hasvalue │ │ │ │ ├── cmp │ │ │ │ │ ├── prop.func │ │ │ │ │ ├── prop.ttl │ │ │ │ │ └── prop.xml │ │ │ │ └── inst │ │ │ │ │ ├── obj.func │ │ │ │ │ ├── obj.ttl │ │ │ │ │ ├── obj.xml │ │ │ │ │ ├── subj.func │ │ │ │ │ ├── subj.ttl │ │ │ │ │ └── subj.xml │ │ │ │ ├── maxcard │ │ │ │ └── inst │ │ │ │ │ └── obj │ │ │ │ │ ├── one.func │ │ │ │ │ ├── one.ttl │ │ │ │ │ ├── one.xml │ │ │ │ │ ├── zero.func │ │ │ │ │ ├── zero.ttl │ │ │ │ │ └── zero.xml │ │ │ │ ├── maxqcr │ │ │ │ └── inst │ │ │ │ │ └── obj │ │ │ │ │ ├── one.func │ │ │ │ │ ├── one.ttl │ │ │ │ │ ├── one.xml │ │ │ │ │ ├── zero.func │ │ │ │ │ ├── zero.ttl │ │ │ │ │ └── zero.xml │ │ │ │ └── somevalues │ │ │ │ ├── cmp │ │ │ │ ├── class.func │ │ │ │ ├── class.ttl │ │ │ │ ├── class.xml │ │ │ │ ├── prop.func │ │ │ │ ├── prop.ttl │ │ │ │ └── prop.xml │ │ │ │ └── inst │ │ │ │ ├── subj.func │ │ │ │ ├── subj.ttl │ │ │ │ └── subj.xml │ │ ├── RoleChainViolationLumen.func │ │ ├── RoleChainViolationLumen.ttl │ │ ├── RoleChainViolationLumen.xml │ │ ├── Somevaluesfrom2bnode.func │ │ ├── Somevaluesfrom2bnode.ttl │ │ ├── Somevaluesfrom2bnode.xml │ │ ├── String │ │ │ └── integer │ │ │ │ ├── clash.func │ │ │ │ ├── clash.ttl │ │ │ │ └── clash.xml │ │ └── TestCase-WebOnt │ │ │ ├── AllDifferent │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ └── 001.xml │ │ │ ├── AnnotationProperty │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ ├── 002.xml │ │ │ ├── 003.func │ │ │ ├── 003.ttl │ │ │ ├── 003.xml │ │ │ ├── 004.func │ │ │ ├── 004.ttl │ │ │ └── 004.xml │ │ │ ├── Class │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ ├── 002.xml │ │ │ ├── 003.func │ │ │ ├── 003.ttl │ │ │ ├── 003.xml │ │ │ ├── 004.func │ │ │ ├── 004.ttl │ │ │ ├── 004.xml │ │ │ ├── 005.func │ │ │ ├── 005.ttl │ │ │ ├── 005.xml │ │ │ ├── 005 │ │ │ │ ├── direct.func │ │ │ │ ├── direct.ttl │ │ │ │ └── direct.xml │ │ │ ├── 006.func │ │ │ ├── 006.ttl │ │ │ └── 006.xml │ │ │ ├── DatatypeProperty │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ └── 001.xml │ │ │ ├── FunctionalProperty │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ ├── 002.xml │ │ │ ├── 003.func │ │ │ ├── 003.ttl │ │ │ ├── 003.xml │ │ │ ├── 004.func │ │ │ ├── 004.ttl │ │ │ ├── 004.xml │ │ │ ├── 005.func │ │ │ ├── 005.ttl │ │ │ └── 005.xml │ │ │ ├── I4.5 │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ └── 002.xml │ │ │ ├── I4.6 │ │ │ ├── 003.func │ │ │ ├── 003.ttl │ │ │ ├── 003.xml │ │ │ ├── 004.func │ │ │ ├── 004.ttl │ │ │ ├── 004.xml │ │ │ ├── 005.func │ │ │ ├── 005.ttl │ │ │ ├── 005.xml │ │ │ └── 005 │ │ │ │ ├── Direct.func │ │ │ │ ├── Direct.ttl │ │ │ │ └── Direct.xml │ │ │ ├── I5.1 │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 010.func │ │ │ ├── 010.ttl │ │ │ └── 010.xml │ │ │ ├── I5.2 │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ ├── 002.xml │ │ │ ├── 003.func │ │ │ ├── 003.ttl │ │ │ ├── 003.xml │ │ │ ├── 004.func │ │ │ ├── 004.ttl │ │ │ ├── 004.xml │ │ │ ├── 005.func │ │ │ ├── 005.ttl │ │ │ ├── 005.xml │ │ │ ├── 006.func │ │ │ ├── 006.ttl │ │ │ ├── 006.xml │ │ │ ├── 010.func │ │ │ ├── 010.ttl │ │ │ ├── 010.xml │ │ │ ├── 011.func │ │ │ ├── 011.ttl │ │ │ └── 011.xml │ │ │ ├── I5.21 │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ └── 002.xml │ │ │ ├── I5.24 │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ ├── 002.xml │ │ │ ├── 003.func │ │ │ ├── 003.ttl │ │ │ ├── 003.xml │ │ │ ├── 004.func │ │ │ ├── 004.ttl │ │ │ └── 004.xml │ │ │ ├── I5.26 │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ ├── 002.xml │ │ │ ├── 003.func │ │ │ ├── 003.ttl │ │ │ ├── 003.xml │ │ │ ├── 004.func │ │ │ ├── 004.ttl │ │ │ ├── 004.xml │ │ │ ├── 005.func │ │ │ ├── 005.ttl │ │ │ ├── 005.xml │ │ │ ├── 006.func │ │ │ ├── 006.ttl │ │ │ ├── 006.xml │ │ │ ├── 007.func │ │ │ ├── 007.ttl │ │ │ ├── 007.xml │ │ │ ├── 009.func │ │ │ ├── 009.ttl │ │ │ ├── 009.xml │ │ │ ├── 010.func │ │ │ ├── 010.ttl │ │ │ └── 010.xml │ │ │ ├── I5.3 │ │ │ ├── 005.func │ │ │ ├── 005.ttl │ │ │ ├── 005.xml │ │ │ ├── 006.func │ │ │ ├── 006.ttl │ │ │ ├── 006.xml │ │ │ ├── 007.func │ │ │ ├── 007.ttl │ │ │ ├── 007.xml │ │ │ ├── 008.func │ │ │ ├── 008.ttl │ │ │ ├── 008.xml │ │ │ ├── 009.func │ │ │ ├── 009.ttl │ │ │ ├── 009.xml │ │ │ ├── 010.func │ │ │ ├── 010.ttl │ │ │ ├── 010.xml │ │ │ ├── 011.func │ │ │ ├── 011.ttl │ │ │ ├── 011.xml │ │ │ ├── 014.func │ │ │ ├── 014.ttl │ │ │ ├── 014.xml │ │ │ ├── 015.func │ │ │ ├── 015.ttl │ │ │ └── 015.xml │ │ │ ├── I5.5 │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ ├── 002.xml │ │ │ ├── 003.func │ │ │ ├── 003.ttl │ │ │ ├── 003.xml │ │ │ ├── 004.func │ │ │ ├── 004.ttl │ │ │ ├── 004.xml │ │ │ ├── 005.func │ │ │ ├── 005.ttl │ │ │ ├── 005.xml │ │ │ ├── 006.func │ │ │ ├── 006.ttl │ │ │ ├── 006.xml │ │ │ ├── 007.func │ │ │ ├── 007.ttl │ │ │ └── 007.xml │ │ │ ├── I5.8 │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ ├── 002.xml │ │ │ ├── 003.func │ │ │ ├── 003.ttl │ │ │ ├── 003.xml │ │ │ ├── 004.func │ │ │ ├── 004.ttl │ │ │ ├── 004.xml │ │ │ ├── 005.func │ │ │ ├── 005.ttl │ │ │ ├── 005.xml │ │ │ ├── 006.func │ │ │ ├── 006.ttl │ │ │ ├── 006.xml │ │ │ ├── 007.func │ │ │ ├── 007.ttl │ │ │ ├── 007.xml │ │ │ ├── 008.func │ │ │ ├── 008.ttl │ │ │ ├── 008.xml │ │ │ ├── 009.func │ │ │ ├── 009.ttl │ │ │ ├── 009.xml │ │ │ ├── 010.func │ │ │ ├── 010.ttl │ │ │ ├── 010.xml │ │ │ ├── 011.func │ │ │ ├── 011.ttl │ │ │ ├── 011.xml │ │ │ ├── 013.func │ │ │ ├── 013.ttl │ │ │ ├── 013.xml │ │ │ ├── 014.func │ │ │ ├── 014.ttl │ │ │ ├── 014.xml │ │ │ ├── 015.func │ │ │ ├── 015.ttl │ │ │ ├── 015.xml │ │ │ ├── 016.func │ │ │ ├── 016.ttl │ │ │ ├── 016.xml │ │ │ ├── 017.func │ │ │ ├── 017.ttl │ │ │ └── 017.xml │ │ │ ├── I6.1 │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ └── 001.xml │ │ │ ├── InverseFunctionalProperty │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ ├── 002.xml │ │ │ ├── 003.func │ │ │ ├── 003.ttl │ │ │ ├── 003.xml │ │ │ ├── 004.func │ │ │ ├── 004.ttl │ │ │ └── 004.xml │ │ │ ├── Nothing │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ └── 002.xml │ │ │ ├── Ontology │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 003.func │ │ │ ├── 003.ttl │ │ │ ├── 003.xml │ │ │ ├── 004.func │ │ │ ├── 004.ttl │ │ │ └── 004.xml │ │ │ ├── Restriction │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ ├── 002.xml │ │ │ ├── 003.func │ │ │ ├── 003.ttl │ │ │ ├── 003.xml │ │ │ ├── 004.func │ │ │ ├── 004.ttl │ │ │ ├── 004.xml │ │ │ ├── 005.func │ │ │ ├── 005.ttl │ │ │ ├── 005.xml │ │ │ ├── 005 │ │ │ │ ├── direct.func │ │ │ │ ├── direct.ttl │ │ │ │ └── direct.xml │ │ │ ├── 006.func │ │ │ ├── 006.ttl │ │ │ └── 006.xml │ │ │ ├── SymmetricProperty │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ ├── 002.xml │ │ │ ├── 003.func │ │ │ ├── 003.ttl │ │ │ └── 003.xml │ │ │ ├── Thing │ │ │ ├── 003.func │ │ │ ├── 003.ttl │ │ │ ├── 003.xml │ │ │ ├── 004.func │ │ │ ├── 004.ttl │ │ │ ├── 004.xml │ │ │ ├── 005.func │ │ │ ├── 005.ttl │ │ │ └── 005.xml │ │ │ ├── TransitiveProperty │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ └── 002.xml │ │ │ ├── allValuesFrom │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ └── 002.xml │ │ │ ├── backwardCompatibleWith │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ └── 002.xml │ │ │ ├── cardinality │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ ├── 002.xml │ │ │ ├── 003.func │ │ │ ├── 003.ttl │ │ │ ├── 003.xml │ │ │ ├── 004.func │ │ │ ├── 004.ttl │ │ │ ├── 004.xml │ │ │ ├── 006.func │ │ │ ├── 006.ttl │ │ │ └── 006.xml │ │ │ ├── complementOf │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ └── 001.xml │ │ │ ├── description │ │ │ └── logic │ │ │ │ ├── 001.func │ │ │ │ ├── 001.ttl │ │ │ │ ├── 001.xml │ │ │ │ ├── 002.func │ │ │ │ ├── 002.ttl │ │ │ │ ├── 002.xml │ │ │ │ ├── 003.func │ │ │ │ ├── 003.ttl │ │ │ │ ├── 003.xml │ │ │ │ ├── 004.func │ │ │ │ ├── 004.ttl │ │ │ │ ├── 004.xml │ │ │ │ ├── 005.func │ │ │ │ ├── 005.ttl │ │ │ │ ├── 005.xml │ │ │ │ ├── 006.func │ │ │ │ ├── 006.ttl │ │ │ │ ├── 006.xml │ │ │ │ ├── 007.func │ │ │ │ ├── 007.ttl │ │ │ │ ├── 007.xml │ │ │ │ ├── 008.func │ │ │ │ ├── 008.ttl │ │ │ │ ├── 008.xml │ │ │ │ ├── 009.func │ │ │ │ ├── 009.ttl │ │ │ │ ├── 009.xml │ │ │ │ ├── 010.func │ │ │ │ ├── 010.ttl │ │ │ │ ├── 010.xml │ │ │ │ ├── 011.func │ │ │ │ ├── 011.ttl │ │ │ │ ├── 011.xml │ │ │ │ ├── 012.func │ │ │ │ ├── 012.ttl │ │ │ │ ├── 012.xml │ │ │ │ ├── 013.func │ │ │ │ ├── 013.ttl │ │ │ │ ├── 013.xml │ │ │ │ ├── 014.func │ │ │ │ ├── 014.ttl │ │ │ │ ├── 014.xml │ │ │ │ ├── 015.func │ │ │ │ ├── 015.ttl │ │ │ │ ├── 015.xml │ │ │ │ ├── 016.func │ │ │ │ ├── 016.ttl │ │ │ │ ├── 016.xml │ │ │ │ ├── 017.func │ │ │ │ ├── 017.ttl │ │ │ │ ├── 017.xml │ │ │ │ ├── 018.func │ │ │ │ ├── 018.ttl │ │ │ │ ├── 018.xml │ │ │ │ ├── 019.func │ │ │ │ ├── 019.ttl │ │ │ │ ├── 019.xml │ │ │ │ ├── 020.func │ │ │ │ ├── 020.ttl │ │ │ │ ├── 020.xml │ │ │ │ ├── 021.func │ │ │ │ ├── 021.ttl │ │ │ │ ├── 021.xml │ │ │ │ ├── 022.func │ │ │ │ ├── 022.ttl │ │ │ │ ├── 022.xml │ │ │ │ ├── 023.func │ │ │ │ ├── 023.ttl │ │ │ │ ├── 023.xml │ │ │ │ ├── 024.func │ │ │ │ ├── 024.ttl │ │ │ │ ├── 024.xml │ │ │ │ ├── 025.func │ │ │ │ ├── 025.ttl │ │ │ │ ├── 025.xml │ │ │ │ ├── 026.func │ │ │ │ ├── 026.ttl │ │ │ │ ├── 026.xml │ │ │ │ ├── 027.func │ │ │ │ ├── 027.ttl │ │ │ │ ├── 027.xml │ │ │ │ ├── 028.func │ │ │ │ ├── 028.ttl │ │ │ │ ├── 028.xml │ │ │ │ ├── 029.func │ │ │ │ ├── 029.ttl │ │ │ │ ├── 029.xml │ │ │ │ ├── 030.func │ │ │ │ ├── 030.ttl │ │ │ │ ├── 030.xml │ │ │ │ ├── 031.func │ │ │ │ ├── 031.ttl │ │ │ │ ├── 031.xml │ │ │ │ ├── 032.func │ │ │ │ ├── 032.ttl │ │ │ │ ├── 032.xml │ │ │ │ ├── 033.func │ │ │ │ ├── 033.ttl │ │ │ │ ├── 033.xml │ │ │ │ ├── 034.func │ │ │ │ ├── 034.ttl │ │ │ │ ├── 034.xml │ │ │ │ ├── 035.func │ │ │ │ ├── 035.ttl │ │ │ │ ├── 035.xml │ │ │ │ ├── 040.func │ │ │ │ ├── 040.ttl │ │ │ │ ├── 040.xml │ │ │ │ ├── 101.func │ │ │ │ ├── 101.ttl │ │ │ │ ├── 101.xml │ │ │ │ ├── 102.func │ │ │ │ ├── 102.ttl │ │ │ │ ├── 102.xml │ │ │ │ ├── 103.func │ │ │ │ ├── 103.ttl │ │ │ │ ├── 103.xml │ │ │ │ ├── 104.func │ │ │ │ ├── 104.ttl │ │ │ │ ├── 104.xml │ │ │ │ ├── 105.func │ │ │ │ ├── 105.ttl │ │ │ │ ├── 105.xml │ │ │ │ ├── 106.func │ │ │ │ ├── 106.ttl │ │ │ │ ├── 106.xml │ │ │ │ ├── 107.func │ │ │ │ ├── 107.ttl │ │ │ │ ├── 107.xml │ │ │ │ ├── 108.func │ │ │ │ ├── 108.ttl │ │ │ │ ├── 108.xml │ │ │ │ ├── 109.func │ │ │ │ ├── 109.ttl │ │ │ │ ├── 109.xml │ │ │ │ ├── 110.func │ │ │ │ ├── 110.ttl │ │ │ │ ├── 110.xml │ │ │ │ ├── 111.func │ │ │ │ ├── 111.ttl │ │ │ │ ├── 111.xml │ │ │ │ ├── 201.func │ │ │ │ ├── 201.ttl │ │ │ │ ├── 201.xml │ │ │ │ ├── 202.func │ │ │ │ ├── 202.ttl │ │ │ │ ├── 202.xml │ │ │ │ ├── 203.func │ │ │ │ ├── 203.ttl │ │ │ │ ├── 203.xml │ │ │ │ ├── 204.func │ │ │ │ ├── 204.ttl │ │ │ │ ├── 204.xml │ │ │ │ ├── 205.func │ │ │ │ ├── 205.ttl │ │ │ │ ├── 205.xml │ │ │ │ ├── 207.func │ │ │ │ ├── 207.ttl │ │ │ │ ├── 207.xml │ │ │ │ ├── 208.func │ │ │ │ ├── 208.ttl │ │ │ │ ├── 208.xml │ │ │ │ ├── 209.func │ │ │ │ ├── 209.ttl │ │ │ │ ├── 209.xml │ │ │ │ ├── 501.func │ │ │ │ ├── 501.ttl │ │ │ │ ├── 501.xml │ │ │ │ ├── 502.func │ │ │ │ ├── 502.ttl │ │ │ │ ├── 502.xml │ │ │ │ ├── 503.func │ │ │ │ ├── 503.ttl │ │ │ │ ├── 503.xml │ │ │ │ ├── 504.func │ │ │ │ ├── 504.ttl │ │ │ │ ├── 504.xml │ │ │ │ ├── 601.func │ │ │ │ ├── 601.ttl │ │ │ │ ├── 601.xml │ │ │ │ ├── 602.func │ │ │ │ ├── 602.ttl │ │ │ │ ├── 602.xml │ │ │ │ ├── 603.func │ │ │ │ ├── 603.ttl │ │ │ │ ├── 603.xml │ │ │ │ ├── 604.func │ │ │ │ ├── 604.ttl │ │ │ │ ├── 604.xml │ │ │ │ ├── 605.func │ │ │ │ ├── 605.ttl │ │ │ │ ├── 605.xml │ │ │ │ ├── 606.func │ │ │ │ ├── 606.ttl │ │ │ │ ├── 606.xml │ │ │ │ ├── 608.func │ │ │ │ ├── 608.ttl │ │ │ │ ├── 608.xml │ │ │ │ ├── 609.func │ │ │ │ ├── 609.ttl │ │ │ │ ├── 609.xml │ │ │ │ ├── 610.func │ │ │ │ ├── 610.ttl │ │ │ │ ├── 610.xml │ │ │ │ ├── 611.func │ │ │ │ ├── 611.ttl │ │ │ │ ├── 611.xml │ │ │ │ ├── 612.func │ │ │ │ ├── 612.ttl │ │ │ │ ├── 612.xml │ │ │ │ ├── 613.func │ │ │ │ ├── 613.ttl │ │ │ │ ├── 613.xml │ │ │ │ ├── 614.func │ │ │ │ ├── 614.ttl │ │ │ │ ├── 614.xml │ │ │ │ ├── 615.func │ │ │ │ ├── 615.ttl │ │ │ │ ├── 615.xml │ │ │ │ ├── 616.func │ │ │ │ ├── 616.ttl │ │ │ │ ├── 616.xml │ │ │ │ ├── 617.func │ │ │ │ ├── 617.ttl │ │ │ │ ├── 617.xml │ │ │ │ ├── 623.func │ │ │ │ ├── 623.ttl │ │ │ │ ├── 623.xml │ │ │ │ ├── 624.func │ │ │ │ ├── 624.ttl │ │ │ │ ├── 624.xml │ │ │ │ ├── 625.func │ │ │ │ ├── 625.ttl │ │ │ │ ├── 625.xml │ │ │ │ ├── 626.func │ │ │ │ ├── 626.ttl │ │ │ │ ├── 626.xml │ │ │ │ ├── 627.func │ │ │ │ ├── 627.ttl │ │ │ │ ├── 627.xml │ │ │ │ ├── 628.func │ │ │ │ ├── 628.ttl │ │ │ │ ├── 628.xml │ │ │ │ ├── 629.func │ │ │ │ ├── 629.ttl │ │ │ │ ├── 629.xml │ │ │ │ ├── 630.func │ │ │ │ ├── 630.ttl │ │ │ │ ├── 630.xml │ │ │ │ ├── 631.func │ │ │ │ ├── 631.ttl │ │ │ │ ├── 631.xml │ │ │ │ ├── 632.func │ │ │ │ ├── 632.ttl │ │ │ │ ├── 632.xml │ │ │ │ ├── 633.func │ │ │ │ ├── 633.ttl │ │ │ │ ├── 633.xml │ │ │ │ ├── 634.func │ │ │ │ ├── 634.ttl │ │ │ │ ├── 634.xml │ │ │ │ ├── 641.func │ │ │ │ ├── 641.ttl │ │ │ │ ├── 641.xml │ │ │ │ ├── 642.func │ │ │ │ ├── 642.ttl │ │ │ │ ├── 642.xml │ │ │ │ ├── 643.func │ │ │ │ ├── 643.ttl │ │ │ │ ├── 643.xml │ │ │ │ ├── 644.func │ │ │ │ ├── 644.ttl │ │ │ │ ├── 644.xml │ │ │ │ ├── 646.func │ │ │ │ ├── 646.ttl │ │ │ │ ├── 646.xml │ │ │ │ ├── 650.func │ │ │ │ ├── 650.ttl │ │ │ │ ├── 650.xml │ │ │ │ ├── 661.func │ │ │ │ ├── 661.ttl │ │ │ │ ├── 661.xml │ │ │ │ ├── 662.func │ │ │ │ ├── 662.ttl │ │ │ │ ├── 662.xml │ │ │ │ ├── 663.func │ │ │ │ ├── 663.ttl │ │ │ │ ├── 663.xml │ │ │ │ ├── 664.func │ │ │ │ ├── 664.ttl │ │ │ │ ├── 664.xml │ │ │ │ ├── 665.func │ │ │ │ ├── 665.ttl │ │ │ │ ├── 665.xml │ │ │ │ ├── 667.func │ │ │ │ ├── 667.ttl │ │ │ │ ├── 667.xml │ │ │ │ ├── 901.func │ │ │ │ ├── 901.ttl │ │ │ │ ├── 901.xml │ │ │ │ ├── 902.func │ │ │ │ ├── 902.ttl │ │ │ │ ├── 902.xml │ │ │ │ ├── 903.func │ │ │ │ ├── 903.ttl │ │ │ │ ├── 903.xml │ │ │ │ ├── 904.func │ │ │ │ ├── 904.ttl │ │ │ │ ├── 904.xml │ │ │ │ ├── 905.func │ │ │ │ ├── 905.ttl │ │ │ │ ├── 905.xml │ │ │ │ ├── 906.func │ │ │ │ ├── 906.ttl │ │ │ │ ├── 906.xml │ │ │ │ ├── 907.func │ │ │ │ ├── 907.ttl │ │ │ │ ├── 907.xml │ │ │ │ ├── 908.func │ │ │ │ ├── 908.ttl │ │ │ │ ├── 908.xml │ │ │ │ ├── 909.func │ │ │ │ ├── 909.ttl │ │ │ │ ├── 909.xml │ │ │ │ ├── 910.func │ │ │ │ ├── 910.ttl │ │ │ │ └── 910.xml │ │ │ ├── differentFrom │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ └── 002.xml │ │ │ ├── disjointWith │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ ├── 002.xml │ │ │ ├── 003.func │ │ │ ├── 003.ttl │ │ │ ├── 003.xml │ │ │ ├── 004.func │ │ │ ├── 004.ttl │ │ │ ├── 004.xml │ │ │ ├── 005.func │ │ │ ├── 005.ttl │ │ │ ├── 005.xml │ │ │ ├── 006.func │ │ │ ├── 006.ttl │ │ │ ├── 006.xml │ │ │ ├── 007.func │ │ │ ├── 007.ttl │ │ │ ├── 007.xml │ │ │ ├── 008.func │ │ │ ├── 008.ttl │ │ │ ├── 008.xml │ │ │ ├── 009.func │ │ │ ├── 009.ttl │ │ │ ├── 009.xml │ │ │ ├── 010.func │ │ │ ├── 010.ttl │ │ │ └── 010.xml │ │ │ ├── distinctMembers │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ └── 001.xml │ │ │ ├── equivalentClass │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ ├── 002.xml │ │ │ ├── 003.func │ │ │ ├── 003.ttl │ │ │ ├── 003.xml │ │ │ ├── 004.func │ │ │ ├── 004.ttl │ │ │ ├── 004.xml │ │ │ ├── 005.func │ │ │ ├── 005.ttl │ │ │ ├── 005.xml │ │ │ ├── 006.func │ │ │ ├── 006.ttl │ │ │ ├── 006.xml │ │ │ ├── 007.func │ │ │ ├── 007.ttl │ │ │ ├── 007.xml │ │ │ ├── 008.func │ │ │ ├── 008.ttl │ │ │ ├── 008.xml │ │ │ ├── 008 │ │ │ │ ├── Direct.func │ │ │ │ ├── Direct.ttl │ │ │ │ └── Direct.xml │ │ │ ├── 009.func │ │ │ ├── 009.ttl │ │ │ └── 009.xml │ │ │ ├── equivalentProperty │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ ├── 002.xml │ │ │ ├── 003.func │ │ │ ├── 003.ttl │ │ │ ├── 003.xml │ │ │ ├── 004.func │ │ │ ├── 004.ttl │ │ │ ├── 004.xml │ │ │ ├── 005.func │ │ │ ├── 005.ttl │ │ │ ├── 005.xml │ │ │ ├── 006.func │ │ │ ├── 006.ttl │ │ │ └── 006.xml │ │ │ ├── extra │ │ │ └── credit │ │ │ │ ├── 002.func │ │ │ │ ├── 002.ttl │ │ │ │ ├── 002.xml │ │ │ │ ├── 003.func │ │ │ │ ├── 003.ttl │ │ │ │ ├── 003.xml │ │ │ │ ├── 004.func │ │ │ │ ├── 004.ttl │ │ │ │ └── 004.xml │ │ │ ├── imports │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ ├── 002.xml │ │ │ ├── 003.func │ │ │ ├── 003.ttl │ │ │ ├── 003.xml │ │ │ ├── 004.func │ │ │ ├── 004.ttl │ │ │ ├── 004.xml │ │ │ ├── 005.func │ │ │ ├── 005.ttl │ │ │ ├── 005.xml │ │ │ ├── 006.func │ │ │ ├── 006.ttl │ │ │ ├── 006.xml │ │ │ ├── 007.func │ │ │ ├── 007.ttl │ │ │ ├── 007.xml │ │ │ ├── 008.func │ │ │ ├── 008.ttl │ │ │ ├── 008.xml │ │ │ ├── 010.func │ │ │ ├── 010.ttl │ │ │ ├── 010.xml │ │ │ ├── 011.func │ │ │ ├── 011.ttl │ │ │ ├── 011.xml │ │ │ ├── 012.func │ │ │ ├── 012.ttl │ │ │ ├── 012.xml │ │ │ ├── 013.func │ │ │ ├── 013.ttl │ │ │ ├── 013.xml │ │ │ ├── 014.func │ │ │ ├── 014.ttl │ │ │ └── 014.xml │ │ │ ├── intersectionOf │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ └── 001.xml │ │ │ ├── inverseOf │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ └── 001.xml │ │ │ ├── maxCardinality │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ └── 001.xml │ │ │ ├── miscellaneous │ │ │ ├── 302 │ │ │ │ ├── Direct.func │ │ │ │ ├── Direct.ttl │ │ │ │ └── Direct.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ ├── 002.xml │ │ │ ├── 011.func │ │ │ ├── 011.ttl │ │ │ ├── 011.xml │ │ │ ├── 102.func │ │ │ ├── 102.ttl │ │ │ ├── 102.xml │ │ │ ├── 103.func │ │ │ ├── 103.ttl │ │ │ ├── 103.xml │ │ │ ├── 202.func │ │ │ ├── 203.func │ │ │ ├── 204.func │ │ │ ├── 204.ttl │ │ │ ├── 204.xml │ │ │ ├── 301.func │ │ │ ├── 301.ttl │ │ │ ├── 301.xml │ │ │ ├── 302.func │ │ │ ├── 302.ttl │ │ │ ├── 302.xml │ │ │ ├── 303.func │ │ │ ├── 303.ttl │ │ │ └── 303.xml │ │ │ ├── oneOf │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ ├── 002.xml │ │ │ ├── 003.func │ │ │ ├── 003.ttl │ │ │ ├── 003.xml │ │ │ ├── 004.func │ │ │ ├── 004.ttl │ │ │ └── 004.xml │ │ │ ├── sameAs │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ └── 001.xml │ │ │ ├── someValuesFrom │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ ├── 002.xml │ │ │ ├── 003.func │ │ │ ├── 003.ttl │ │ │ └── 003.xml │ │ │ └── unionOf │ │ │ ├── 001.func │ │ │ ├── 001.ttl │ │ │ ├── 001.xml │ │ │ ├── 002.func │ │ │ ├── 002.ttl │ │ │ ├── 002.xml │ │ │ ├── 003.func │ │ │ ├── 003.ttl │ │ │ ├── 003.xml │ │ │ ├── 004.func │ │ │ ├── 004.ttl │ │ │ └── 004.xml │ ├── fixed_data │ │ ├── Direct_Semantics_Literal_disjoint_from_Thing.ttl │ │ ├── Direct_Semantics_Literal_disjoint_from_Thing.xml │ │ ├── FS2RDF │ │ │ ├── different │ │ │ │ └── individuals │ │ │ │ │ └── 2 │ │ │ │ │ ├── annotation │ │ │ │ │ └── ar.ttl │ │ │ │ │ └── ar.ttl │ │ │ ├── disjoint │ │ │ │ └── classes │ │ │ │ │ └── 2 │ │ │ │ │ └── annotation │ │ │ │ │ └── ar.ttl │ │ │ ├── equivalent │ │ │ │ └── classes │ │ │ │ │ ├── 2 │ │ │ │ │ └── annotation │ │ │ │ │ │ └── ar.ttl │ │ │ │ │ └── 3 │ │ │ │ │ └── annotation │ │ │ │ │ └── ar.ttl │ │ │ ├── literals │ │ │ │ └── ar.ttl │ │ │ ├── ontology │ │ │ │ └── annotation │ │ │ │ │ └── annotation │ │ │ │ │ └── ar.ttl │ │ │ └── same │ │ │ │ └── individual │ │ │ │ ├── 2 │ │ │ │ └── annotation │ │ │ │ │ └── ar.ttl │ │ │ │ └── 3 │ │ │ │ └── annotation │ │ │ │ └── ar.xml │ │ ├── New │ │ │ └── Feature │ │ │ │ ├── AnnotationAnnotations │ │ │ │ └── 001.ttl │ │ │ │ ├── DisjointDataProperties │ │ │ │ └── 001.ttl │ │ │ │ ├── Keys │ │ │ │ └── 002.ttl │ │ │ │ └── ObjectQR │ │ │ │ ├── 001.ttl │ │ │ │ └── 002.ttl │ │ ├── Owl2 │ │ │ └── rl │ │ │ │ └── rules │ │ │ │ ├── fp │ │ │ │ └── differentFrom.ttl │ │ │ │ └── ifp │ │ │ │ ├── askey.ttl │ │ │ │ └── differentFrom.ttl │ │ ├── README.md │ │ ├── Rdfbased │ │ │ └── sem │ │ │ │ ├── chain │ │ │ │ └── def.ttl │ │ │ │ ├── eqdis │ │ │ │ ├── different │ │ │ │ │ └── sameas.ttl │ │ │ │ └── disclass │ │ │ │ │ └── irrflxv.ttl │ │ │ │ ├── key │ │ │ │ └── def.ttl │ │ │ │ ├── ndis │ │ │ │ └── alldisjointproperties │ │ │ │ │ └── fw.ttl │ │ │ │ └── npa │ │ │ │ └── dat │ │ │ │ └── 501.ttl │ │ └── TestCase-WebOnt │ │ │ ├── I5.1 │ │ │ └── 001.ttl │ │ │ ├── I5.26 │ │ │ ├── 004.func │ │ │ └── 005.func │ │ │ ├── I5.3 │ │ │ └── 009.ttl │ │ │ ├── I5.8 │ │ │ ├── 013.ttl │ │ │ └── 015.ttl │ │ │ ├── I6.1 │ │ │ └── 001.ttl │ │ │ ├── description │ │ │ └── logic │ │ │ │ └── 502.ttl │ │ │ ├── differentFrom │ │ │ └── 001.ttl │ │ │ ├── disjointWith │ │ │ ├── 008.func │ │ │ ├── 009.func │ │ │ └── 010.ttl │ │ │ ├── imports │ │ │ ├── 001.ttl │ │ │ ├── 003.ttl │ │ │ ├── 006.ttl │ │ │ ├── 007.ttl │ │ │ └── 011.ttl │ │ │ ├── maxCardinality │ │ │ └── 001.ttl │ │ │ └── miscellaneous │ │ │ └── 002.ttl │ ├── syntax_converter.py │ └── test_owl2.py ├── test_project_documentation │ ├── __init__.py │ └── test_readme.py ├── test_terminals │ ├── __init__.py │ └── test_terminals.py ├── test_writers │ ├── __init__.py │ └── test_functionalwriter.py └── utils │ ├── __init__.py │ ├── base.py │ ├── build_test_harness.py │ ├── functional_comparator.py │ └── rdf_comparator.py └── tox.ini /.gitattributes: -------------------------------------------------------------------------------- 1 | tests/data/cr.ofn.txt eol=crlf -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.github/workflows/pypi-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/.github/workflows/pypi-publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/AUTHORS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/ChangeLog -------------------------------------------------------------------------------- /Grammar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/Grammar.txt -------------------------------------------------------------------------------- /ImplementationNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/ImplementationNotes.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/LICENSE -------------------------------------------------------------------------------- /OWL_2_Test_Cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/OWL_2_Test_Cases.md -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/README.md -------------------------------------------------------------------------------- /TestCaseIssues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/TestCaseIssues.md -------------------------------------------------------------------------------- /UseCase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/UseCase.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/_config.yml -------------------------------------------------------------------------------- /docs/filler: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/docs/index.md -------------------------------------------------------------------------------- /funowl/ImplementationNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/ImplementationNotes.md -------------------------------------------------------------------------------- /funowl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/__init__.py -------------------------------------------------------------------------------- /funowl/annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/annotations.py -------------------------------------------------------------------------------- /funowl/assertions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/assertions.py -------------------------------------------------------------------------------- /funowl/axioms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/axioms.py -------------------------------------------------------------------------------- /funowl/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /funowl/base/cast_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/base/cast_function.py -------------------------------------------------------------------------------- /funowl/base/clone_subgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/base/clone_subgraph.py -------------------------------------------------------------------------------- /funowl/base/fun_owl_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/base/fun_owl_base.py -------------------------------------------------------------------------------- /funowl/base/fun_owl_choice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/base/fun_owl_choice.py -------------------------------------------------------------------------------- /funowl/base/list_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/base/list_support.py -------------------------------------------------------------------------------- /funowl/base/rdftriple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/base/rdftriple.py -------------------------------------------------------------------------------- /funowl/class_axioms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/class_axioms.py -------------------------------------------------------------------------------- /funowl/class_expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/class_expressions.py -------------------------------------------------------------------------------- /funowl/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/cli.py -------------------------------------------------------------------------------- /funowl/converters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /funowl/converters/functional_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/converters/functional_converter.py -------------------------------------------------------------------------------- /funowl/converters/rdf_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/converters/rdf_converter.py -------------------------------------------------------------------------------- /funowl/dataproperty_axioms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/dataproperty_axioms.py -------------------------------------------------------------------------------- /funowl/dataproperty_expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/dataproperty_expressions.py -------------------------------------------------------------------------------- /funowl/dataranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/dataranges.py -------------------------------------------------------------------------------- /funowl/declarations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/declarations.py -------------------------------------------------------------------------------- /funowl/general_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/general_definitions.py -------------------------------------------------------------------------------- /funowl/identifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/identifiers.py -------------------------------------------------------------------------------- /funowl/individuals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/individuals.py -------------------------------------------------------------------------------- /funowl/literals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/literals.py -------------------------------------------------------------------------------- /funowl/objectproperty_axioms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/objectproperty_axioms.py -------------------------------------------------------------------------------- /funowl/objectproperty_expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/objectproperty_expressions.py -------------------------------------------------------------------------------- /funowl/ontology_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/ontology_document.py -------------------------------------------------------------------------------- /funowl/prefix_declarations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/prefix_declarations.py -------------------------------------------------------------------------------- /funowl/terminals/Patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/terminals/Patterns.py -------------------------------------------------------------------------------- /funowl/terminals/Terminals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/terminals/Terminals.py -------------------------------------------------------------------------------- /funowl/terminals/TypingHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/terminals/TypingHelper.py -------------------------------------------------------------------------------- /funowl/terminals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /funowl/writers/FunctionalWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/funowl/writers/FunctionalWriter.py -------------------------------------------------------------------------------- /funowl/writers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /grammar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/grammar.md -------------------------------------------------------------------------------- /images/owlinbucket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/images/owlinbucket.jpg -------------------------------------------------------------------------------- /notebooks/SubclassToEquivalent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/notebooks/SubclassToEquivalent.ipynb -------------------------------------------------------------------------------- /notebooks/basics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/notebooks/basics.ipynb -------------------------------------------------------------------------------- /notebooks/pizza.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/notebooks/pizza.ipynb -------------------------------------------------------------------------------- /notebooks/singleton_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/notebooks/singleton_property.py -------------------------------------------------------------------------------- /notebooks/singleton_property_original.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/notebooks/singleton_property_original.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/data/all.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Bnode2somevaluesfrom.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Bnode2somevaluesfrom.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Chain2trans.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Chain2trans.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Consistent/but/all/unsat.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Consistent/but/all/unsat.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Consistent/dateTime.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Consistent/dateTime.func -------------------------------------------------------------------------------- /tests/data/all_test_files/Consistent/integer/filler.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Consistent/integer/filler.func -------------------------------------------------------------------------------- /tests/data/all_test_files/Datacomplement/plus/restrictions.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Datacomplement/plus/restrictions.func -------------------------------------------------------------------------------- /tests/data/all_test_files/Datatype/DataComplementOf/001.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Datatype/DataComplementOf/001.func -------------------------------------------------------------------------------- /tests/data/all_test_files/Datatype/DataComplementOf/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Datatype/DataComplementOf/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Datatype/Float/Discrete/001.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Datatype/Float/Discrete/001.func -------------------------------------------------------------------------------- /tests/data/all_test_files/Datatype/Float/Discrete/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Datatype/Float/Discrete/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Different/types/plus/complement.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Different/types/plus/complement.func -------------------------------------------------------------------------------- /tests/data/all_test_files/DisjointClasses/001.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/DisjointClasses/001.func -------------------------------------------------------------------------------- /tests/data/all_test_files/DisjointClasses/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/DisjointClasses/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/DisjointClasses/002.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/DisjointClasses/002.func -------------------------------------------------------------------------------- /tests/data/all_test_files/DisjointClasses/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/DisjointClasses/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/DisjointClasses/003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/DisjointClasses/003.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/different/individuals/2/ar.func: -------------------------------------------------------------------------------- 1 | Prefix(: = ) 2 | Ontology( 3 | DifferentIndividuals( :a :b )) -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/different/individuals/2/ar.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/FS2RDF/different/individuals/2/ar.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/different/individuals/3/ar.func: -------------------------------------------------------------------------------- 1 | Prefix(: = ) 2 | Ontology( 3 | DifferentIndividuals( :a :b :c )) -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/different/individuals/3/ar.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/FS2RDF/different/individuals/3/ar.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/disjoint/classes/2/ar.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/FS2RDF/disjoint/classes/2/ar.func -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/disjoint/classes/2/ar.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/FS2RDF/disjoint/classes/2/ar.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/disjoint/classes/3/ar.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/FS2RDF/disjoint/classes/3/ar.func -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/disjoint/classes/3/ar.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/FS2RDF/disjoint/classes/3/ar.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/domain/range/expression/ar.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/FS2RDF/domain/range/expression/ar.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/domain/range/simple/ar.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/FS2RDF/domain/range/simple/ar.func -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/domain/range/simple/ar.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/FS2RDF/domain/range/simple/ar.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/equivalent/classes/2/ar.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/FS2RDF/equivalent/classes/2/ar.func -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/equivalent/classes/2/ar.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/FS2RDF/equivalent/classes/2/ar.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/equivalent/classes/3/ar.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/FS2RDF/equivalent/classes/3/ar.func -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/equivalent/classes/3/ar.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/FS2RDF/equivalent/classes/3/ar.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/literals/ar.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/FS2RDF/literals/ar.func -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/literals/ar.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/FS2RDF/literals/ar.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/no/builtin/prefixes/ar.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/FS2RDF/no/builtin/prefixes/ar.func -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/no/builtin/prefixes/ar.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/FS2RDF/no/builtin/prefixes/ar.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/property/attributes/ar.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/FS2RDF/property/attributes/ar.func -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/property/attributes/ar.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/FS2RDF/property/attributes/ar.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/propertychain/2/ar.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/FS2RDF/propertychain/2/ar.func -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/propertychain/2/ar.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/FS2RDF/propertychain/2/ar.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/same/individual/2/ar.func: -------------------------------------------------------------------------------- 1 | Prefix(: = ) 2 | Ontology( 3 | SameIndividual( :a :b )) -------------------------------------------------------------------------------- /tests/data/all_test_files/FS2RDF/same/individual/2/ar.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/FS2RDF/same/individual/2/ar.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Footnote/not/about/self.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Footnote/not/about/self.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Functionality/clash.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Functionality/clash.func -------------------------------------------------------------------------------- /tests/data/all_test_files/Inconsistent/byte/filler.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Inconsistent/byte/filler.func -------------------------------------------------------------------------------- /tests/data/all_test_files/Inconsistent/integer/filler.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Inconsistent/integer/filler.func -------------------------------------------------------------------------------- /tests/data/all_test_files/Inconsistent_datatypes.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Inconsistent_datatypes.func -------------------------------------------------------------------------------- /tests/data/all_test_files/Minus/inf/not/owlreal.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Minus/inf/not/owlreal.func -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/AxiomAnnotations/001.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/AxiomAnnotations/001.func -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/AxiomAnnotations/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/AxiomAnnotations/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/DataQCR/001.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/DataQCR/001.func -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/DataQCR/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/DataQCR/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/DisjointUnion/001.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/DisjointUnion/001.func -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/DisjointUnion/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/DisjointUnion/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/Keys/001.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/Keys/001.func -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/Keys/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/Keys/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/Keys/002.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/Keys/002.func -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/Keys/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/Keys/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/Keys/003.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/Keys/003.func -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/Keys/003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/Keys/003.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/Keys/004.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/Keys/004.func -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/Keys/004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/Keys/004.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/Keys/005.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/Keys/005.func -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/Keys/005.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/Keys/005.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/Keys/006.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/Keys/006.func -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/Keys/006.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/Keys/006.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/Keys/007.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/Keys/007.func -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/Keys/007.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/Keys/007.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/ObjectQCR/001.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/ObjectQCR/001.func -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/ObjectQCR/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/ObjectQCR/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/ObjectQCR/002.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/ObjectQCR/002.func -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/ObjectQCR/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/ObjectQCR/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/Rational/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/Rational/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/Rational/002.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/Rational/002.func -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/Rational/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/Rational/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/Rational/003.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/Rational/003.func -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/Rational/003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/Rational/003.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/ReflexiveProperty/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/ReflexiveProperty/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/SelfRestriction/001.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/SelfRestriction/001.func -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/SelfRestriction/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/SelfRestriction/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/SelfRestriction/002.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/SelfRestriction/002.func -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/SelfRestriction/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/SelfRestriction/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/New/Feature/TopObjectProperty/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/New/Feature/TopObjectProperty/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/One_equals_two.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/One_equals_two.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Owl2/rl/anonymous/individual.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Owl2/rl/anonymous/individual.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Owl2/rl/invalid/leftside/maxcard.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Owl2/rl/invalid/leftside/maxcard.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Owl2/rl/invalid/mincard.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Owl2/rl/invalid/mincard.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Owl2/rl/invalid/oneof.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Owl2/rl/invalid/oneof.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Owl2/rl/invalid/owlreal.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Owl2/rl/invalid/owlreal.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Owl2/rl/invalid/rightside/unionof.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Owl2/rl/invalid/rightside/unionof.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Owl2/rl/invalid/unionof.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Owl2/rl/invalid/unionof.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Owl2/rl/rules/fp/differentFrom.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Owl2/rl/rules/fp/differentFrom.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Owl2/rl/rules/ifp/askey.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Owl2/rl/rules/ifp/askey.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Owl2/rl/rules/ifp/differentFrom.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Owl2/rl/rules/ifp/differentFrom.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Owl2/rl/valid/oneof.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Owl2/rl/valid/oneof.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Owlreal/plus/oneOf.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Owlreal/plus/oneOf.func -------------------------------------------------------------------------------- /tests/data/all_test_files/Plus/and/minus/0/integers.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Plus/and/minus/0/integers.func -------------------------------------------------------------------------------- /tests/data/all_test_files/Plus/minus/0/plus/disjointness.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Plus/minus/0/plus/disjointness.func -------------------------------------------------------------------------------- /tests/data/all_test_files/Qualified/cardinality/boolean.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Qualified/cardinality/boolean.func -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/bool/complement/inst.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/bool/complement/inst.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/bool/union/inst/comp.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/bool/union/inst/comp.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/bool/union/term.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/bool/union/term.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/chain/def.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/chain/def.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/char/asymmetric/inst.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/char/asymmetric/inst.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/char/asymmetric/term.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/char/asymmetric/term.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/char/functional/inst.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/char/functional/inst.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/char/symmetric/inst.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/char/symmetric/inst.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/char/transitive/inst.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/char/transitive/inst.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/class/nothing/ext.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/class/nothing/ext.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/class/nothing/term.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/class/nothing/term.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/class/nothing/type.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/class/nothing/type.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/class/thing/term.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/class/thing/term.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/class/thing/type.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/class/thing/type.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/enum/inst/included.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/enum/inst/included.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/eqdis/disclass/inst.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/eqdis/disclass/inst.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/eqdis/disprop/eqprop.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/eqdis/disprop/eqprop.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/eqdis/disprop/inst.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/eqdis/disprop/inst.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/eqdis/eqclass/inst.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/eqdis/eqclass/inst.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/eqdis/eqclass/rflxv.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/eqdis/eqclass/rflxv.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/eqdis/eqclass/subst.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/eqdis/eqclass/subst.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/eqdis/eqclass/sym.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/eqdis/eqclass/sym.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/eqdis/eqclass/trans.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/eqdis/eqclass/trans.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/eqdis/eqprop/inst.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/eqdis/eqprop/inst.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/eqdis/eqprop/rflxv.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/eqdis/eqprop/rflxv.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/eqdis/eqprop/subst.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/eqdis/eqprop/subst.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/eqdis/eqprop/sym.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/eqdis/eqprop/sym.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/eqdis/eqprop/trans.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/eqdis/eqprop/trans.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/eqdis/sameas/rflxv.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/eqdis/sameas/rflxv.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/eqdis/sameas/subst.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/eqdis/sameas/subst.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/eqdis/sameas/sym.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/eqdis/sameas/sym.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/eqdis/sameas/trans.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/eqdis/sameas/trans.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/inv/inst.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/inv/inst.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/key/def.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/key/def.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/ndis/alldifferent/fw.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/ndis/alldifferent/fw.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/npa/dat/fw.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/npa/dat/fw.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/npa/ind/fw.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/npa/ind/fw.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/prop/comment/type.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/prop/comment/type.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/prop/deprecated/type.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/prop/deprecated/type.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/prop/label/type.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/prop/label/type.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/prop/seealso/type.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/prop/seealso/type.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/rdfs/domain/cond.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/rdfs/domain/cond.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/rdfs/range/cond.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/rdfs/range/cond.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/rdfs/subclass/cond.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/rdfs/subclass/cond.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/rdfs/subclass/trans.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/rdfs/subclass/trans.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/rdfs/subprop/cond.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/rdfs/subprop/cond.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Rdfbased/sem/rdfs/subprop/trans.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Rdfbased/sem/rdfs/subprop/trans.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/RoleChainViolationLumen.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/RoleChainViolationLumen.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/Somevaluesfrom2bnode.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/Somevaluesfrom2bnode.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/String/integer/clash.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/String/integer/clash.func -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/AllDifferent/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/AllDifferent/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/Class/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/Class/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/Class/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/Class/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/Class/003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/Class/003.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/Class/004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/Class/004.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/Class/005.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/Class/005.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/Class/005/direct.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/Class/005/direct.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/Class/006.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/Class/006.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I4.5/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I4.5/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I4.5/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I4.5/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I4.6/003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I4.6/003.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I4.6/004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I4.6/004.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I4.6/005.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I4.6/005.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I4.6/005/Direct.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I4.6/005/Direct.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.1/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.1/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.1/010.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.1/010.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.2/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.2/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.2/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.2/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.2/003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.2/003.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.2/004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.2/004.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.2/005.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.2/005.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.2/006.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.2/006.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.2/010.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.2/010.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.2/011.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.2/011.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.21/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.21/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.24/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.24/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.24/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.24/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.24/003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.24/003.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.24/004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.24/004.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.26/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.26/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.26/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.26/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.26/003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.26/003.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.26/004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.26/004.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.26/005.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.26/005.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.26/006.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.26/006.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.26/007.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.26/007.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.26/009.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.26/009.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.26/010.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.26/010.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.3/005.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.3/005.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.3/006.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.3/006.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.3/007.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.3/007.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.3/008.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.3/008.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.3/009.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.3/009.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.3/010.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.3/010.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.3/011.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.3/011.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.3/014.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.3/014.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.3/015.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.3/015.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.5/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.5/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.5/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.5/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.5/003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.5/003.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.5/004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.5/004.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.5/005.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.5/005.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.5/006.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.5/006.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.5/007.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.5/007.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.8/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.8/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.8/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.8/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.8/003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.8/003.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.8/004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.8/004.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.8/005.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.8/005.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.8/006.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.8/006.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.8/007.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.8/007.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.8/008.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.8/008.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.8/009.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.8/009.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.8/010.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.8/010.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.8/011.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.8/011.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.8/013.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.8/013.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.8/014.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.8/014.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.8/015.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.8/015.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.8/016.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.8/016.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I5.8/017.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I5.8/017.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/I6.1/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/I6.1/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/Nothing/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/Nothing/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/Nothing/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/Nothing/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/Ontology/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/Ontology/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/Ontology/003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/Ontology/003.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/Ontology/004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/Ontology/004.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/Restriction/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/Restriction/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/Restriction/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/Restriction/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/Restriction/003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/Restriction/003.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/Restriction/004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/Restriction/004.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/Restriction/005.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/Restriction/005.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/Restriction/006.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/Restriction/006.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/Thing/003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/Thing/003.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/Thing/004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/Thing/004.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/Thing/005.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/Thing/005.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/allValuesFrom/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/allValuesFrom/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/allValuesFrom/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/allValuesFrom/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/cardinality/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/cardinality/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/cardinality/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/cardinality/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/cardinality/003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/cardinality/003.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/cardinality/004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/cardinality/004.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/cardinality/006.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/cardinality/006.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/complementOf/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/complementOf/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/differentFrom/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/differentFrom/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/differentFrom/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/differentFrom/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/disjointWith/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/disjointWith/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/disjointWith/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/disjointWith/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/disjointWith/003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/disjointWith/003.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/disjointWith/004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/disjointWith/004.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/disjointWith/005.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/disjointWith/005.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/disjointWith/006.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/disjointWith/006.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/disjointWith/007.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/disjointWith/007.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/disjointWith/008.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/disjointWith/008.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/disjointWith/009.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/disjointWith/009.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/disjointWith/010.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/disjointWith/010.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/extra/credit/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/extra/credit/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/extra/credit/003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/extra/credit/003.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/extra/credit/004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/extra/credit/004.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/imports/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/imports/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/imports/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/imports/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/imports/003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/imports/003.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/imports/004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/imports/004.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/imports/005.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/imports/005.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/imports/006.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/imports/006.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/imports/007.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/imports/007.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/imports/008.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/imports/008.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/imports/010.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/imports/010.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/imports/011.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/imports/011.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/imports/012.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/imports/012.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/imports/013.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/imports/013.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/imports/014.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/imports/014.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/inverseOf/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/inverseOf/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/miscellaneous/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/miscellaneous/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/miscellaneous/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/miscellaneous/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/miscellaneous/011.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/miscellaneous/011.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/miscellaneous/102.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/miscellaneous/102.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/miscellaneous/103.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/miscellaneous/103.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/miscellaneous/202.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/miscellaneous/202.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/miscellaneous/203.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/miscellaneous/203.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/miscellaneous/204.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/miscellaneous/204.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/miscellaneous/301.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/miscellaneous/301.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/miscellaneous/302.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/miscellaneous/302.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/miscellaneous/303.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/miscellaneous/303.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/oneOf/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/oneOf/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/oneOf/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/oneOf/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/oneOf/003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/oneOf/003.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/oneOf/004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/oneOf/004.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/sameAs/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/sameAs/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/unionOf/001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/unionOf/001.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/unionOf/002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/unionOf/002.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/unionOf/003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/unionOf/003.rdf -------------------------------------------------------------------------------- /tests/data/all_test_files/TestCase-WebOnt/unionOf/004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/all_test_files/TestCase-WebOnt/unionOf/004.rdf -------------------------------------------------------------------------------- /tests/data/cr.ofn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/cr.ofn.txt -------------------------------------------------------------------------------- /tests/data/ext.owlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/ext.owlf -------------------------------------------------------------------------------- /tests/data/obi.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/obi.owl -------------------------------------------------------------------------------- /tests/data/obi.owlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/obi.owlf -------------------------------------------------------------------------------- /tests/data/pizza.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/pizza.owl -------------------------------------------------------------------------------- /tests/data/pizza.owl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/pizza.owl.out -------------------------------------------------------------------------------- /tests/data/pizza.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/pizza.ttl -------------------------------------------------------------------------------- /tests/data/pizza_out.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/data/pizza_out.ttl -------------------------------------------------------------------------------- /tests/test_base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_base/test_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_base/test_annotations.py -------------------------------------------------------------------------------- /tests/test_base/test_assertions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_base/test_assertions.py -------------------------------------------------------------------------------- /tests/test_base/test_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_base/test_basics.py -------------------------------------------------------------------------------- /tests/test_base/test_classaxioms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_base/test_classaxioms.py -------------------------------------------------------------------------------- /tests/test_base/test_declarations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_base/test_declarations.py -------------------------------------------------------------------------------- /tests/test_base/test_funowlbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_base/test_funowlbase.py -------------------------------------------------------------------------------- /tests/test_base/test_generaldefinitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_base/test_generaldefinitions.py -------------------------------------------------------------------------------- /tests/test_base/test_identifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_base/test_identifiers.py -------------------------------------------------------------------------------- /tests/test_base/test_literals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_base/test_literals.py -------------------------------------------------------------------------------- /tests/test_base/test_module_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_base/test_module_init.py -------------------------------------------------------------------------------- /tests/test_base/test_ontologydocument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_base/test_ontologydocument.py -------------------------------------------------------------------------------- /tests/test_base/test_prefixdeclarations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_base/test_prefixdeclarations.py -------------------------------------------------------------------------------- /tests/test_base/test_syntax_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_base/test_syntax_converter.py -------------------------------------------------------------------------------- /tests/test_base/test_typinghelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_base/test_typinghelper.py -------------------------------------------------------------------------------- /tests/test_cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_cli/data/basic.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_cli/data/basic.owl -------------------------------------------------------------------------------- /tests/test_cli/data/basic_out.n3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_cli/data/basic_out.n3 -------------------------------------------------------------------------------- /tests/test_cli/data/basic_out_ed.n3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_cli/data/basic_out_ed.n3 -------------------------------------------------------------------------------- /tests/test_cli/data/basic_out_et.n3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_cli/data/basic_out_et.n3 -------------------------------------------------------------------------------- /tests/test_cli/data/cli_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_cli/data/cli_help.txt -------------------------------------------------------------------------------- /tests/test_cli/data/pizza.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_cli/data/pizza.owl -------------------------------------------------------------------------------- /tests/test_cli/data/pizza_out.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_cli/data/pizza_out.jsonld -------------------------------------------------------------------------------- /tests/test_cli/data/pizza_out.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_cli/data/pizza_out.ttl -------------------------------------------------------------------------------- /tests/test_cli/data/pizza_out2.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_cli/data/pizza_out2.jsonld -------------------------------------------------------------------------------- /tests/test_cli/data/pizza_out3.foo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_cli/data/pizza_out3.foo -------------------------------------------------------------------------------- /tests/test_cli/data/pizza_out4.n3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_cli/data/pizza_out4.n3 -------------------------------------------------------------------------------- /tests/test_cli/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_cli/test_cli.py -------------------------------------------------------------------------------- /tests/test_converters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_converters/test_functional_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_converters/test_functional_converter.py -------------------------------------------------------------------------------- /tests/test_issues/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_issues/test_add_functional_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_issues/test_add_functional_definitions.py -------------------------------------------------------------------------------- /tests/test_issues/test_declaration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_issues/test_declaration.py -------------------------------------------------------------------------------- /tests/test_issues/test_issue_12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_issues/test_issue_12.py -------------------------------------------------------------------------------- /tests/test_issues/test_issue_14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_issues/test_issue_14.py -------------------------------------------------------------------------------- /tests/test_issues/test_issue_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_issues/test_issue_2.py -------------------------------------------------------------------------------- /tests/test_issues/test_issue_24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_issues/test_issue_24.py -------------------------------------------------------------------------------- /tests/test_issues/test_issue_27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_issues/test_issue_27.py -------------------------------------------------------------------------------- /tests/test_issues/test_issue_28.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_issues/test_issue_28.py -------------------------------------------------------------------------------- /tests/test_issues/test_issue_33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_issues/test_issue_33.py -------------------------------------------------------------------------------- /tests/test_issues/test_issue_34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_issues/test_issue_34.py -------------------------------------------------------------------------------- /tests/test_issues/test_issue_39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_issues/test_issue_39.py -------------------------------------------------------------------------------- /tests/test_issues/test_issue_45.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_issues/test_issue_45.py -------------------------------------------------------------------------------- /tests/test_issues/test_issue_57.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_issues/test_issue_57.py -------------------------------------------------------------------------------- /tests/test_issues/test_rdflib_bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_issues/test_rdflib_bindings.py -------------------------------------------------------------------------------- /tests/test_issues/test_rdflib_cache_issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_issues/test_rdflib_cache_issue.py -------------------------------------------------------------------------------- /tests/test_notebooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_notebooks/test_subclasstoequivalent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_notebooks/test_subclasstoequivalent.py -------------------------------------------------------------------------------- /tests/test_ontologies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_ontologies/test_snomed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_ontologies/test_snomed.py -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/README.md -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/all_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/all_parser.py -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Bnode2somevaluesfrom.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Bnode2somevaluesfrom.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Bnode2somevaluesfrom.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Bnode2somevaluesfrom.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Bnode2somevaluesfrom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Bnode2somevaluesfrom.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Chain2trans.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Chain2trans.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Chain2trans.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Chain2trans.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Chain2trans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Chain2trans.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Consistent/but/all/unsat.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Consistent/but/all/unsat.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Consistent/but/all/unsat.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Consistent/but/all/unsat.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Consistent/but/all/unsat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Consistent/but/all/unsat.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Consistent/dateTime.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Consistent/dateTime.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Consistent/dateTime.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Consistent/dateTime.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Consistent/dateTime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Consistent/dateTime.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Consistent/integer/filler.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Consistent/integer/filler.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Consistent/integer/filler.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Consistent/integer/filler.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Consistent/integer/filler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Consistent/integer/filler.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Datatype/Float/Discrete/001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Datatype/Float/Discrete/001.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Datatype/Float/Discrete/001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Datatype/Float/Discrete/001.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/DisjointClasses/001.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/DisjointClasses/001.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/DisjointClasses/001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/DisjointClasses/001.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/DisjointClasses/001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/DisjointClasses/001.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/DisjointClasses/002.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/DisjointClasses/002.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/DisjointClasses/002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/DisjointClasses/002.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/DisjointClasses/002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/DisjointClasses/002.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/DisjointClasses/003.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/DisjointClasses/003.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/DisjointClasses/003.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/DisjointClasses/003.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/DisjointClasses/003.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/DisjointClasses/003.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/FS2RDF/different/individuals/2/ar.func: -------------------------------------------------------------------------------- 1 | Prefix(: = ) 2 | Ontology( 3 | DifferentIndividuals( :a :b )) -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/FS2RDF/literals/ar.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/FS2RDF/literals/ar.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/FS2RDF/literals/ar.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/FS2RDF/literals/ar.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/FS2RDF/literals/ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/FS2RDF/literals/ar.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/FS2RDF/propertychain/2/ar.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/FS2RDF/propertychain/2/ar.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/FS2RDF/propertychain/2/ar.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/FS2RDF/propertychain/2/ar.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/FS2RDF/propertychain/2/ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/FS2RDF/propertychain/2/ar.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/FS2RDF/same/individual/2/ar.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/FS2RDF/same/individual/2/ar.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/FS2RDF/same/individual/2/ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/FS2RDF/same/individual/2/ar.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Footnote/not/about/self.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Footnote/not/about/self.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Footnote/not/about/self.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Footnote/not/about/self.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Footnote/not/about/self.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Footnote/not/about/self.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Functionality/clash.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Functionality/clash.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Functionality/clash.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Functionality/clash.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Functionality/clash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Functionality/clash.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Inconsistent/byte/filler.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Inconsistent/byte/filler.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Inconsistent/byte/filler.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Inconsistent/byte/filler.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Inconsistent/byte/filler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Inconsistent/byte/filler.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Inconsistent/integer/filler.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Inconsistent/integer/filler.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Inconsistent/integer/filler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Inconsistent/integer/filler.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Inconsistent_datatypes.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Inconsistent_datatypes.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Inconsistent_datatypes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Inconsistent_datatypes.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Inconsistent_datatypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Inconsistent_datatypes.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Minus/inf/not/owlreal.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Minus/inf/not/owlreal.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Minus/inf/not/owlreal.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Minus/inf/not/owlreal.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Minus/inf/not/owlreal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Minus/inf/not/owlreal.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/DataQCR/001.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/DataQCR/001.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/DataQCR/001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/DataQCR/001.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/DataQCR/001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/DataQCR/001.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Keys/001.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Keys/001.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Keys/001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Keys/001.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Keys/001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Keys/001.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Keys/002.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Keys/002.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Keys/002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Keys/002.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Keys/002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Keys/002.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Keys/003.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Keys/003.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Keys/003.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Keys/003.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Keys/003.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Keys/003.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Keys/004.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Keys/004.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Keys/004.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Keys/004.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Keys/004.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Keys/004.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Keys/005.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Keys/005.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Keys/005.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Keys/005.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Keys/005.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Keys/005.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Keys/006.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Keys/006.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Keys/006.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Keys/006.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Keys/006.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Keys/006.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Keys/007.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Keys/007.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Keys/007.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Keys/007.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Keys/007.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Keys/007.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/ObjectQCR/001.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/ObjectQCR/001.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/ObjectQCR/001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/ObjectQCR/001.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/ObjectQCR/001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/ObjectQCR/001.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/ObjectQCR/002.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/ObjectQCR/002.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/ObjectQCR/002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/ObjectQCR/002.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/ObjectQCR/002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/ObjectQCR/002.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Rational/001.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Rational/001.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Rational/001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Rational/001.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Rational/001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Rational/001.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Rational/002.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Rational/002.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Rational/002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Rational/002.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Rational/002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Rational/002.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Rational/003.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Rational/003.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Rational/003.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Rational/003.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/New/Feature/Rational/003.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/New/Feature/Rational/003.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/One_equals_two.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/One_equals_two.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/One_equals_two.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/One_equals_two.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/One_equals_two.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/One_equals_two.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Owl2/rl/invalid/mincard.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Owl2/rl/invalid/mincard.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Owl2/rl/invalid/mincard.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Owl2/rl/invalid/mincard.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Owl2/rl/invalid/mincard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Owl2/rl/invalid/mincard.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Owl2/rl/invalid/oneof.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Owl2/rl/invalid/oneof.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Owl2/rl/invalid/oneof.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Owl2/rl/invalid/oneof.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Owl2/rl/invalid/oneof.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Owl2/rl/invalid/oneof.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Owl2/rl/invalid/owlreal.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Owl2/rl/invalid/owlreal.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Owl2/rl/invalid/owlreal.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Owl2/rl/invalid/owlreal.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Owl2/rl/invalid/owlreal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Owl2/rl/invalid/owlreal.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Owl2/rl/invalid/unionof.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Owl2/rl/invalid/unionof.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Owl2/rl/invalid/unionof.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Owl2/rl/invalid/unionof.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Owl2/rl/invalid/unionof.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Owl2/rl/invalid/unionof.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Owl2/rl/rules/ifp/askey.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Owl2/rl/rules/ifp/askey.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Owl2/rl/rules/ifp/askey.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Owl2/rl/rules/ifp/askey.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Owl2/rl/rules/ifp/askey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Owl2/rl/rules/ifp/askey.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Owl2/rl/valid/oneof.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Owl2/rl/valid/oneof.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Owl2/rl/valid/oneof.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Owl2/rl/valid/oneof.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Owl2/rl/valid/oneof.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Owl2/rl/valid/oneof.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Owlreal/plus/oneOf.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Owlreal/plus/oneOf.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Owlreal/plus/oneOf.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Owlreal/plus/oneOf.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Owlreal/plus/oneOf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Owlreal/plus/oneOf.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Plus/and/minus/0/integers.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Plus/and/minus/0/integers.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Plus/and/minus/0/integers.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Plus/and/minus/0/integers.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Plus/and/minus/0/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Plus/and/minus/0/integers.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Rdfbased/sem/chain/def.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Rdfbased/sem/chain/def.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Rdfbased/sem/chain/def.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Rdfbased/sem/chain/def.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Rdfbased/sem/chain/def.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Rdfbased/sem/chain/def.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Rdfbased/sem/inv/inst.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Rdfbased/sem/inv/inst.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Rdfbased/sem/inv/inst.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Rdfbased/sem/inv/inst.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Rdfbased/sem/inv/inst.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Rdfbased/sem/inv/inst.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Rdfbased/sem/key/def.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Rdfbased/sem/key/def.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Rdfbased/sem/key/def.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Rdfbased/sem/key/def.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Rdfbased/sem/key/def.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Rdfbased/sem/key/def.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Rdfbased/sem/npa/dat/fw.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Rdfbased/sem/npa/dat/fw.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Rdfbased/sem/npa/dat/fw.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Rdfbased/sem/npa/dat/fw.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Rdfbased/sem/npa/dat/fw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Rdfbased/sem/npa/dat/fw.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Rdfbased/sem/npa/ind/fw.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Rdfbased/sem/npa/ind/fw.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Rdfbased/sem/npa/ind/fw.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Rdfbased/sem/npa/ind/fw.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Rdfbased/sem/npa/ind/fw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Rdfbased/sem/npa/ind/fw.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/RoleChainViolationLumen.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/RoleChainViolationLumen.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/RoleChainViolationLumen.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/RoleChainViolationLumen.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/RoleChainViolationLumen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/RoleChainViolationLumen.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Somevaluesfrom2bnode.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Somevaluesfrom2bnode.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Somevaluesfrom2bnode.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Somevaluesfrom2bnode.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/Somevaluesfrom2bnode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/Somevaluesfrom2bnode.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/String/integer/clash.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/String/integer/clash.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/String/integer/clash.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/String/integer/clash.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/String/integer/clash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/String/integer/clash.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/001.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/001.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/001.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/001.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/002.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/002.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/002.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/002.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/003.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/003.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/003.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/003.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/003.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/003.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/004.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/004.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/004.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/004.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/004.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/004.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/005.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/005.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/005.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/005.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/005.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/005.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/006.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/006.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/006.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/006.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/006.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/Class/006.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.5/001.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.5/001.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.5/001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.5/001.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.5/001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.5/001.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.5/002.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.5/002.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.5/002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.5/002.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.5/002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.5/002.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.6/003.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.6/003.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.6/003.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.6/003.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.6/003.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.6/003.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.6/004.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.6/004.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.6/004.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.6/004.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.6/004.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.6/004.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.6/005.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.6/005.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.6/005.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.6/005.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.6/005.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I4.6/005.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.1/001.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.1/001.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.1/001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.1/001.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.1/001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.1/001.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.1/010.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.1/010.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.1/010.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.1/010.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.1/010.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.1/010.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/001.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/001.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/001.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/001.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/002.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/002.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/002.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/002.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/003.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/003.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/003.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/003.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/003.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/003.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/004.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/004.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/004.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/004.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/004.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/004.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/005.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/005.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/005.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/005.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/005.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/005.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/006.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/006.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/006.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/006.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/006.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/006.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/010.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/010.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/010.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/010.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/010.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/010.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/011.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/011.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/011.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/011.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/011.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.2/011.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.21/002.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.21/002.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.21/002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.21/002.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.21/002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.21/002.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/001.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/001.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/001.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/001.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/002.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/002.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/002.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/002.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/003.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/003.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/003.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/003.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/003.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/003.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/004.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/004.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/004.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/004.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/004.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.24/004.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/001.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/001.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/001.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/001.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/002.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/002.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/002.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/002.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/003.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/003.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/003.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/003.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/003.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/003.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/004.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/004.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/004.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/004.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/004.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/004.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/005.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/005.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/005.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/005.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/005.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/005.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/006.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/006.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/006.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/006.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/006.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/006.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/007.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/007.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/007.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/007.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/007.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/007.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/009.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/009.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/009.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/009.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/009.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/009.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/010.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/010.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/010.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/010.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/010.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.26/010.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/005.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/005.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/005.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/005.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/005.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/005.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/006.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/006.func -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/006.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/006.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/006.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/006.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/007.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/007.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/007.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/007.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/008.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/008.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/008.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/008.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/009.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/009.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/009.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/009.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/010.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/010.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/010.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/010.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/011.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/011.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/011.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/011.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/014.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/014.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/014.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/014.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/015.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/015.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/015.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.3/015.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/001.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/001.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/002.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/002.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/003.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/003.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/003.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/003.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/004.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/004.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/004.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/004.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/005.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/005.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/005.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/005.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/006.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/006.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/006.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/006.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/007.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/007.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/007.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.5/007.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/001.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/001.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/002.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/002.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/003.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/003.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/003.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/003.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/004.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/004.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/004.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/004.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/005.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/005.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/005.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/005.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/006.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/006.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/006.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/006.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/007.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/007.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/007.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/007.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/008.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/008.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/008.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/008.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/009.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/009.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/009.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/009.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/010.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/010.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/010.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/010.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/011.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/011.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/011.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/011.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/013.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/013.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/013.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/013.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/014.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/014.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/014.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/014.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/015.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/015.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/015.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/015.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/016.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/016.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/016.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/016.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/017.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/017.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/017.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I5.8/017.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I6.1/001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I6.1/001.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/data/TestCase-WebOnt/I6.1/001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/data/TestCase-WebOnt/I6.1/001.xml -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/fixed_data/FS2RDF/literals/ar.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/fixed_data/FS2RDF/literals/ar.ttl -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/fixed_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/fixed_data/README.md -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/syntax_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/syntax_converter.py -------------------------------------------------------------------------------- /tests/test_owl2_test_suite/test_owl2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_owl2_test_suite/test_owl2.py -------------------------------------------------------------------------------- /tests/test_project_documentation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_project_documentation/test_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_project_documentation/test_readme.py -------------------------------------------------------------------------------- /tests/test_terminals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_terminals/test_terminals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_terminals/test_terminals.py -------------------------------------------------------------------------------- /tests/test_writers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_writers/test_functionalwriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/test_writers/test_functionalwriter.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/utils/base.py -------------------------------------------------------------------------------- /tests/utils/build_test_harness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/utils/build_test_harness.py -------------------------------------------------------------------------------- /tests/utils/functional_comparator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/utils/functional_comparator.py -------------------------------------------------------------------------------- /tests/utils/rdf_comparator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tests/utils/rdf_comparator.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harold-Solbrig/funowl/HEAD/tox.ini --------------------------------------------------------------------------------