1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! Constraint system module
//!
//! This module contains the constraint system components including:
//! - Constraint API for posting constraints (organized by category)
//! - Constraint macros for mathematical syntax
//! - Propagators for constraint enforcement
//! - Constraint builders for fluent API
// New unified constraint functions (Phase 1 of refactoring)
// Constraint API - organized user-facing methods
// Modular propagator system (final modularization phase)
// GAC modules
// Moved files
// Re-export GAC modules (gac_hybrid contains all common types)
pub use *;
pub use *;
// Re-export moved files
pub use *;
pub use *;
// Props module
pub use *;