sapling/hgext/generic_bisect.py
Jun Wu 3adc813687 codemod: add copyright headers
Summary: This is just the result of running `./contrib/fix-code.py $(hg files .)`

Reviewed By: ikostia

Differential Revision: D10213075

fbshipit-source-id: 88577c9b9588a5b44fcf1fe6f0082815dfeb363a
2018-10-26 15:09:12 -07:00

28 lines
689 B
Python

# Copyright 2017 Facebook, Inc.
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
def bisect(l, r, comp, val):
"""Bisect algorithm with custom compare function
Returns smallest index between l and r whose value is equal to val.
Returns None if there are no such index.
"""
if r < l:
return None
while l < r:
m = (l + r) / 2
cmpresult = comp(m, val)
if cmpresult == -1:
l = m + 1
elif cmpresult == 0:
r = m
else:
r = m - 1
if r < l or comp(l, val) != 0:
return None
return l