No reachable chess position with more than 218 moves
1–10 of 195 posts
Re: No reachable chess position with more than 218 moves
#2Interestingly, mixed integer linear programming solvers already support these. The technical term for this is 'row generation'. It comes from the usually way these problems are written in matrix form, where rows correspond to constraints and columns correspond to variables.
(Dynamically) adding a row is equivalent to introducing a constraint only if it's violated.
This approach is often used for the traveling salesman problem.
(Weirdly enough, Wikipedia has https://en.wikipedia.org/wiki/Column_generation but nothing on row generation.)
Re: No reachable chess position with more than 218 moves
#3https://lichess.org/@/Tobs40/blog/there-is-no-reachable-ches... describes how the author removed some more complicated rules in the first pass, and is willing to re-introduce them, if necessary. Ie if the solution found violates them. Interestingly, mixed integer linear programming solvers already support these. The technical term for this is 'row generation'. It comes from the usually way these problems are written…
Re: No reachable chess position with more than 218 moves
#4Re: No reachable chess position with more than 218 moves
#5Isn't the very first move of any chess game a reachable chess position with more than 218 moves?
Re: No reachable chess position with more than 218 moves
#6Isn't the very first move of any chess game a reachable chess position with more than 218 moves?
EDIT: I think I understand the confusion. A "move" in this case is a legal possibility for white's next turn. It's not talking about the number of moves in the game, but rather the number of legal choices for white in a single turn.
Re: No reachable chess position with more than 218 moves
#7Isn't the very first move of any chess game a reachable chess position with more than 218 moves?
Re: No reachable chess position with more than 218 moves
#8Isn't the very first move of any chess game a reachable chess position with more than 218 moves?