I am primarily a C++/Java/Python programmer and have recently started diving into Haskell. The only other functional languages that I have ever dabbled in are Scheme and Ocaml (both of which are "impure").
I think I have some understanding of the purely functional programming paradigm and why it is a good thing. But some things bother me when trying to visualize implementing certain real world applications using Haskell. Also, some posts on stackoverflow seem to suggest that for certain applications, Haskell can only provide tedious work-arounds at best (which may be elegantly solved with C++ for example). This is kind of unexpected, and makes me feel that the language is not really flexible enough no matter how powerful it is in its expressiveness.
So, here is my question:
How would I go about designing a chess Board in Haskell? The requirement for the Board is that operations on it (such as Move, UnmakeLastMove, etc) need to be really fast as they are repeatedly invoked by a search function (alpha-beta for example) in a tight loop. The engine's strength depends on how deep you can look in the game tree. How would I model such a thing in a purely functional way (where state changes are disallowed) and yet have efficiency comparable to that of C++? In C++, one could implement a board by having a mutable 8x8 array. In Haskell, however, it seems like the only way is to recreate the entire board with updated state every time operations are invoked. How else can it be implemented? Is using monads necessary here? Can laziness be leveraged in some interesting manner?
unMakeMovewill be free, since data structures are persistent. – aleator Sep 5 '11 at 14:43