![JAR search and dependency download from the Maven repository](/logo.png)
org.semanticweb.HermiT.structural.OWLAxioms Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.semanticweb.hermit Show documentation
Show all versions of org.semanticweb.hermit Show documentation
HermiT is reasoner for ontologies written using the Web Ontology Language (OWL). Given an OWL file, HermiT can determine whether or not the ontology is consistent, identify subsumption relationships between classes, and much more.
This is the maven build of HermiT and is designed for people who wish to use HermiT from within the OWL API. It is now versioned in the main HermiT version repository, although not officially supported by the HermiT developers.
The version number of this package is a composite of the HermiT version and a value representing the OWLAPI release it is compatible with. Note that the group id for the upstream HermiT is com.hermit-reasoner, while this fork is released under net.sourceforge.owlapi.
This fork exists to allow HermiT users to use newer OWLAPI versions than the ones supported by the original HermiT codebase.
This package includes the Jautomata library (http://jautomata.sourceforge.net/), and builds with it directly. This library appears to be no longer under active development, and so a "fork" seems appropriate. No development is intended or anticipated on this code base.
The newest version!
/* Copyright 2008, 2009, 2010 by the Oxford University Computing Laboratory
This file is part of HermiT.
HermiT is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
HermiT is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with HermiT. If not, see .
*/
package org.semanticweb.HermiT.structural;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.semanticweb.owlapi.model.OWLClass;
import org.semanticweb.owlapi.model.OWLClassExpression;
import org.semanticweb.owlapi.model.OWLDataProperty;
import org.semanticweb.owlapi.model.OWLDataPropertyExpression;
import org.semanticweb.owlapi.model.OWLDataRange;
import org.semanticweb.owlapi.model.OWLHasKeyAxiom;
import org.semanticweb.owlapi.model.OWLIndividualAxiom;
import org.semanticweb.owlapi.model.OWLNamedIndividual;
import org.semanticweb.owlapi.model.OWLObjectProperty;
import org.semanticweb.owlapi.model.OWLObjectPropertyExpression;
import org.semanticweb.owlapi.model.SWRLAtom;
/**OWLAxioms.*/
public class OWLAxioms {
final Set m_classes =new HashSet<>();
final Set m_objectProperties =new HashSet<>();
final Set m_objectPropertiesOccurringInOWLAxioms =new HashSet<>();
final Set m_complexObjectPropertyExpressions =new HashSet<>();
final Set m_dataProperties =new HashSet<>();
final Set m_namedIndividuals =new HashSet<>();
final Collection> m_conceptInclusions =new ArrayList<>();
final Collection> m_dataRangeInclusions =new ArrayList<>();
final Collection> m_simpleObjectPropertyInclusions =new ArrayList<>();
final Collection m_complexObjectPropertyInclusions =new ArrayList<>();
final Collection> m_disjointObjectProperties =new ArrayList<>();
final Set m_reflexiveObjectProperties =new HashSet<>();
final Set m_irreflexiveObjectProperties =new HashSet<>();
final Set m_asymmetricObjectProperties =new HashSet<>();
final Collection> m_dataPropertyInclusions =new ArrayList<>();
final Collection> m_disjointDataProperties =new ArrayList<>();
final Map> m_explicitInverses = new HashMap<>();
final Collection m_facts =new HashSet<>();
final Set m_hasKeys =new HashSet<>();
/** contains custom datatypes from DatatypeDefinition axioms*/
public final Set m_definedDatatypesIRIs =new HashSet<>();
final Collection m_rules =new HashSet<>();
static class ComplexObjectPropertyInclusion {
public final OWLObjectPropertyExpression[] m_subObjectProperties;
public final OWLObjectPropertyExpression m_superObjectProperty;
public ComplexObjectPropertyInclusion(OWLObjectPropertyExpression[] subObjectProperties,OWLObjectPropertyExpression superObjectPropery) {
m_subObjectProperties=subObjectProperties;
m_superObjectProperty=superObjectPropery;
}
public ComplexObjectPropertyInclusion(OWLObjectPropertyExpression transitiveObjectProperty) {
m_subObjectProperties=new OWLObjectPropertyExpression[] { transitiveObjectProperty,transitiveObjectProperty };
m_superObjectProperty=transitiveObjectProperty;
}
}
static class DisjunctiveRule {
public final SWRLAtom[] m_body;
public final SWRLAtom[] m_head;
public DisjunctiveRule(SWRLAtom[] body,SWRLAtom[] head) {
m_body=body;
m_head=head;
}
@Override
public String toString() {
StringBuilder buffer=new StringBuilder();
boolean first=true;
for (SWRLAtom atom : m_body) {
if (first)
first=false;
else
buffer.append(" /\\ ");
buffer.append(atom.toString());
}
buffer.append(" -: ");
first=true;
for (SWRLAtom atom : m_head) {
if (first)
first=false;
else
buffer.append(" \\/ ");
buffer.append(atom.toString());
}
return buffer.toString();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy