connect-four-ai 0.1.2

A high-performance Rust implementation of a perfect Connect Four solver.
Documentation
//! A high-performance implementation of a perfect Connect Four solver.
//!
//! This library provides functionality to compute the score and optimal move for any
//! given Connect Four position.

mod board;
mod engine;

pub use engine::{
    Solver,
    TTFlag,
    TTEntry,
    TranspositionTable,
    MoveEntry,
    MoveSorter,
    OpeningBook,
    OpeningBookGenerator,
    Difficulty,
    AIPlayer
};
pub use board::{Position, PositionParsingError};