diff options
author | Federico Igne <git@federicoigne.com> | 2021-07-22 09:59:07 +0100 |
---|---|---|
committer | Federico Igne <git@federicoigne.com> | 2021-07-22 09:59:07 +0100 |
commit | cb8572606f8951213bcfe9e6667caa208ad3d189 (patch) | |
tree | 7ffc99c0d252f7eb828b9147215650dd06149367 /src/main/scala/uk/ac/ox/cs/rsacomb/RSAOntology.scala | |
parent | fb0bbb76a53d08dffea74d0ae13c03a122c379bd (diff) | |
download | RSAComb-cb8572606f8951213bcfe9e6667caa208ad3d189.tar.gz RSAComb-cb8572606f8951213bcfe9e6667caa208ad3d189.zip |
Review main workflow
Diffstat (limited to 'src/main/scala/uk/ac/ox/cs/rsacomb/RSAOntology.scala')
-rw-r--r-- | src/main/scala/uk/ac/ox/cs/rsacomb/RSAOntology.scala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/scala/uk/ac/ox/cs/rsacomb/RSAOntology.scala b/src/main/scala/uk/ac/ox/cs/rsacomb/RSAOntology.scala index 630d2a0..73c4411 100644 --- a/src/main/scala/uk/ac/ox/cs/rsacomb/RSAOntology.scala +++ b/src/main/scala/uk/ac/ox/cs/rsacomb/RSAOntology.scala | |||
@@ -209,9 +209,9 @@ class RSAOntology(axioms: List[OWLLogicalAxiom], datafiles: List[File]) | |||
209 | .map(implicits.RDFox.owlapiToRdfoxLiteral) | 209 | .map(implicits.RDFox.owlapiToRdfoxLiteral) |
210 | 210 | ||
211 | /** Retrieve concepts/roles in the ontology */ | 211 | /** Retrieve concepts/roles in the ontology */ |
212 | private val concepts: List[OWLClass] = | 212 | val concepts: List[OWLClass] = |
213 | ontology.getClassesInSignature().asScala.toList | 213 | ontology.getClassesInSignature().asScala.toList |
214 | private val roles: List[OWLObjectPropertyExpression] = | 214 | val roles: List[OWLObjectPropertyExpression] = |
215 | axioms | 215 | axioms |
216 | .flatMap(_.objectPropertyExpressionsInSignature) | 216 | .flatMap(_.objectPropertyExpressionsInSignature) |
217 | .distinct | 217 | .distinct |