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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
use HashMap;
// Constraint Propagator Framework
//
// This module provides a modular framework for organizing constraint propagators.
// It defines the core traits and management structures for the propagation system.
//
// ## Framework Overview
//
// The propagator framework provides:
// - `Prune`: Basic domain pruning interface
// - `Propagate`: Enhanced propagation with backtracking support
// - `Propagators`: Container for managing multiple propagators
// - Modular patterns for constraint system organization
//
// ## Implementation Note
//
// This is currently a framework-only module to demonstrate the modular architecture
// design. In the final modularization phase, this would replace the monolithic
// propagator system in props/mod.rs (1,376 lines).
/// Unique identifier for propagators in the modular system.
pub type PropId = usize;
/// Core trait for constraint propagation in the modular framework.
/// Enhanced propagator trait with advanced propagation capabilities.
/// Container for managing multiple propagators efficiently.
///
/// This structure demonstrates how the modular system would organize
/// and manage constraint propagators in the final implementation.