gravatar
deba@inf.elte.hu
deba@inf.elte.hu
Fix in HartmannOrlin algorithm (#333)
0 1 0
default
1 file changed with 3 insertions and 1 deletions:
↑ Collapse diff ↑
Ignore white space 6 line context
... ...
@@ -598,7 +598,9 @@
598 598
            }
599 599
          }
600 600
          level[u] = Pair(i, j);
601
          u = _gr.source(_data[u][j].pred);
601
          if (j != 0) {
602
	    u = _gr.source(_data[u][j].pred);
603
	  }
602 604
        }
603 605
      }
604 606

	
0 comments (0 inline)