aboutsummaryrefslogtreecommitdiff
path: root/src/uk/ac/ox/cs/pagoda/reasoner/light/RDFoxQueryEngine.java
diff options
context:
space:
mode:
authorRncLsn <rnc.lsn@gmail.com>2015-06-02 15:40:29 +0100
committerRncLsn <rnc.lsn@gmail.com>2015-06-02 15:40:29 +0100
commit691964863246bbf6ef9f72cc5e82c83df34f135a (patch)
tree98c9834f788ff320cabcfb29733890c5b40e024f /src/uk/ac/ox/cs/pagoda/reasoner/light/RDFoxQueryEngine.java
parent4b7253559c290b6fdd1c4122830f153fda85dd62 (diff)
downloadACQuA-691964863246bbf6ef9f72cc5e82c83df34f135a.tar.gz
ACQuA-691964863246bbf6ef9f72cc5e82c83df34f135a.zip
Working query-dependent semi-skolemised upper bound (tested on UOBM1 and LUBM1).
Diffstat (limited to 'src/uk/ac/ox/cs/pagoda/reasoner/light/RDFoxQueryEngine.java')
-rw-r--r--src/uk/ac/ox/cs/pagoda/reasoner/light/RDFoxQueryEngine.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uk/ac/ox/cs/pagoda/reasoner/light/RDFoxQueryEngine.java b/src/uk/ac/ox/cs/pagoda/reasoner/light/RDFoxQueryEngine.java
index f835ba9..8b22919 100644
--- a/src/uk/ac/ox/cs/pagoda/reasoner/light/RDFoxQueryEngine.java
+++ b/src/uk/ac/ox/cs/pagoda/reasoner/light/RDFoxQueryEngine.java
@@ -74,7 +74,7 @@ public abstract class RDFoxQueryEngine extends QueryEngine {
74 long prevTriplesCount = store.getTriplesCount(); 74 long prevTriplesCount = store.getTriplesCount();
75 store.importOntology(ontology.getOWLOntologyManager().createOntology(ontology.getABoxAxioms(true))); 75 store.importOntology(ontology.getOWLOntologyManager().createOntology(ontology.getABoxAxioms(true)));
76 long loadedTriples = store.getTriplesCount() - prevTriplesCount; 76 long loadedTriples = store.getTriplesCount() - prevTriplesCount;
77 Utility.logInfo(name + ": loaded " + loadedTriples + " triples from " + ontology.getABoxAxioms(true) 77 Utility.logDebug(name + ": loaded " + loadedTriples + " triples from " + ontology.getABoxAxioms(true)
78 .size() + " ABox axioms"); 78 .size() + " ABox axioms");
79 } catch(JRDFStoreException | OWLOntologyCreationException e) { 79 } catch(JRDFStoreException | OWLOntologyCreationException e) {
80 e.printStackTrace(); 80 e.printStackTrace();