pleco-rs / Pleco

A Rust-based re-write of the Stockfish Chess Engine

Home Page:https://crates.io/crates/pleco

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Replace the usage of `std::Arc` with faster internal version

sfleischman105 opened this issue · comments

While great, the standard library's Arc could be made faster for our use case. To name one modification, we do not use the Weak pointer of the standard library Arc.

Some inspiration for this could be from the Server Arc.

Added pending on #80

Fixed with #80