> I solved my issue
you're very optimistic.
I delved into Devel::Peek and I'm still not sure which type casting or crossed thresholds produced different results for 2 and 3.
Anyway you're voyaging dangerous grounds, don't be surprised if your Float to Int conversions breaks again.
Better rely on on already shown pure integer arithmetic for your integer (sic) tests. (rule of thumb!)
PS:
lanx@nc10-ubuntu:~$ perl -MDevel::Peek -e'$|=1;$e=2;$x=log(5**$e)/log(
+5); Dump $x; print ("\n", ($x==$e) ? "" : "not " ,"equal\n\n"); Dump
+ $x;'
SV = NV(0x9c86840) at 0x9c70f68
REFCNT = 1
FLAGS = (NOK,pNOK)
NV = 2
equal
SV = PVNV(0x9c50a60) at 0x9c70f68
REFCNT = 1
FLAGS = (IOK,NOK,pIOK,pNOK)
IV = 2
NV = 2
PV = 0
lanx@nc10-ubuntu:~$ perl -MDevel::Peek -e'$|=1;$e=3;$x=log(5**$e)/log(
+5); Dump $x; print ("\n", ($x==$e) ? "" : "not " ,"equal\n\n"); Dump
+ $x;'
SV = NV(0x8fde840) at 0x8fc8f68
REFCNT = 1
FLAGS = (NOK,pNOK)
NV = 3
not equal
SV = PVNV(0x8fa8a60) at 0x8fc8f68
REFCNT = 1
FLAGS = (NOK,pIOK,pNOK)
IV = 3
NV = 3
PV = 0
UPDATE: improved code
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|