function _DiffEngine::_lcs_pos in Diff 5.2
Same name and namespace in other branches
- 5 DiffEngine.php \_DiffEngine::_lcs_pos()
- 6.2 DiffEngine.php \_DiffEngine::_lcs_pos()
- 6 DiffEngine.php \_DiffEngine::_lcs_pos()
- 7.3 DiffEngine.php \_DiffEngine::_lcs_pos()
- 7.2 DiffEngine.php \_DiffEngine::_lcs_pos()
1 call to _DiffEngine::_lcs_pos()
File
- ./
DiffEngine.php, line 329
Class
- _DiffEngine
- Class used internally by Diff to actually compute the diffs.
Code
function _lcs_pos($ypos) {
$end = $this->lcs;
if ($end == 0 || $ypos > $this->seq[$end]) {
$this->seq[++$this->lcs] = $ypos;
$this->in_seq[$ypos] = 1;
return $this->lcs;
}
$beg = 1;
while ($beg < $end) {
$mid = (int) (($beg + $end) / 2);
if ($ypos > $this->seq[$mid]) {
$beg = $mid + 1;
}
else {
$end = $mid;
}
}
USE_ASSERTS && assert($ypos != $this->seq[$end]);
$this->in_seq[$this->seq[$end]] = false;
$this->seq[$end] = $ypos;
$this->in_seq[$ypos] = 1;
return $end;
}