Skip to content

Commit

Permalink
[BUG] Wrong index taken during per level agregation (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
demid5111 committed Apr 27, 2022
1 parent fcc3802 commit 6074ed3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public List<ArrayList<ArrayList<TT2HFLTS>>> transposeByAbstractionLevel(int leve
for (int expertIndex = 0; expertIndex < expertsSize; expertIndex++) {
for (int altIndex = 0; altIndex <altSize; altIndex++) {
for (int levelIndex = 0; levelIndex < levelsSize; levelIndex++) {
TT2HFLTS est = estGroupedByAlternatives.get(expertIndex).get(altIndex).get(expertIndex);
TT2HFLTS est = estGroupedByAlternatives.get(expertIndex).get(altIndex).get(levelIndex);
levelEstimates.get(levelIndex).get(altIndex).set(expertIndex, est);
}
}
Expand Down

0 comments on commit 6074ed3

Please sign in to comment.