OPen Points Artificial Intelligence
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.
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%.
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
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