norts 1.1.0

A Noughts and Crosses/Tic Tac Toe library for move generation and an inbuilt hyper-fast solver.
Documentation
  • Coverage
  • 75%
    3 out of 4 items documented0 out of 0 items with examples
  • Size
  • Source code size: 17.99 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.58 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • MrPiggyPegasus

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.