connect-four-ai 0.1.0

A high-performance Rust library for a perfect Connect Four AI solver.
Documentation
1
2
3
4
5
6
7
//! A compact, computationally efficient bitboard representation of Connect 4 positions.

mod position;
mod position_parsing_error;

pub use position::Position;
pub use position_parsing_error::PositionParsingError;