selen 0.15.5

Constraint Satisfaction Problem (CSP) solver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Utility functions and configuration
//!
//! This module contains utility functions, configuration types, and helper code
//! used throughout the CSP solver.

pub mod utils;
pub mod utils64;
pub mod config;

// Re-export everything for convenience
pub use utils::*;
pub use utils64::*;
pub use config::*;