From: Brian H. <bh...@sp...> - 2005-01-17 00:35:13
|
My apologies for being silent for so long (life intervened). One question on this subject: is there a reason we're not using OUnit? I have some minor annoyances with it (it needs findlib installed is the biggest one), but not enough to write my own. I'm about 1/2 way done with a module implementing Chris Okasaki's random access lists, if people are interested. For those who don't know, these are lists that work mostly like normal linked lists, except that getting the nth element is O(log N), and not O(N). Several other operations are similiarly more efficient. The reason I bring this up is that I'm writting the test suite in OUnit. Brian |