diff options
author | Federico Igne <git@federicoigne.com> | 2021-10-20 18:06:36 +0100 |
---|---|---|
committer | Federico Igne <git@federicoigne.com> | 2021-10-20 18:06:36 +0100 |
commit | e3534ea4b8d76e9a22991ec806ab3acd6bae0fea (patch) | |
tree | 1bc560fb179b149ffafdae1cdfdd3148fb9c540c /README.md | |
parent | bf2d3b0c0a1e3e1c4e2dd54775582775c1650e75 (diff) | |
download | RSAComb-e3534ea4b8d76e9a22991ec806ab3acd6bae0fea.tar.gz RSAComb-e3534ea4b8d76e9a22991ec806ab3acd6bae0fea.zip |
Rework RDFox simulation to be more modular
This will help with faster testing and debugging.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -187,12 +187,11 @@ java -cp lib/JRDFox.jar:target/scala-2.13/RSAComb-assembly-0.2.0.jar uk.ac.ox.cs | |||
187 | This will answers all the queries in `tests/lubm/queries.sparql` and generate debug information in a new folder in the current working directory (let's say, `rsacomb-20211005120845/`). | 187 | This will answers all the queries in `tests/lubm/queries.sparql` and generate debug information in a new folder in the current working directory (let's say, `rsacomb-20211005120845/`). |
188 | You can run the provided RDFox script as follows | 188 | You can run the provided RDFox script as follows |
189 | ```{.sh} | 189 | ```{.sh} |
190 | ./lib/RDFox-linux-x86_64-5.2.1/RDFox sandbox . "simulate <debug-folder> <data> <query-id>" | 190 | path/to/RDFox sandbox <debug-folder> "simulate <query-id>" |
191 | ``` | 191 | ``` |
192 | where | 192 | where |
193 | - `debug-folder` is the newly generated folder (`rsacomb-20211005120845` in this example) | 193 | - `debug-folder` is the newly generated folder (`rsacomb-20211005120845` in this example) |
194 | - `<data>` is the path to the data file used with RSAComb (`tests/lubm/data/lubm1.ttl` in this example) | 194 | - `query-id` is the identifier of the query we want to simulate (if we want to simulate query 16 we will pass `16` as an argument). We can pass `all` to simulate all queries. |
195 | - `query-id` is the identifier of the query we want to simulate (if we want to simulate query 16 we will pass `16` as an argument) | ||
196 | 195 | ||
197 | This will launch a sandboxed RDFox console, where you will be able to explore a simulation of the datastore used by RSAComb. | 196 | This will launch a sandboxed RDFox console, where you will be able to explore a simulation of the datastore used by RSAComb. |
198 | You can also access the same datastore from the web interface at [http://localhost:12110/console/](http://localhost:12110/console/). | 197 | You can also access the same datastore from the web interface at [http://localhost:12110/console/](http://localhost:12110/console/). |