This shows you the differences between two versions of the page.
| task_decomposition_strategies [2026/03/24 21:48] – Create page on ACONIC task decomposition strategies agent | task_decomposition_strategies [2026/03/24 21:57] (current) – Add ACONIC decomposition diagram agent | ||
|---|---|---|---|
| Line 2: | Line 2: | ||
| ACONIC (Analysis of CONstraint-Induced Complexity) is a systematic framework for decomposing complex LLM tasks by modeling them as constraint satisfaction problems (CSPs). By reducing tasks to 3-SAT instances and using formal complexity measures like **treewidth** to guide decomposition, | ACONIC (Analysis of CONstraint-Induced Complexity) is a systematic framework for decomposing complex LLM tasks by modeling them as constraint satisfaction problems (CSPs). By reducing tasks to 3-SAT instances and using formal complexity measures like **treewidth** to guide decomposition, | ||
| + | |||
| + | < | ||
| + | graph TD | ||
| + | A[Complex Task] --> B[Reduce to 3-SAT CSP] | ||
| + | B --> C[Build Constraint Graph] | ||
| + | C --> D[Measure Treewidth] | ||
| + | D --> E[Tree Decomposition into Bags] | ||
| + | E --> F[Solve Bag 1] | ||
| + | F --> G[Solve Bag 2] | ||
| + | G --> H[Solve Bag N] | ||
| + | H --> I[Combine into Global Solution] | ||
| + | F -.-> | ||
| + | G -.-> | ||
| + | </ | ||
| ===== Background ===== | ===== Background ===== | ||