Skip to content

Commit

Permalink
ok
Browse files Browse the repository at this point in the history
  • Loading branch information
lapaesleme committed Oct 6, 2019
1 parent cde2825 commit 91dde61
Show file tree
Hide file tree
Showing 71 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public static void main(String[] args) throws FileNotFoundException, IOException

System.out.println(benchmark);

try (InputStream in = new FileInputStream(new File(String.format("./src/main/resources/benchmarksSemanticWeb/%1$s/IMDb2/queries_.txt", benchmark)));
try (InputStream in = new FileInputStream(new File(String.format("./src/main/resources/benchmarks/%1$s/IMDb2/queries_.txt", benchmark)));
Scanner sc = new Scanner(in)) {

int i = 0;
Expand All @@ -51,7 +51,7 @@ public static void main(String[] args) throws FileNotFoundException, IOException
System.out.println(keywordQuery);
if (keywordQuery != null && !keywordQuery.equals("")) {
String benchmarkNS = String.format("urn:graph:kws:%1$03d:", i);
String benchmarkFilename = String.format("./src/main/resources/benchmarksSemanticWeb/%1$s/IMDb2/%2$03d.nq.gz", benchmark, i);
String benchmarkFilename = String.format("./src/main/resources/benchmarks/%1$s/IMDb2/%2$03d.nq.gz", benchmark, i);
run(kwsVersion, service1, service2, keywordQuery, benchmarkNS, benchmarkFilename);
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package uff.ic.swlab.kws;
package uff.ic.swlab.kws.deprecated;

import java.io.File;
import java.io.FileInputStream;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package uff.ic.swlab.kws;
package uff.ic.swlab.kws.deprecated;

import java.io.File;
import java.io.FileInputStream;
Expand Down

0 comments on commit 91dde61

Please sign in to comment.