SYNTHESIS NOTE
Training, RL, and Test-Time Scaling Reasoning, Retrieval, and Evaluation Model Architecture and Internals

Should LLMs handle abstraction only in optimization?

What if LLMs worked exclusively on translating problems to formal constraints, while deterministic solvers handled the numeric work? Explores whether this division of labor could overcome LLM failures in iterative computation.

Synthesis note · 2026-05-18 · sourced from Reasoning Architectures

If LLMs cannot reliably execute iterative numerical procedures, the design question becomes what they can reliably do in optimization workflows. The constraint-optimization paper's answer: keep them at the abstraction layer. Have the LLM read the structured input (grid topology, financial statement, threat model), understand the physics or domain, deduce the correct constraints, and write the mathematical formulation into solver code. Then hand off to the solver for the actual numeric matrix arithmetic.

The division of labor exploits the comparative advantage on both sides. LLMs are strong at natural-language-to-formal-structure translation, at picking the right variables and constraint forms from context, and at producing code that calls established libraries. They are weak at the iterative arithmetic that follows. Deterministic solvers (interior-point methods, primal-dual, branch-and-bound) are strong at the iterative arithmetic and weak at parsing the messy real-world problem statement. The architecture is the bridge.

This pattern recurs across domains. The same logic argues for neuro-symbolic approaches in general: LLM as translator from human problem to formal representation, symbolic engine as solver of the formal representation. The paper situates the constraint-optimization case within this family but argues the LLM should be restricted more aggressively than typical neuro-symbolic systems — not just translating but explicitly forbidden from attempting the numeric work.

For builders, the operational rule is: any task where the bottleneck is iterative computation should route through abstraction-only LLM use plus a solver, not through more capable LLMs or longer reasoning. Wrapping the LLM in a thinking budget is the wrong knob; wrapping it in a solver call is the right one.

Inquiring lines that use this note as a source 13

This note is a source for these synthesized inquiries. Follow a line forward into its question, or open it to trace back to all of its sources.

Related concepts in this collection 3

This note in its neighbourhood — explore the map, then jump to a related concept in the list below.

Concept map
15 direct connections · 127 in 2-hop network ·medium cluster Open in graph ↗

Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph

your link semantically near linked from elsewhere

Related papers in this collection 8

Papers most semantically related to this note, ranked by cosine similarity in the embedding space.

Original note title

the right paradigm for LLM optimization is abstraction-only — read input deduce constraints emit solver code