• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java ReasonerInterruptedException类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.semanticweb.owlapi.reasoner.ReasonerInterruptedException的典型用法代码示例。如果您正苦于以下问题:Java ReasonerInterruptedException类的具体用法?Java ReasonerInterruptedException怎么用?Java ReasonerInterruptedException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



ReasonerInterruptedException类属于org.semanticweb.owlapi.reasoner包,在下文中一共展示了ReasonerInterruptedException类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: getTypes

import org.semanticweb.owlapi.reasoner.ReasonerInterruptedException; //导入依赖的package包/类
public NodeSet<OWLClass> getTypes(OWLNamedIndividual ind, boolean direct) throws InconsistentOntologyException, FreshEntitiesException, ReasonerInterruptedException, TimeOutException {
    ensurePrepared();
    DefaultNodeSet<OWLClass> result = new OWLClassNodeSet();
    for (OWLOntology ontology : getRootOntology().getImportsClosure()) {
        for (OWLClassAssertionAxiom axiom : ontology.getClassAssertionAxioms(ind)) {
            OWLClassExpression ce = axiom.getClassExpression();
            if (!ce.isAnonymous()) {
                result.addNode(classHierarchyInfo.getEquivalents(ce.asOWLClass()));
                if (!direct) {
                    result.addAllNodes(getSuperClasses(ce, false).getNodes());
                }
            }
        }
    }
    return result;
}
 
开发者ID:ernestojimenezruiz,项目名称:logmap-matcher,代码行数:17,代码来源:StructuralReasoner2.java


示例2: getInstances

import org.semanticweb.owlapi.reasoner.ReasonerInterruptedException; //导入依赖的package包/类
public NodeSet<OWLNamedIndividual> getInstances(OWLClassExpression ce,
		boolean direct) throws InconsistentOntologyException,
		ClassExpressionNotInProfileException, FreshEntitiesException,
		ReasonerInterruptedException, TimeOutException {
	DefaultNodeSet<OWLNamedIndividual> result = new OWLNamedIndividualNodeSet();
	Set<OWLObject> subs = gw.queryDescendants(ce, true, true);
	for (OWLObject s : subs) {
		if (s instanceof OWLNamedIndividual) {
			result.addEntity((OWLNamedIndividual) s);
		}
		else {

		}
	}
	return result;
}
 
开发者ID:owlcollab,项目名称:owltools,代码行数:17,代码来源:GraphReasoner.java


示例3: getDisjointDataProperties

import org.semanticweb.owlapi.reasoner.ReasonerInterruptedException; //导入依赖的package包/类
@Override
public NodeSet<OWLDataProperty> getDisjointDataProperties(
		OWLDataPropertyExpression arg0)
		throws InconsistentOntologyException, FreshEntitiesException,
		ReasonerInterruptedException, TimeOutException {
	LOGGER_.trace("getDisjointDataProperties(OWLDataPropertyExpression)");

	checkInterrupted();
	// TODO Provide implementation
	throw unsupportedOwlApiMethod(
			"getDisjointDataProperties(OWLDataPropertyExpression)");
}
 
开发者ID:liveontologies,项目名称:elk-reasoner,代码行数:13,代码来源:ElkReasoner.java


示例4: OwlApiClassExpressionSubClassesQueryTest

import org.semanticweb.owlapi.reasoner.ReasonerInterruptedException; //导入依赖的package包/类
public OwlApiClassExpressionSubClassesQueryTest(
		final QueryTestManifest<OWLClassExpression, RelatedEntitiesTestOutput<OWLClass>> manifest) {
	super(manifest,
			new OwlApiReasoningTestDelegate<RelatedEntitiesTestOutput<OWLClass>>(
					manifest) {

				@Override
				public RelatedEntitiesTestOutput<OWLClass> getActualOutput()
						throws Exception {
					final NodeSet<OWLClass> subNodes = getReasoner()
							.getSubClasses(manifest.getInput().getQuery(),
									true);
					return new OwlApiRelatedEntitiesTestOutput<OWLClass>(
							subNodes);
				}

				@Override
				public Class<? extends Exception> getInterruptionExceptionClass() {
					return ReasonerInterruptedException.class;
				}

			});
}
 
开发者ID:liveontologies,项目名称:elk-reasoner,代码行数:24,代码来源:OwlApiClassExpressionSubClassesQueryTest.java


示例5: OwlApiClassExpressionSuperClassesQueryTest

import org.semanticweb.owlapi.reasoner.ReasonerInterruptedException; //导入依赖的package包/类
public OwlApiClassExpressionSuperClassesQueryTest(
		final QueryTestManifest<OWLClassExpression, RelatedEntitiesTestOutput<OWLClass>> manifest) {
	super(manifest,
			new OwlApiReasoningTestDelegate<RelatedEntitiesTestOutput<OWLClass>>(
					manifest) {

				@Override
				public RelatedEntitiesTestOutput<OWLClass> getActualOutput()
						throws Exception {
					final NodeSet<OWLClass> superNodes = getReasoner()
							.getSuperClasses(manifest.getInput().getQuery(),
									true);
					return new OwlApiRelatedEntitiesTestOutput<OWLClass>(
							superNodes);
				}

				@Override
				public Class<? extends Exception> getInterruptionExceptionClass() {
					return ReasonerInterruptedException.class;
				}

			});
}
 
开发者ID:liveontologies,项目名称:elk-reasoner,代码行数:24,代码来源:OwlApiClassExpressionSuperClassesQueryTest.java


示例6: OwlApiClassExpressionInstancesQueryTest

import org.semanticweb.owlapi.reasoner.ReasonerInterruptedException; //导入依赖的package包/类
public OwlApiClassExpressionInstancesQueryTest(
		final QueryTestManifest<OWLClassExpression, RelatedEntitiesTestOutput<OWLNamedIndividual>> manifest) {
	super(manifest,
			new OwlApiReasoningTestDelegate<RelatedEntitiesTestOutput<OWLNamedIndividual>>(
					manifest) {

				@Override
				public RelatedEntitiesTestOutput<OWLNamedIndividual> getActualOutput()
						throws Exception {
					final NodeSet<OWLNamedIndividual> subNodes = getReasoner()
							.getInstances(manifest.getInput().getQuery(),
									true);
					return new OwlApiRelatedEntitiesTestOutput<OWLNamedIndividual>(
							subNodes);
				}

				@Override
				public Class<? extends Exception> getInterruptionExceptionClass() {
					return ReasonerInterruptedException.class;
				}

			});
}
 
开发者ID:liveontologies,项目名称:elk-reasoner,代码行数:24,代码来源:OwlApiClassExpressionInstancesQueryTest.java


示例7: OwlApiIncrementalEntailmentQueryTest

import org.semanticweb.owlapi.reasoner.ReasonerInterruptedException; //导入依赖的package包/类
public OwlApiIncrementalEntailmentQueryTest(
		final TestManifest<QueryTestInput<OWLAxiom>> manifest) {
	super(manifest,
			new OwlApiIncrementalReasoningTestDelegate<Boolean>(manifest) {

				@Override
				public Boolean getExpectedOutput() throws Exception {
					return getStandardReasoner()
							.isEntailed(manifest.getInput().getQuery());
				}

				@Override
				public Boolean getActualOutput() throws Exception {
					return getIncrementalReasoner()
							.isEntailed(manifest.getInput().getQuery());
				}

				@Override
				public Class<? extends Exception> getInterruptionExceptionClass() {
					return ReasonerInterruptedException.class;
				}

			});
}
 
开发者ID:liveontologies,项目名称:elk-reasoner,代码行数:25,代码来源:OwlApiIncrementalEntailmentQueryTest.java


示例8: OwlApiEntailmentQueryTest

import org.semanticweb.owlapi.reasoner.ReasonerInterruptedException; //导入依赖的package包/类
public OwlApiEntailmentQueryTest(
		final QueryTestManifest<OWLAxiom, Boolean> manifest) {
	super(manifest, new OwlApiReasoningTestDelegate<Boolean>(manifest) {

		@Override
		public Boolean getActualOutput() throws Exception {
			return getReasoner().isEntailed(manifest.getInput().getQuery());
		}

		@Override
		public Class<? extends Exception> getInterruptionExceptionClass() {
			return ReasonerInterruptedException.class;
		}

	});
}
 
开发者ID:liveontologies,项目名称:elk-reasoner,代码行数:17,代码来源:OwlApiEntailmentQueryTest.java


示例9: findAncestors

import org.semanticweb.owlapi.reasoner.ReasonerInterruptedException; //导入依赖的package包/类
protected Set<OWLClass> findAncestors(String expr, 
		OWLObjectProperty p, boolean direct, Integer numExpected) throws TimeOutException, FreshEntitiesException, InconsistentOntologyException, ClassExpressionNotInProfileException, ReasonerInterruptedException, OWLParserException {
	System.out.println("Query: "+expr+" "+p+" Direct="+direct);
	OWLClassExpression qc = parseOMN(expr);
	System.out.println("QueryC: "+qc);
	//Set<OWLClassExpression> ces = reasoner.getSuperClassExpressions(qc, false);
	//System.out.println("NumX:"+ces.size());
	Set<OWLClass> clzs = reasoner.getSuperClassesOver(qc, p, direct);
	System.out.println("NumD:"+clzs.size());
	for (OWLClass c : clzs) {
		System.out.println("  D:"+c);
	}
	if (numExpected != null) {
		assertEquals(numExpected.intValue(), clzs.size());
	}
	return clzs;
}
 
开发者ID:owlcollab,项目名称:owltools,代码行数:18,代码来源:ExtendedReasonerTest.java


示例10: findDescendants

import org.semanticweb.owlapi.reasoner.ReasonerInterruptedException; //导入依赖的package包/类
protected Set<OWLClass> findDescendants(OWLReasoner r, String expr, Integer numExpected) throws TimeOutException, FreshEntitiesException, InconsistentOntologyException, ClassExpressionNotInProfileException, ReasonerInterruptedException, OWLParserException {
	System.out.println("Query: "+expr);
	OWLClassExpression qc = parseOMN(expr);
	Set<OWLClass> clzs = r.getSubClasses(qc, false).getFlattened();
	clzs.remove(r.getRootOntology().getOWLOntologyManager().getOWLDataFactory().getOWLNothing());
	if (!qc.isAnonymous())
		clzs.add((OWLClass) qc);
	System.out.println("NumD:"+clzs.size());
	for (OWLClass c : clzs) {
		System.out.println("  D:"+c);
	}
	if (numExpected != null) {
		assertEquals(numExpected.intValue(), clzs.size());
	}
	return clzs;
}
 
开发者ID:owlcollab,项目名称:owltools,代码行数:17,代码来源:AbstractReasonerTest.java


示例11: getSuperClassExpressions

import org.semanticweb.owlapi.reasoner.ReasonerInterruptedException; //导入依赖的package包/类
/**
 * note that this is not a standard reasoner method
 * 
 * @param ce
 * @param direct
 * @return all superclasses, where superclasses can include anon class expressions
 * @throws InconsistentOntologyException
 * @throws ClassExpressionNotInProfileException
 * @throws FreshEntitiesException
 * @throws ReasonerInterruptedException
 * @throws TimeOutException
 */
public Set<OWLClassExpression> getSuperClassExpressions(OWLClassExpression ce,
		boolean direct) throws InconsistentOntologyException,
		ClassExpressionNotInProfileException, FreshEntitiesException,
		ReasonerInterruptedException, TimeOutException {

	Set<OWLClassExpression> result = new HashSet<OWLClassExpression>();
	Set<OWLObject> supers = gw.getSubsumersFromClosure(ce);
	for (OWLObject sup : supers) {
		if (sup instanceof OWLClassExpression) {
			result.add((OWLClassExpression) sup);
		}
		else {

		}
	}
	return result;
}
 
开发者ID:owlcollab,项目名称:owltools,代码行数:30,代码来源:GraphReasoner.java


示例12: getSuperClasses

import org.semanticweb.owlapi.reasoner.ReasonerInterruptedException; //导入依赖的package包/类
public NodeSet<OWLClass> getSuperClasses(OWLClassExpression ce,
		boolean direct) throws InconsistentOntologyException,
		ClassExpressionNotInProfileException, FreshEntitiesException,
		ReasonerInterruptedException, TimeOutException {

	DefaultNodeSet<OWLClass> result = new OWLClassNodeSet();
	Set<OWLObject> supers = gw.getSubsumersFromClosure(ce);
	for (OWLObject sup : supers) {
		if (sup instanceof OWLClassExpression) {
			if (sup instanceof OWLClass) {
				result.addEntity((OWLClass) sup);
			}
			else {

			}
		}
		else {

		}
	}
	return result;
}
 
开发者ID:owlcollab,项目名称:owltools,代码行数:23,代码来源:GraphReasoner.java


示例13: prepareReasoner

import org.semanticweb.owlapi.reasoner.ReasonerInterruptedException; //导入依赖的package包/类
/**
 * @throws ReasonerInterruptedException on interruption
 * @throws TimeOutException on timeout
 */
public void prepareReasoner() throws ReasonerInterruptedException, TimeOutException {
    classHierarchyInfo.computeHierarchy();
    objectPropertyHierarchyInfo.computeHierarchy();
    dataPropertyHierarchyInfo.computeHierarchy();
    prepared = true;
}
 
开发者ID:ernestojimenezruiz,项目名称:logmap-matcher,代码行数:11,代码来源:StructuralReasoner2.java


示例14: getObjectPropertyValues

import org.semanticweb.owlapi.reasoner.ReasonerInterruptedException; //导入依赖的package包/类
@Override
public NodeSet<OWLNamedIndividual> getObjectPropertyValues(OWLNamedIndividual individual,
		OWLObjectPropertyExpression objectPropertyExpression) throws InconsistentOntologyException,
		FreshEntitiesException, ReasonerInterruptedException, TimeOutException {
	Objects.requireNonNull(individual);
	Objects.requireNonNull(objectPropertyExpression);
	logger.finer("getObjectPropertyValues(" + individual + ", " + objectPropertyExpression + ")");
	throw new UnsupportedReasonerOperationInBornException(
			"Unsupported operation :  getObjectPropertyValues(OWLNamedIndividual)");
}
 
开发者ID:julianmendez,项目名称:born,代码行数:11,代码来源:BornReasoner.java


示例15: getDisjointClasses

import org.semanticweb.owlapi.reasoner.ReasonerInterruptedException; //导入依赖的package包/类
@Override
public NodeSet<OWLClass> getDisjointClasses(OWLClassExpression classExpression) throws ReasonerInterruptedException,
		TimeOutException, FreshEntitiesException, InconsistentOntologyException {
	Objects.requireNonNull(classExpression);
	logger.finer("getDisjointClasses(" + classExpression + ")");
	throw new UnsupportedReasonerOperationInBornException(
			"Unsupported operation : getDisjointClasses(OWLClassExpression)");
}
 
开发者ID:julianmendez,项目名称:born,代码行数:9,代码来源:BornReasoner.java


示例16: isEntailed

import org.semanticweb.owlapi.reasoner.ReasonerInterruptedException; //导入依赖的package包/类
public boolean isEntailed(Set<? extends OWLAxiom> axioms) throws ReasonerInterruptedException, UnsupportedEntailmentTypeException, TimeOutException, AxiomNotInProfileException, FreshEntitiesException, InconsistentOntologyException {
    for (OWLAxiom ax : axioms) {
        if (!getRootOntology().containsAxiomIgnoreAnnotations(ax, true)) {
            return false;
        }
    }
    return true;
}
 
开发者ID:ernestojimenezruiz,项目名称:logmap-matcher,代码行数:9,代码来源:StructuralReasoner2.java


示例17: getSubClasses

import org.semanticweb.owlapi.reasoner.ReasonerInterruptedException; //导入依赖的package包/类
public NodeSet<OWLClass> getSubClasses(OWLClassExpression ce, boolean direct) throws InconsistentOntologyException, ClassExpressionNotInProfileException, FreshEntitiesException, ReasonerInterruptedException, TimeOutException {
    OWLClassNodeSet ns = new OWLClassNodeSet();
    if (!ce.isAnonymous()) {
        ensurePrepared();
        return classHierarchyInfo.getNodeHierarchyChildren(ce.asOWLClass(), direct, ns);
    }
    return ns;
}
 
开发者ID:ernestojimenezruiz,项目名称:logmap-matcher,代码行数:9,代码来源:StructuralReasoner2.java


示例18: getSuperDataProperties

import org.semanticweb.owlapi.reasoner.ReasonerInterruptedException; //导入依赖的package包/类
@Override
public NodeSet<OWLDataProperty> getSuperDataProperties(OWLDataProperty dataProperty, boolean direct)
		throws InconsistentOntologyException, FreshEntitiesException, ReasonerInterruptedException,
		TimeOutException {
	Objects.requireNonNull(dataProperty);
	logger.finer("getSuperDataProperties(" + dataProperty + ", " + direct + ")");
	throw new UnsupportedReasonerOperationInBornException(
			"Unsupported operation : getSuperDataProperties(OWLDataProperty, boolean)");
}
 
开发者ID:julianmendez,项目名称:born,代码行数:10,代码来源:BornReasoner.java


示例19: getEquivalentClasses

import org.semanticweb.owlapi.reasoner.ReasonerInterruptedException; //导入依赖的package包/类
public Node<OWLClass> getEquivalentClasses(OWLClassExpression ce) throws InconsistentOntologyException, ClassExpressionNotInProfileException, FreshEntitiesException, ReasonerInterruptedException, TimeOutException {
    ensurePrepared();
    if (!ce.isAnonymous()) {
        return classHierarchyInfo.getEquivalents(ce.asOWLClass());
    }
    else {
        return new OWLClassNode();
    }
}
 
开发者ID:ernestojimenezruiz,项目名称:logmap-matcher,代码行数:10,代码来源:StructuralReasoner2.java


示例20: getSubObjectProperties

import org.semanticweb.owlapi.reasoner.ReasonerInterruptedException; //导入依赖的package包/类
@Override
public NodeSet<OWLObjectPropertyExpression> getSubObjectProperties(
		OWLObjectPropertyExpression objectPropertyExpression, boolean direct) throws InconsistentOntologyException,
		FreshEntitiesException, ReasonerInterruptedException, TimeOutException {
	Objects.requireNonNull(objectPropertyExpression);
	logger.finer("getSubObjectProperties(" + objectPropertyExpression + ", " + direct + ")");
	NodeSet<OWLObjectPropertyExpression> ret = getTranslator().translateSSOPE(
			getReasoner().getSubObjectProperties(getTranslator().translateOPE(objectPropertyExpression), direct));
	logger.finer("" + ret);
	return ret;
}
 
开发者ID:julianmendez,项目名称:jcel,代码行数:12,代码来源:JcelReasoner.java



注:本文中的org.semanticweb.owlapi.reasoner.ReasonerInterruptedException类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java MimeUtil类代码示例发布时间:2022-05-23
下一篇:
Java DiagnosticGroup类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap