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 /src/main/scala/uk/ac/ox/cs/rsacomb/RSAConfig.scala | |
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 'src/main/scala/uk/ac/ox/cs/rsacomb/RSAConfig.scala')
-rw-r--r-- | src/main/scala/uk/ac/ox/cs/rsacomb/RSAConfig.scala | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/scala/uk/ac/ox/cs/rsacomb/RSAConfig.scala b/src/main/scala/uk/ac/ox/cs/rsacomb/RSAConfig.scala index 4d96850..f3039b3 100644 --- a/src/main/scala/uk/ac/ox/cs/rsacomb/RSAConfig.scala +++ b/src/main/scala/uk/ac/ox/cs/rsacomb/RSAConfig.scala | |||
@@ -149,6 +149,8 @@ object RSAConfig { | |||
149 | exit("The following flag is mandatory: '-o' or '--ontology'.") | 149 | exit("The following flag is mandatory: '-o' or '--ontology'.") |
150 | if (!config.contains('data)) | 150 | if (!config.contains('data)) |
151 | config += ('data -> List.empty[os.Path]) | 151 | config += ('data -> List.empty[os.Path]) |
152 | if (!config.contains('answers)) | ||
153 | config += ('answers -> Logger.dir / "answers.json") | ||
152 | config | 154 | config |
153 | } | 155 | } |
154 | } | 156 | } |