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
16
//! Model core module
//!
//! This module contains the decomposed Model functionality organized by purpose.

// Core model functionality (the main Model struct moved from model_core.rs)
mod core;

// Organized model functionality  
pub mod factory;        // Public variable factory API
mod factory_internal;   // Internal variable creation methods
pub mod constraints;
pub mod solving;
pub mod precision;

// Re-export everything for backward compatibility
pub use core::*;