OPen Points Artificial Intelligence
  • Rust 98.7%
  • Shell 0.4%
  • PLpgSQL 0.4%
  • Nix 0.4%
  • HTML 0.1%
Find a file
Evgeny Kurnevsky 39bd9fcc12
Fix grounded.
2026-07-05 23:39:42 +02:00
ai Update rand. 2026-03-09 18:52:05 +01:00
ais Weight moves with equal visits by prior. 2026-07-05 22:18:36 +02:00
bench Update rand. 2026-03-09 18:52:05 +01:00
cli Dynamic model config. 2026-07-05 11:36:29 +02: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 Fix warning. 2026-06-01 00:35:01 +02:00
iced Fix grounded. 2026-07-05 23:39:42 +02:00
initial More compact field representation. 2025-06-29 21:28:34 +02:00
ladders More checks if should stop. 2026-06-14 22:44:19 +02: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 Log when username is changed. 2026-06-07 19:01:11 +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 Simplify virtual loss. 2026-06-22 18:31:22 +02: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 Move width and height to cli args. 2026-06-19 20:24:11 +02:00
webworker Fix zero. 2026-06-25 23:57:51 +02:00
zero Weight moves with equal visits by prior. 2026-07-05 22:18:36 +02:00
zero-burn Add real model to iced. 2026-07-05 23:08:51 +02:00
zero-sgf Implement Policy Surprise Weighting. 2026-06-20 09:26:10 +02:00
zero-train Config per command. 2026-07-05 12:24:48 +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 Add real model to iced. 2026-07-05 23:08:51 +02:00
Cargo.toml Fix compilation errors on non-wasm targets. 2026-06-12 21:20:16 +02:00
flake.lock Update burn. 2026-06-11 13:16:08 +02:00
flake.nix Add rocm feature. 2026-06-11 22:15:48 +02: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