Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Whats your favorite bullshit programming concept?

Name: Anonymous 2021-03-07 13:57

* infinity
* negative zero
* multiple threads

Name: Anonymous 2021-04-09 13:42

>>26
Efficient implementation of rationals is more a question of memory management than execution speed, and virtual memory solved that issue a long time ago with 64-bit address spaces (well 47 bits for userspace today) picking up the rest. Furthermore the parallelism issue can be solved by storing the limbs of an arbitrary-precision integer in a "long carry" format, so that there's (say) 12 bits of carry and 52 bits of body, allowing operations to produce denormal limbs, and catching carry overflow with a slowpath which normalizes the operands first.

This isn't common practice because libgmp is the practical standard, and it fixes a carryless format. But perhaps one day.

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List