You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to lci-devel
I was trying to solve a Project Euler problem in lci and I realized
that because I'm just using 32-bit integers as the underlying type for
NUMBR I was overflowing.
It seems like a good idea to make NUMBRs 64-bit integers by default.
Though it uses twice the storage it seems more useful to the
programmer (memory is pretty cheap for this kind of transient storage
anyway). Do Perl or Python store their integers as 64-bit values?
glen lenker
unread,
Nov 7, 2010, 3:58:36 AM11/7/10
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to lci-...@googlegroups.com
sys.getsizeof is saying that integers on my machine are 12 bytes, so I guess they are 96-bit integers.