selen 0.15.5

Constraint Satisfaction Problem (CSP) solver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Core functionality
//!
//! This module contains fundamental types used throughout the CSP solver:
//! - Error types and result handling
//! - Solution representation
//! - Validation utilities

pub mod error;
pub mod solution;
pub mod validation;

// Re-export everything from submodules
pub use error::*;
pub use solution::*;
pub use validation::*;