Skip to content

Commit 4a5641b

Browse files
committed
v1.3.1: fix launcher and log RDFMiner
1 parent c27c069 commit 4a5641b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

RDFMiner/code/src/main/java/com/i3s/app/rdfminer/RDFMiner.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,9 @@ public static void main(String[] args) throws InterruptedException {
116116

117117
logger.info("Number of processors avalaibles: " + Global.NB_THREADS);
118118

119+
if(parameters.timeOut != 0)
120+
logger.info("Time cap initialized at " + parameters.timeOut + " seconde(s)");
121+
119122
// Load rdfminer_RDFMINER.so generated by ./compile_c_code.sh (see /scripts
120123
// folder)
121124
System.loadLibrary("rdfminer_RDFMiner");

RDFMiner/code/src/main/java/com/i3s/app/rdfminer/launcher/LaunchWithoutGE.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public void run() {
155155
}
156156

157157
if (parameters.axiom != null) {
158-
System.out.println("[RES]" + RDFMiner.results.toString());
158+
System.out.println("Axiom evaluated ! JSON Result: " + a.toJSON().toString());
159159
break;
160160
}
161161

0 commit comments

Comments
 (0)