OPen Points Artificial Intelligence
Find a file
2025-10-20 16:16:24 +02:00
ai Format code with new rustfmt. 2025-06-25 22:18:30 +02:00
ais Update dependencies. 2025-08-24 16:06:29 +02:00
bench More compact field representation. 2025-06-29 21:28:34 +02:00
cli Update dependencies. 2025-08-24 16:06:29 +02:00
client Format code with new rustfmt. 2025-06-25 22:18:30 +02:00
common Optimize coordinates calculation. 2025-06-29 14:43:47 +02:00
field Fix finding last chain. 2025-10-20 16:16:24 +02:00
iced Update dependencies. 2025-08-24 16:06:29 +02:00
initial More compact field representation. 2025-06-29 21:28:34 +02:00
ladders Optimize coordinates calculation. 2025-06-29 14:43:47 +02:00
minimax Fix warnings. 2025-10-05 19:57:39 +02: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 Update dependencies. 2025-10-05 18:29:43 +02:00
sgf Implement playout cap randomization. 2025-10-07 23:06:12 +02:00
svg Fix tests. 2025-10-09 09:41:24 +02:00
term-render Update dependencies. 2025-08-24 16:06:29 +02:00
test-images Switch to rust 2024. 2025-02-28 11:41:55 +01:00
uct More compact field representation. 2025-06-29 21:28:34 +02:00
verify Check for child status before clearing the field. 2025-08-31 19:07:18 +02:00
verify-child Fix tests. 2025-10-09 09:41:24 +02:00
versus Update dependencies. 2025-08-24 16:06:29 +02:00
zero Add seed argument. 2025-10-16 08:34:28 +02:00
zero-burn Play first games with random model. 2025-10-15 20:13:56 +02:00
zero-train Add seed argument. 2025-10-16 08:34:28 +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 Play first games with random model. 2025-10-15 20:13:56 +02:00
Cargo.toml Add virifier. 2025-08-30 23:30:34 +02:00
flake.lock Update dependencies. 2025-10-05 18:29:43 +02:00
flake.nix Update dependencies. 2025-10-05 18:29:43 +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