selen 0.15.5

Constraint Satisfaction Problem (CSP) solver
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Logical constraint propagators
//!
//! This module organizes logical constraint propagators. The actual implementations
//! are currently in the main props module. This provides a logical organization for
//! future refactoring when the props module is split.

// Note: Logical propagators are currently implemented in:
// - crate::constraints::props::bool_logic (for boolean operations)
// - crate::constraints::props::conditional (for conditional constraints)
//
// These will be moved here in a future phase of the modularization.