Skip to content

Commit

Permalink
required for cran version 0.32.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhard-da committed Jul 17, 2022
1 parent 8512bb1 commit fdbdb47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/suppMultDimTable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ List greedyMultDimSuppression(DataFrame dat, List indices, List subIndices, Inte
if (cur_sdcstatus[kk] == 4) {
nr_dummycells = nr_dummycells + 1;
}
if ((cur_sdcstatus[kk] == 0) & (cur_freq[kk] > 0)) {
if ((cur_sdcstatus[kk] == 0) && (cur_freq[kk] > 0)) {
is_candidate[kk] = true;
}
}
Expand Down

0 comments on commit fdbdb47

Please sign in to comment.