Hi monks,
In an algorithm I need to test, if the positions of leftmost bits of two bitvectors are equal:
if ( int(log($v1)/log(2)) == int(log($v2)/log(2)) ) { #match }
But this is unreliable because of the float-precision :
$ perl -e 'for my $i (1..63) {if(int(log(2**$i-1)/log(2)) != $i-1) {pr
+int "$i\n"}}'
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
Is there a reliable solution with comparable speed? A split into two 32-bit vectors would be an ugly workaround. Or should I redesign this algorithm LCS_64i() at a higher level?
TIA
Helmut Wollmersdorfer
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.