Category: Huo Chess
-
Huo Chess: Using Copilot to summarize code

AI is now part of our life. And Copilot is the AI assistant we can all have in Microsoft Visual Studio. One of the features Copilot can be used for is to summarize a class in our code and explain it. For example, I used it to produce a summary of the CountScore function of…
-
Huo Chess – Live improvements updates
Huo Chess is the open source chess engine that is used in ChessProgramming.com portal for the illustration of chess programming. The program is always in development and this page serves as a source of any updates regarding Huo Chess. Update title Description Date Reverse colours The colour of the player that is assessed when the…
-
How to develop a chess program from scratch (for total beginners) Ep. 4: Scan possible moves
[Previous episode] [Next episode] Overview In the previous chapter we saw how the program scans through all the chessboard to find its own pieces. The next step is to think for all the possible moves for each one of these pieces. This small chapter shows exactly how this is done. Scanning all possible moves In…