Results 7 comments of Lorenzo

The indenting seems to be a css issue, running `$("code").css("white-space","pre")` in the browser console fixes it I can't find where the styling for code snippets is set in this repo...

Since python 2 is dead, is there a way to merge this project with pdfminer and pdfminer3, to prevent duplicate work?

Hi! I didn't look into it in the past year, but if that function is still called so many times with the same arguments I'm sure there's still room for...

> For my chess variant program which is based on sunfish I tried the naive approach to feed the past postitions into the tt with depth 99 For my rewrite...

Nice to see you're still working on sunfish! From sunfish_rs i found that some situations can be tricky (sometimes when at a disadvantage it's not optimal to repeat once), but...

Because the opponent is not guaranteed to keep repeating and you need to repeat three times to draw. Even stockfish sometimes repeats once just to have more time to think...

> A mate in 6 is considered the same as a mate in 1. I "solve" this in my rust engine by exiting the search early on mate found, which...