소스 검색

Small fix.

Use function instead of original expression.
ld
LazyWolfLin 3 년 전
부모
커밋
3806fbc23c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      db/skiplist.h

+ 1
- 1
db/skiplist.h 파일 보기

@ -243,7 +243,7 @@ int SkipList::RandomHeight() {
// Increase height with probability 1 in kBranching
static const unsigned int kBranching = 4;
int height = 1;
while (height < kMaxHeight && ((rnd_.Next() % kBranching) == 0)) {
while (height < kMaxHeight && rnd_.OneIn(kBranching)) {
height++;
}
assert(height > 0);

불러오는 중...
취소
저장