sisyphus32 1.0.0

Feature-based UCI Chess Engine
Documentation
sisyphus32-1.0.0 has been yanked.

Sisyphus32

Welcome to the GitHub page for Sisyphus32, a chess engine!

Released executables can be found here.

Lichess Bot

Setup

  1. Install Rust.
  2. (OPTIONAL) download a syzygy tablebase and put it in tables/syzygy/ for optimal performance.

How to use

  1. Run cargo build --release to build the executable.
  2. Run cargo run --release to build and run the executable.
  3. Run cargo run --release --no-default-features --features <version> to build and run a specific version of the engine. Version names can be found in src/versions.rs.
  4. Run cargo test --release to run all unit and integration tests.
  5. Run cargo run --release --bin build_all to build executables for all versions to target/release_all/.
  6. Run cargo run --release --bin test_all to run all unit and integration tests for all versions.
  7. (WINDOWS ONLY) Run cargo run --release --bin cutechess_sprt <version1> <version2> to run SPRT against the specified versions, which should correspond to binary names in target/release_all/. This requires Cute Chess to be installed.
  8. (WINDOWS ONLY) Run cargo run --release --bin samply_profile <profile name> to run a profiler on the specified profile name, which should correspond to a file in src/bin/. This requires Samply to be installed.

Supported UCI Commands (documentation)

Sisyphus32 is UCI-compliant, implementing the following UCI commands:

  • uci
  • ucinewgame
  • isready
  • position (fen <fenstring> | startpos) [moves <move1> ... <movei>]
  • go [perft <plies> | [depth <plies>] [wtime <ms>] [btime <ms>] [winc <ms>] [binc <ms>] [movetime <ms>]]
  • stop | s
  • quit | q
  • exit | e
  • eval
  • display | d
  • bench | benchmedium
  • benchlong
  • benchshort
  • setoption name Clear Hash
  • setoption name Threads value <n>
  • setoption name SyzygyPath value <path>
  • setoption name Hash value <size_mb>