Mauritz8 / Vividmind

A UCI-compatible chess engine written from scratch in C++
1 stars 0 forks source link

Fix move ordering #97

Closed Mauritz8 closed 1 year ago

Mauritz8 commented 1 year ago

It's actually searching the pv-move first for all positions at that depth, and not just the exact position in which it was the best move.

Mauritz8 commented 1 year ago

I just removed the move ordering since it didn't do what I wanted. It was better with the move ordering, but I removed it anyways. I'll add this back in, when I implement a transposition table in #66