soeschmid wrote:For the other puzzles i'm still waiting for that moment

Yeah. But somehow I don't think it always comes!
I had a great idea for Modulo, implemented it, and found it didn't help much, though in theory I think it should have done. Sometime I should find time to work out why - more profiling is needed. I then had another idea, implemented that, and it did help a bit, but still not as much as I wanted, and I wasn't prepared to just throw idle cycles at the problem any more, so I stepped back. I think I could combine the two, but I'm concerned about memory usage.
For Mortal Coil I had a good idea over a year ago, but never got around to implementing it until recently. I've been implementing it, on and off, for over a month now. I underestimated the amount of code required (or rather, the number of separate sub-problems I needed to solve separately and join together), so while I thought I'd have something good in about a weekend, it's taken much longer. I'm confident it's going to be a good solution though, overall, and right now it just needs some glue and sticky tape. Plenty of that left over from the christmas presents, at least.
I've also got a better idea for Mortal Coil, which could be really interesting for very large boards - hopefully one day I'll need to try it out!
But I'm pretty sure that in most of these cases everybody is finding the same algorithmic improvements. I'm less sure for Mortal Coil, though, because my approach has taken so long to code up - I wonder if other people have found simpler solutions, and if so, whether those are more or less effective than mine.
There's also an interesting distinction between efficient brute force solvers, which will eventually find a solution no matter how obscure, and heuristic solvers which converge on solutions most of the time but without a guarantee. For example, my runaway solver could fairly easily find *every* solution to a grid, with a few modifications, while my One Of Us solver wouldn't be able to do that. I've resisted heuristic solvers for any other problems, but that's probably why I suck at Bricolage and Pusher Boy. But I find heuristics harder to define, and worry about having to pay attention and change the heuristics if/when it gets stuck.