aboutsummaryrefslogtreecommitdiff
path: root/test/uk/ac/ox/cs/pagoda/tester/PagodaTester.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/uk/ac/ox/cs/pagoda/tester/PagodaTester.java')
-rw-r--r--test/uk/ac/ox/cs/pagoda/tester/PagodaTester.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/uk/ac/ox/cs/pagoda/tester/PagodaTester.java b/test/uk/ac/ox/cs/pagoda/tester/PagodaTester.java
index 48a2a51..d50a18b 100644
--- a/test/uk/ac/ox/cs/pagoda/tester/PagodaTester.java
+++ b/test/uk/ac/ox/cs/pagoda/tester/PagodaTester.java
@@ -99,7 +99,7 @@ public class PagodaTester {
99// args = new String[] {dbpedia_tbox, dbpedia_abox, dbpedia_query}; 99// args = new String[] {dbpedia_tbox, dbpedia_abox, dbpedia_query};
100// args = new String[] {travel_tbox, null, dbpedia_query274}; 100// args = new String[] {travel_tbox, null, dbpedia_query274};
101// args = new String[] {fly, null, fly_query}; 101// args = new String[] {fly, null, fly_query};
102// args = new String[] {npd_tbox, npd_abox, npd_query}; 102 args = new String[] {npd_tbox, npd_abox, npd_query};
103// args = new String[] {npd_bench_tbox, npd_bench_abox, npd_bench_query}; 103// args = new String[] {npd_bench_tbox, npd_bench_abox, npd_bench_query};
104// args = new String[] {"../SemFacet/WebContent/WEB-INF/data/dbpedia.owl", "../SemFacet/WebContent/WEB-INF/data/dbpediaA.nt", null}; 104// args = new String[] {"../SemFacet/WebContent/WEB-INF/data/dbpedia.owl", "../SemFacet/WebContent/WEB-INF/data/dbpediaA.nt", null};
105// args = new String[] {"../core/WebContent/WEB-INF/data/fly.owl", "../core/WebContent/WEB-INF/data/fly-data.nt", null}; 105// args = new String[] {"../core/WebContent/WEB-INF/data/fly.owl", "../core/WebContent/WEB-INF/data/fly-data.nt", null};
@@ -129,6 +129,11 @@ public class PagodaTester {
129 if (args.length > index) properties.setToClassify(Boolean.parseBoolean(args[index++].substring(1))); 129 if (args.length > index) properties.setToClassify(Boolean.parseBoolean(args[index++].substring(1)));
130 if (args.length > index) properties.setToCallHermiT(Boolean.parseBoolean(args[index++].substring(1))); 130 if (args.length > index) properties.setToCallHermiT(Boolean.parseBoolean(args[index++].substring(1)));
131 131
132 System.out.println("Ontology file: " + properties.getOntologyPath());
133 System.out.println("Data files: " + properties.getDataPath());
134 System.out.println("Query files: " + properties.getQueryPath());
135 System.out.println("Answer file: " + properties.getAnswerPath());
136
132 QueryReasoner pagoda = null; 137 QueryReasoner pagoda = null;
133 138
134 try { 139 try {