OPen Points Artificial Intelligence
  • Rust 98.6%
  • Shell 0.5%
  • PLpgSQL 0.4%
  • Nix 0.4%
  • HTML 0.1%
Find a file
2026-04-07 23:18:33 +02:00
ai Update rand. 2026-03-09 18:52:05 +01:00
ais Shuffle children. 2026-02-09 18:32:02 +01:00
bench Update rand. 2026-03-09 18:52:05 +01:00
cli Update rand. 2026-03-09 18:52:05 +01:00
client Format code with new rustfmt. 2025-06-25 22:18:30 +02:00
common Add type alias for hash. 2026-03-09 22:50:00 +01:00
field Pass komi to is_game_over. 2026-04-05 19:57:01 +02:00
iced Fix wasm stride. 2026-03-23 18:46:26 +01:00
initial More compact field representation. 2025-06-29 21:28:34 +02:00
ladders Fix infinite recursion. 2026-02-25 09:14:27 +01:00
minimax Drop u32 hash table. 2026-03-07 19:09:29 +01:00
patterns Optimize coordinates calculation. 2025-06-29 14:43:47 +02:00
protocol Format code with new rustfmt. 2025-06-25 22:18:30 +02:00
resources Update logo. 2023-10-15 20:35:01 +03:00
rotate Switch to rust 2024. 2025-02-28 11:41:55 +01:00
server Pass komi to is_game_over. 2026-04-05 19:57:01 +02:00
sgf Move visits from sgf to a separate crate. 2026-02-28 11:18:15 +01:00
svg Fix tests. 2025-10-09 09:41:24 +02:00
term-render Update resvg. 2026-03-09 21:45:33 +01:00
test-images Switch to rust 2024. 2025-02-28 11:41:55 +01:00
uct Add type alias for hash. 2026-03-09 22:50:00 +01:00
verify Update rand. 2026-03-09 18:52:05 +01:00
verify-child Update rand. 2026-03-09 18:52:05 +01:00
versus Pass komi to is_game_over. 2026-04-05 19:57:01 +02:00
zero Fix komi in pit. 2026-04-07 23:18:33 +02:00
zero-burn Remove redundant operation. 2026-03-31 22:51:46 +02:00
zero-sgf Move visits from sgf to a separate crate. 2026-02-28 11:18:15 +01:00
zero-train Add count command. 2026-04-07 23:01:36 +02:00
.editorconfig Add .editorconfig 2019-05-17 23:28:42 +03:00
.envrc Add flake. 2022-05-13 23:23:03 +03:00
.gitignore Initial wasm support. 2023-05-22 10:36:00 +03:00
Cargo.lock Resume training. 2026-03-11 08:34:16 +01:00
Cargo.toml Update strum. 2026-03-09 21:43:54 +01:00
flake.lock Update flake. 2026-02-26 15:28:50 +01:00
flake.nix Update rfd. 2026-02-16 21:45:24 +01:00
LICENSE.txt Change license to AGPLv3. 2015-10-06 09:13:30 +03:00
README.md Remove Best Node Search algorithm from ideas. 2024-06-10 18:58:12 +02:00
rustfmt.toml Remove unstable settings from rustfmt. 2022-09-25 11:48:32 +03:00

Oppai-rs

Logo

Oppai-rs (acronym for "OPen Points Artificial Intelligence") is an artificial intelligence for the game of points.

You can play with it using iced module.

Features

  • Two algorithms for searching the optimal move: UCT, Minimax.
  • Two implementations of Minimax search: PVS (a.k.a. NegaScout), MTD(f).
  • UCT tree reuse between moves.
  • Trajectories for moves pruning in the Minimax search tree.
  • Lock-free multi-threading for both Minimax and UCT.
  • Transposition table using Zobrist hashing for Minimax.
  • DFA-based patterns searching.
  • DSU to optimize capturing (behind a feature flag since it's good only for UCT).
  • Time-based and complexity-based calculations.
  • Generic ladders solver.

Running

Once you have rust installed on your system, compile with:

cargo build --release

Run with:

cargo run --release

or with:

./target/release/oppai-rs

If you are running the produced binary on the same CPU it was built on you might want to specify target-cpu flag:

RUSTFLAGS="-C target-cpu=native" \
  cargo build --release

Depending on your hardware it might increase the performance by up to 10%.

Testing

You can run test with:

cargo test

If you want to see log output during tests running you can use RUST_LOG environment variable:

RUST_LOG=debug cargo test

Also if you have nightly rust you can run benchmarks with:

cargo bench --features bench

Ideas

  • Fill debuts database.
  • Fill heuristics database.
  • Use patterns for UCT random games (see link).
  • Use patterns for Minimax best move prediction.
  • Complex estimating function for Minimax (see link)
  • Smart time control for UCT (see link).
  • Smart time control for Minimax.
  • Think on enemy's move.
  • Forbid typical losing ladders.
  • Split trajectories by groups for Minimax and solve them independently.

License

This project is licensed under AGPL version 3 or (at your option) any later version. See LICENSE.txt for details.

Copyright (C) 2015-2024 Kurnevsky Evgeny, Vasya Novikov