Skip to content

Commit

Permalink
AbsoluteCoveredness: compared to all other (including empty) dataset
Browse files Browse the repository at this point in the history
  • Loading branch information
jmkeil committed Nov 4, 2024
1 parent 78be049 commit b912608
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public AbsoluteCoveredness() {

public void storeInModel(Aspect aspect, Map<Resource, Model> outputModelsMap) {
for (Resource dataset : values.keySet()) {
Collection<Resource> otherDatasets = new HashSet<>(values.keySet());
Collection<Resource> otherDatasets = new HashSet<>(outputModelsMap.keySet());
otherDatasets.remove(dataset);
storeInModel(aspect, dataset, otherDatasets, get(dataset), outputModelsMap.get(dataset));
}
Expand Down

0 comments on commit b912608

Please sign in to comment.