Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 1.22 KB

TODO.md

File metadata and controls

13 lines (8 loc) · 1.22 KB

DUMP: Dump of Unsorted Morsels for Programmers

TODO

General improvements

  • I have one or two cases of #ifdefs in the code to avoid having stuff being defined multiple times. I should add to Halp the ability to define blocks that are expanded at most once per output file. This would be cleaner for whover would be reading the code.

Stuff I'd like to include

  • Sorting algorithms. Too classic to not include! I should consider implementing an additive to measure things like number of comparisons and the number of swaps. Would be nice for benchmarking, but would also make the implementations more noisy. Must weight the pros and cons.
  • The Right Way to Calculate Stuff. This is some wonderful material by Don Hatch, which I'd hate to lose. (We'll, I never really used this stuff, but somehow I am sure this will save my life sooner or later).
  • Kumaraswamy distribution (Wikipedia, random blog post). I'd like to play around with this distribution a bit. Could be a useful thing to include in general-purpose RNG routines.