Skip to content

Commit

Permalink
prevent windows crash on uninitialized value
Browse files Browse the repository at this point in the history
  • Loading branch information
kirill-terekhov committed Apr 23, 2019
1 parent 5f6fa7c commit ecebb51
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1357,11 +1357,11 @@ static bool allow_pivot = true;
double tt1, tt2,ttt;
//in localPQ numbers indicate where to put current row/column
//reorder E,F blocks by swaps
//tt1 = Timer();
tt1 = Timer();
//inverse ordering
ReorderEF(wbeg,wend, donePQ, localP, localQ);
inversePQ(wbeg,wend,localP,localQ, invP,invQ);
//tt1 = Timer() - tt1;
tt1 = Timer() - tt1;

//std::cout << "reorder: " << tt1 << std::endl;
tt2 = Timer();
Expand Down

0 comments on commit ecebb51

Please sign in to comment.