source: src/log2.py @ 6

Last change on this file since 6 was 3, checked in by nipo, 15 years ago

Add log2 utility module

  • Property keywords set to Id
File size: 68 bytes
Line 
1
2import math
3
4def log2(x):
5    return int(math.ceil(math.log(x,2)))
Note: See TracBrowser for help on using the repository browser.