Skip to content

Solve the simple simon autodrop problem less aggressively

Stephan Kulow requested to merge work/coolo/fix_469991 into master

Using the brute force algorithm for auto drop has several drawbacks that users reported:

  • it's too aggressive (didn't matter for simple simon when I implemented it, as there is only one kind of foundation move)
  • the hint function is no longer a way to cheat your scores, you actually need to pick the winning move yourself

So revert that part and make in return the simple simon solver more useful for autodrop by providing the right priority for foundation moves. In addition I had to make sure we always return a first move even if the old interface is not implemented.

Fixes 469991

Merge request reports