本文整理汇总了Java中org.semanticweb.owlapi.reasoner.impl.OWLDataPropertyNodeSet类的典型用法代码示例。如果您正苦于以下问题:Java OWLDataPropertyNodeSet类的具体用法?Java OWLDataPropertyNodeSet怎么用?Java OWLDataPropertyNodeSet使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
OWLDataPropertyNodeSet类属于org.semanticweb.owlapi.reasoner.impl包,在下文中一共展示了OWLDataPropertyNodeSet类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getDisjointDataProperties
import org.semanticweb.owlapi.reasoner.impl.OWLDataPropertyNodeSet; //导入依赖的package包/类
public NodeSet<OWLDataProperty> getDisjointDataProperties(OWLDataPropertyExpression pe) throws InconsistentOntologyException, FreshEntitiesException, ReasonerInterruptedException, TimeOutException {
ensurePrepared();
DefaultNodeSet<OWLDataProperty> result = new OWLDataPropertyNodeSet();
for (OWLOntology ontology : getRootOntology().getImportsClosure()) {
for (OWLDisjointDataPropertiesAxiom axiom : ontology.getDisjointDataPropertiesAxioms(pe.asOWLDataProperty())) {
for (OWLDataPropertyExpression dpe : axiom.getPropertiesMinus(pe)) {
if (!dpe.isAnonymous()) {
result.addNode(dataPropertyHierarchyInfo.getEquivalents(dpe.asOWLDataProperty()));
result.addAllNodes(getSubDataProperties(dpe.asOWLDataProperty(), false).getNodes());
}
}
}
}
return result;
}
示例2: dataPropertyHierarchyNodesToNodeSet
import org.semanticweb.owlapi.reasoner.impl.OWLDataPropertyNodeSet; //导入依赖的package包/类
protected NodeSet<OWLDataProperty> dataPropertyHierarchyNodesToNodeSet(
Collection<HierarchyNode<AtomicRole>> hierarchyNodes) {
Set<Node<OWLDataProperty>> result = new HashSet<Node<OWLDataProperty>>();
for (HierarchyNode<AtomicRole> hierarchyNode : hierarchyNodes)
result.add(dataPropertyHierarchyNodeToNode(hierarchyNode));
return new OWLDataPropertyNodeSet(result);
}
示例3: getSubDataProperties
import org.semanticweb.owlapi.reasoner.impl.OWLDataPropertyNodeSet; //导入依赖的package包/类
public NodeSet<OWLDataProperty> getSubDataProperties(OWLDataProperty pe, boolean direct) throws InconsistentOntologyException, FreshEntitiesException, ReasonerInterruptedException, TimeOutException {
ensurePrepared();
OWLDataPropertyNodeSet ns = new OWLDataPropertyNodeSet();
return dataPropertyHierarchyInfo.getNodeHierarchyChildren(pe, direct, ns);
}
示例4: getSuperDataProperties
import org.semanticweb.owlapi.reasoner.impl.OWLDataPropertyNodeSet; //导入依赖的package包/类
public NodeSet<OWLDataProperty> getSuperDataProperties(OWLDataProperty pe, boolean direct) throws InconsistentOntologyException, FreshEntitiesException, ReasonerInterruptedException, TimeOutException {
ensurePrepared();
OWLDataPropertyNodeSet ns = new OWLDataPropertyNodeSet();
return dataPropertyHierarchyInfo.getNodeHierarchyParents(pe, direct, ns);
}
示例5: getDisjointDataProperties
import org.semanticweb.owlapi.reasoner.impl.OWLDataPropertyNodeSet; //导入依赖的package包/类
public NodeSet<OWLDataProperty> getDisjointDataProperties(
OWLDataPropertyExpression propertyExpression) {
checkPreConditions(propertyExpression);
if (m_dlOntology.hasDatatypes()) {
classifyDataProperties();
if (!m_isConsistent)
return new OWLDataPropertyNodeSet();
Set<HierarchyNode<AtomicRole>> result = new HashSet<HierarchyNode<AtomicRole>>();
if (propertyExpression.isOWLTopDataProperty()) {
result.add(m_dataRoleHierarchy.getBottomNode());
return dataPropertyHierarchyNodesToNodeSet(result);
} else if (propertyExpression.isOWLBottomDataProperty()) {
HierarchyNode<AtomicRole> node = m_dataRoleHierarchy
.getTopNode();
result.add(node);
result.addAll(node.getDescendantNodes());
return dataPropertyHierarchyNodesToNodeSet(result);
}
AtomicRole atomicRole = H(propertyExpression.asOWLDataProperty());
Individual freshIndividual = Individual.create("fresh-individual");
Constant freshConstant = Constant.createAnonymous("fresh-constant");
Atom atomicRoleAssertion = atomicRole.getRoleAssertion(
freshIndividual, freshConstant);
Tableau tableau = getTableau();
Set<HierarchyNode<AtomicRole>> nodesToTest = new HashSet<HierarchyNode<AtomicRole>>();
nodesToTest
.addAll(m_dataRoleHierarchy.getTopNode().getChildNodes());
while (!nodesToTest.isEmpty()) {
HierarchyNode<AtomicRole> nodeToTest = nodesToTest.iterator()
.next();
nodesToTest.remove(nodeToTest);
AtomicRole atomicRoleToTest = nodeToTest.getRepresentative();
Atom atomicRoleToTestAssertion = atomicRoleToTest
.getRoleAssertion(freshIndividual, freshConstant);
Set<Atom> perTestAtoms = new HashSet<Atom>(2);
perTestAtoms.add(atomicRoleAssertion);
perTestAtoms.add(atomicRoleToTestAssertion);
if (!tableau.isSatisfiable(false, perTestAtoms, null, null,
null, null, new ReasoningTaskDescription(true,
"disjointness of {0} and {1}", atomicRole,
atomicRoleToTest)))
// disjoint
result.addAll(nodeToTest.getDescendantNodes());
else
// maybe some children are disjoint
nodesToTest.addAll(nodeToTest.getChildNodes());
}
if (result.isEmpty())
result.add(m_dataRoleHierarchy.getBottomNode());
return dataPropertyHierarchyNodesToNodeSet(result);
} else {
OWLDataFactory factory = getDataFactory();
if (propertyExpression.isOWLTopDataProperty() && isConsistent())
return new OWLDataPropertyNodeSet(new OWLDataPropertyNode(
factory.getOWLBottomDataProperty()));
else if (propertyExpression.isOWLBottomDataProperty()
&& isConsistent())
return new OWLDataPropertyNodeSet(new OWLDataPropertyNode(
factory.getOWLTopDataProperty()));
else
return new OWLDataPropertyNodeSet();
}
}