RolfAndreassen comments on More "Stupid" Questions - Less Wrong

14 Post author: NancyLebovitz 31 July 2013 09:18AM

You are viewing a comment permalink. View the original post to see all comments and the full post content.

Comments (495)

You are viewing a single comment's thread. Show more comments above.

Comment author: RolfAndreassen 03 August 2013 08:52:29PM 0 points [-]

Hmm, interesting! Maybe the simplest approach would be to just implement a class with 16 (or 32, whatever) booleans, and do the underlying bit-pattern math. Then on printing, interpret as powers of two, or two's-complement, or whatever you like.

Comment author: SilasBarta 03 August 2013 09:58:32PM 2 points [-]

... and that is what being a big fish in a small pond feels like ;-) That is, most of them there won't even make it that far. At least, that was my experience.

(My approach was the cruder one of just taking a remainder modulo max size after each operation.)

Comment author: RolfAndreassen 04 August 2013 03:11:00AM 0 points [-]

That would work for unsigned integers, but I don't see how it gives you the classic rollover from 32767 to -32768?