Rust "port" of the sunfish simple chess engine
- The original sunfish
- yuri91 for making a first rust port that inspired this
Challenge it on lichess and tell me what you think!
- Improve time managment, maybe rewriting search to be iterative instead of recursive
- Support endgame values (ideally tapered eval), might be tricky to do with incremental updates
- Add more tests, need to test many more positions and add more unit tests
- Benchmarking, maybe build a micro benchmarking framework? See bheisler/criterion.rs#306
- Make Square enums more compact, currently they use twice as much memory as the python chars :/