当前位置: 首页>>代码示例>>Java>>正文


Java InfModel.isEmpty方法代码示例

本文整理汇总了Java中com.hp.hpl.jena.rdf.model.InfModel.isEmpty方法的典型用法代码示例。如果您正苦于以下问题:Java InfModel.isEmpty方法的具体用法?Java InfModel.isEmpty怎么用?Java InfModel.isEmpty使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.hp.hpl.jena.rdf.model.InfModel的用法示例。


在下文中一共展示了InfModel.isEmpty方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: testIsEmpty

import com.hp.hpl.jena.rdf.model.InfModel; //导入方法依赖的package包/类
/**
 * Test if an inference model produce any results
 *
 */
@Test
public void testIsEmpty() throws Exception {
    boolean res = false;
    InfModel inf = ModelFactory.createInfModel(this.myReasoner, this.instances);
    if (!inf.isEmpty()) {
        /// Inference is OK. Maybe we have new statements
        res = true;
    }
    assertTrue(res);
}
 
开发者ID:aitoralmeida,项目名称:c4a_data_repository,代码行数:15,代码来源:RuleEngineTest.java

示例2: testIsConsistent

import com.hp.hpl.jena.rdf.model.InfModel; //导入方法依赖的package包/类
/**
 * Test if the new Inference Model is consistent.
 *
 */
@Test
public void testIsConsistent() throws Exception {
    boolean res = false;
    InfModel inf = ModelFactory.createInfModel(this.myReasoner, this.instances);
    if (!inf.isEmpty()) {
        ValidityReport validity = inf.validate();
        if (validity.isValid()) {
            // Our inference has been validated and we can say that is consistent based on new rules.
            res = true;
        }
    }
    assertTrue(res);
}
 
开发者ID:aitoralmeida,项目名称:c4a_data_repository,代码行数:18,代码来源:RuleEngineTest.java

示例3: testNewStatements

import com.hp.hpl.jena.rdf.model.InfModel; //导入方法依赖的package包/类
/**
 * Test if there are new statements based on loaded rule in the Reasoner
 *
 */
@Test
public void testNewStatements() throws Exception {
    boolean res = false;
    InfModel inf = ModelFactory.createInfModel(this.myReasoner, this.instances);
    if (!inf.isEmpty()) {
        // It returns True if empty
       res = !inf.getDeductionsModel().isEmpty();
    }
    assertTrue(res);
}
 
开发者ID:aitoralmeida,项目名称:c4a_data_repository,代码行数:15,代码来源:RuleEngineTest.java


注:本文中的com.hp.hpl.jena.rdf.model.InfModel.isEmpty方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。