Comment 144 for bug 272247

Revision history for this message
Leandro Pereira de Lima e Silva (leandro-limaesilva) wrote :

Ops, big mistake in the algorithm description,

            if revision middle has the bug
                startrevision=middle+1
                finalrevision=finalrevision-1
            else (middle don't has the bug)
                startrevision=startrevision+1
                finalrevision=middle-1

should have been

            if revision middle has the bug
                startrevision=startrevision+1
                finalrevision=middle
            else (middle don't has the bug)
                startrevision=middle+1
                finalrevision=finalrevision-1

Probably still bugged, but it should work for a human.