diff options
| author | Federico Igne <git@federicoigne.com> | 2021-07-22 17:15:42 +0100 |
|---|---|---|
| committer | Federico Igne <git@federicoigne.com> | 2021-07-22 17:15:42 +0100 |
| commit | 79ca4d0b3fe7df238bede90b96226e72707d05b7 (patch) | |
| tree | 6a47dd0652098d0e4a4c55cd93b12de421682c47 | |
| parent | b8b8a69ec1d1c93d5cfcfba4dbd002d5c90dd4c6 (diff) | |
| download | RSAComb-79ca4d0b3fe7df238bede90b96226e72707d05b7.tar.gz RSAComb-79ca4d0b3fe7df238bede90b96226e72707d05b7.zip | |
Fix file naming
| -rw-r--r-- | src/main/scala/uk/ac/ox/cs/rsacomb/approximation/Approximation.scala (renamed from src/main/scala/uk/ac/ox/cs/rsacomb/approximation/approximation.scala) | 0 | ||||
| -rw-r--r-- | src/main/scala/uk/ac/ox/cs/rsacomb/approximation/Lowerbound.scala (renamed from src/main/scala/uk/ac/ox/cs/rsacomb/approximation/lowerbound.scala) | 4 | ||||
| -rw-r--r-- | src/main/scala/uk/ac/ox/cs/rsacomb/ontology/Ontology.scala (renamed from src/main/scala/uk/ac/ox/cs/rsacomb/ontologies/Ontology.scala) | 0 |
3 files changed, 2 insertions, 2 deletions
diff --git a/src/main/scala/uk/ac/ox/cs/rsacomb/approximation/approximation.scala b/src/main/scala/uk/ac/ox/cs/rsacomb/approximation/Approximation.scala index 344f0fe..344f0fe 100644 --- a/src/main/scala/uk/ac/ox/cs/rsacomb/approximation/approximation.scala +++ b/src/main/scala/uk/ac/ox/cs/rsacomb/approximation/Approximation.scala | |||
diff --git a/src/main/scala/uk/ac/ox/cs/rsacomb/approximation/lowerbound.scala b/src/main/scala/uk/ac/ox/cs/rsacomb/approximation/Lowerbound.scala index 766ea0e..3fc4988 100644 --- a/src/main/scala/uk/ac/ox/cs/rsacomb/approximation/lowerbound.scala +++ b/src/main/scala/uk/ac/ox/cs/rsacomb/approximation/Lowerbound.scala | |||
| @@ -172,7 +172,7 @@ class LowerBound extends Approximation[RSAOntology] { | |||
| 172 | * This is done by gathering those axioms that prevent the ontology | 172 | * This is done by gathering those axioms that prevent the ontology |
| 173 | * dependency graph from being tree-shaped, and removing them. | 173 | * dependency graph from being tree-shaped, and removing them. |
| 174 | * | 174 | * |
| 175 | * @param axioms the set of axioms to approximate. | 175 | * @param ontology the set of axioms to approximate. |
| 176 | * @return the approximated RSA ontology | 176 | * @return the approximated RSA ontology |
| 177 | */ | 177 | */ |
| 178 | private def toRSA(ontology: Ontology): RSAOntology = { | 178 | private def toRSA(ontology: Ontology): RSAOntology = { |
| @@ -214,7 +214,7 @@ class LowerBound extends Approximation[RSAOntology] { | |||
| 214 | } | 214 | } |
| 215 | } | 215 | } |
| 216 | 216 | ||
| 217 | val toDelete = color.iterator.collect { case (resource: IRI, ToDelete) => | 217 | val toDelete = color.collect { case (resource: IRI, ToDelete) => |
| 218 | nodemap(resource.getIRI) | 218 | nodemap(resource.getIRI) |
| 219 | }.toList | 219 | }.toList |
| 220 | 220 | ||
diff --git a/src/main/scala/uk/ac/ox/cs/rsacomb/ontologies/Ontology.scala b/src/main/scala/uk/ac/ox/cs/rsacomb/ontology/Ontology.scala index d73704f..d73704f 100644 --- a/src/main/scala/uk/ac/ox/cs/rsacomb/ontologies/Ontology.scala +++ b/src/main/scala/uk/ac/ox/cs/rsacomb/ontology/Ontology.scala | |||
