Skip to content

Commit f42ba59

Browse files
committed
Merge pull request #55 from sorenhein/master
Fix of par score in very rare cases
2 parents a5ec5f9 + 20ccc82 commit f42ba59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Par.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@ int STDCALL SidesParBin(
605605

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

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

610610
for (int i = 0; i < 2; i++)
611611
{

0 commit comments

Comments
 (0)