Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fboehm committed Apr 16, 2022
1 parent 1b03372 commit 6ce4e7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scr/dbslmmfit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ int DBSLMMFIT::est(int n_ref,
info_l_Block[B][k] = info_l_block[k];
// test_info_l_block
vector <INFO> test_info_l_block;
for (size_t j = count_l; j < test_info_l.size(); j++) {
for (size_t j = test_count_l; j < test_info_l.size(); j++) {
if(test_info_l[j].block == i){
test_info_l_block.push_back(test_info_l[j]);
test_count_l++;
Expand Down Expand Up @@ -270,7 +270,7 @@ int DBSLMMFIT::est(int n_ref,
}
}
}
count_s = 0; // reset
test_count_s = 0; // reset

double len_s = num_s.max();

Expand Down

0 comments on commit 6ce4e7e

Please sign in to comment.