pensquid / yobmef

Weird toy chess engine written *very much from scratch* in Rust.
14 stars 1 forks source link

Only sort for non root nodes #5

Closed UlisseMini closed 3 years ago

UlisseMini commented 3 years ago

We are running the expensive move sorting when we might be on a leaf node. (link)

Theoretically, we should only need to sort the moves if we are not on a leaf node.