Ryan Heath
Ryan Heath
Yes, IsDeleted would be a better choice, but it is not available through the interface, yet.
> Yes, but user does not know if entity is tracked because it exists and is loaded to session or that it is known missing one. > > Was thinking...
Could you create a PR with the functionality you want. That might be better to understand your requirements and if they should be in this package. // Ryan
Cool to see so many entries! 😎
I think it is a bug in the parser too. The returned tokens also differ in other places that should not have changed. See the images below; Left original source,...
Read "Game Over:" as "Game Ended in:"
Yes that’s expected. The longer the string the more space (thus tokens) is allocated. Also one char uses 2 bytes, thus two tokens. You might want to store your string...
How do you get your moves to make? Do you use the board's method `GetLegalMoves()`?
Whenever you do a `MakeMove` you should have a corresponding `UndoMove`, before you can do a `MakeMove` of its 'siblings legalMoves'. **wrong** ``` foreach(var m in board.GetLegalMoves()) { board.MakeMove(m); //...
You could try pass default instead `public string GetBestMove(Board board, int depth = 3, Move prvmove = default)` if you are lucky `default` could translate into the same state as...