Skip to content

Commit

Permalink
Fix of par score in very rare cases
Browse files Browse the repository at this point in the history
Fix was in v2.8.2 in Bo's site, but not in v2.8.2 on GitHub...
  • Loading branch information
sorenhein committed Jan 4, 2016
1 parent ec48b81 commit 20ccc82
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 20ccc82

Please sign in to comment.