Skip to content

Commit

Permalink
Merge pull request #55 from sorenhein/master
Browse files Browse the repository at this point in the history
Fix of par score in very rare cases
  • Loading branch information
sorenhein committed Jan 4, 2016
2 parents a5ec5f9 + 20ccc82 commit f42ba59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Par.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ int STDCALL SidesParBin(

int dom_denom[2] = { -1, -1 }; /* Dominating denom */

int dom_level[2]; /* Dominating level */
int dom_level[2] = { -1, -1 }; /* Dominating level */

for (int i = 0; i < 2; i++)
{
Expand Down

0 comments on commit f42ba59

Please sign in to comment.