norts

Crates.ionorts
lib.rsnorts
version1.1.0
sourcesrc
created_at2023-04-07 15:51:18.044747
updated_at2023-04-18 21:50:41.769358
descriptionA Noughts and Crosses/Tic Tac Toe library for move generation and an inbuilt hyper-fast solver.
homepagehttps://github.com/MrPiggyPegasus/norts
repository
max_upload_size
id832988
size18,324
MrPiggyPegasus (MrPiggyPegasus)

documentation

README

What's a norts?

norts is a (clears throat) BLAZINGLY FAST Noughts and Crosses / Tic Tac Toe solver written in Rust.

Engine Design

norts is designed with speed as a priority, and is able to solve any position almost instantly. The position is stored using 2 16-bit bitboards such that wins and draws can be detected using cpu-efficient bitwise operations and the Minimax algorithm which is used to decide moves, is enhanced with Alpha-Beta pruning.

Commit count: 0

cargo fmt