Solver Module
The solver is the heart of atopile's parameter subsystem: it symbolically simplifies and checks constraint systems built from Parameters, Literals (Sets), and Expressions.
If you are touching solver internals, read these first:
src/faebryk/core/solver/README.md (concepts, set correlation, append-only graphs, canonicalization)
src/faebryk/core/solver/symbolic/invariants.py (the actual invariants enforced during expression insertion)
Quick Start
import faebryk.core.node as fabll
import faebryk.library._F as F
from faebryk.core.solver.defaultsolver import DefaultSolver
from faebryk.libs.test.boundexpressions import BoundExpressions
E = BoundExpressions()
class _App(fabll.Node):
x = F.Parameters.NumericParameter.MakeChild(unit=E.U.dl)
app = _App.bind_typegraph(tg=E.tg).create_instance(g=E.g)
x = app.x.get().can_be_operand.get()
E.is_subset(x, E.lit_op_range(((9, E.U.dl), (11, E.U.dl))), assert_=True)
solver = DefaultSolver()
res = solver.simplify(g=E.g, tg=E.tg, terminal=True).data.mutation_map
lit = res.try_extract_superset(app.x.get().is_parameter_operatable.get(), domain_default=True)
assert lit is not None
Relevant Files
- Solver runtime + orchestration:
src/faebryk/core/solver/defaultsolver.py (DefaultSolver, iteration loop, terminal vs non-terminal)
src/faebryk/core/solver/solver.py (solver protocol + helper APIs)
- Mutation machinery (this is where “graphs are append-only” is handled):
src/faebryk/core/solver/mutator.py (Mutator, Transformations, MutationStage, MutationMap, tracebacks)
- Symbolic layer (canonical forms + invariants):
src/faebryk/core/solver/symbolic/invariants.py (insert_expression(...) invariant pipeline)
src/faebryk/core/solver/symbolic/canonical.py (canonicalization passes)
src/faebryk/core/solver/symbolic/* (structural + expression-wise algorithms)
- Domain objects (what users actually create in graphs):
src/faebryk/library/Parameters.py (ParameterOperatables, domains, compact repr)
src/faebryk/library/Expressions.py (expression node types, predicates, assertables)
src/faebryk/library/Literals.py (Sets; numeric/boolean/enum literals)
- Test helpers:
src/faebryk/libs/test/boundexpressions.py (concise graph + expression construction for tests)
Dependants (Call Sites)
- Library components (
src/faebryk/library/): define parameters/constraints (e.g. R.resistance)
- Compiler + frontends: translate
ato constraints into solver expressions
- Picker backend: uses solver simplification + bounds extraction to prune candidate parts
How to Work With / Develop / Test
Mental Model (the parts that matter for correctness)
1) Literals are Sets (and correlation is subtle)
- A literal like
100kOhm +/- 10% is a Set (a range), not a scalar.
- Singleton sets are self-correlated; all other sets are treated as uncorrelated, even with themselves.
- This is why
X - X is not necessarily {0} when X is a range, but is {0} when X is a singleton.
2) Symbols (Parameters) introduce correlation
- A
Parameter behaves like a mathematical symbol (variable), not a Python variable.
- Correlation between symbols is created via asserted constraints, most notably:
Is(A, B).assert_() / A.alias_is(B) creates a strong “these are the same” correlation.
IsSubset(A, X).assert_() / A.constrain_subset(X) constrains A to be within X.
IsSubset(X, A).assert_() / A.constrain_superset(X) constrains A to accept at least X.
3) Expressions are graph objects (not just Python trees)
Expressions are nodes in the Faebryk graph that point at operand nodes. This matters because…
4) The underlying graphs are append-only
The solver cannot “edit” an expression in-place. Instead it:
- builds a new graph containing transformed/copied nodes,
- records a mapping from old nodes → new nodes (
MutationMap),
- leaves the old graph untouched.
Development Workflow
- Reproduce in a minimal graph (prefer tests +
BoundExpressions).
- Run
DefaultSolver().simplify(...) and inspect the resulting MutationMap.
- If you’re changing rewrite logic, make sure you understand and preserve the invariant pipeline in
src/faebryk/core/solver/symbolic/invariants.py::insert_expression.
- Add/adjust algorithms in
src/faebryk/core/solver/symbolic/* (most logic lives there, not in mutator.py).
Testing
- Solver tests live in
test/core/solver/:
test/core/solver/test_solver.py
test/core/solver/test_literal_folding.py
test/core/solver/test_solver_util.py
Run a tight loop while iterating:
ato dev test --llm test/core/solver -k invariant -q
ato dev test --llm test/core/solver/test_solver.py::test_simplify -q
Best Practices
Prefer explicit simplify(...) arguments
DefaultSolver.simplify has a compatibility layer that accepts (tg, g) or (g, tg). In new code, prefer named args:
res = DefaultSolver().simplify(g=g, tg=tg, terminal=True)
mutation_map = res.data.mutation_map
Use the Mutator/insert_expression pipeline, not ad-hoc rewrites
When you “create” or “rewrite” an expression, you are really requesting that the solver insert something into the
transient graph while upholding invariants. The canonical place where this happens is:
src/faebryk/core/solver/symbolic/invariants.py::insert_expression
If you bypass this, you will almost certainly violate an invariant and get:
- duplicate/congruent expressions,
- multiple incompatible bounds on an operand,
- predicates used as operands,
- missed literal folding, or
- contradictions that don’t point back to the real root cause.
Core Invariants (source of truth: insert_expression)
The invariant pipeline is sequencing-sensitive. At a high level it enforces (paraphrased):
- No predicate operands:
Op(P!, ...) is rewritten to use boolean literals where possible
- Predicate literal rules:
P{S|True} -> P!; P!{S/P|False} -> Contradiction; P!{S|True} -> P!
- No literal inequalities: inequalities involving literals are rewritten into subset constraints
- No singleton supersets as operands:
f(A{S|{x}}, ...) -> f(x, ...)
- No congruence: congruent expressions are deduplicated (with optional rules for uncorrelated congruence)
- Minimal subsumption: stronger constraints subsume weaker ones; redundant ones become irrelevant
- Single “merged” superset/subset per operand (e.g. intersected supersets)
- No empty supersets/subsets: empty-set constraints are contradictions
- Fold pure literal expressions into literals (and re-express as subset/superset where appropriate)
- Terminate certain literal subset constraints to stop churn
- Canonical form: expressions are created/normalized into canonical operators
When adding a new algorithm, the easiest way to stay correct is to construct a new ExpressionBuilder
and let insert_expression do the hard work.
Internals & Runtime Behavior
Instantiation & Dependencies
DefaultSolver() holds state: when called with terminal=False, it can keep a reusable internal state for incremental solving.
- Terminal vs non-terminal:
terminal=True (default) is more powerful but not intended to be reused as incremental state.
terminal=False runs only non-terminal algorithms and stores reusable_state for subsequent calls.
- Graph scoping:
simplify(..., relevant=[...]) is the intended hook to avoid “solve the entire world”.
Data Structures
MutationStage: one algorithm application over an input graph → output graph, with a Transformations object.
MutationMap: a chain of stages; lets you:
- map old → new operables (
map_forward)
- map new → old sources (
map_backward)
- extract current bounds as literals (
try_extract_superset; subset extraction is typically via the mapped operable’s try_extract_subset())
- generate tracebacks for “why did this change?” (see
Traceback in mutator.py)
Debugging & Logging
Useful config flags (see src/faebryk/core/solver/utils.py):
SLOG=1: debug logging for solver/mutator
SPRINT_START=1: log start of each phase
SVERBOSE_TABLE=1: verbose mutation tables
SSHOW_SS_IS=1: include subset/is predicates in graph printouts
SMAX_ITERATIONS=N: raise early if stuck looping (helps catch bad rewrites)
In failures, look for Contradiction / ContradictionByLiteral output: it prints mutation tracebacks back to
origin expressions/parameters, which is usually the shortest path to the actual bug.
Performance
- Prefer restricting scope via
relevant=[...] when you can.
- Avoid creating huge numbers of near-duplicate expressions; congruence + subsumption help, but churn still costs.
- If you add an algorithm, make it idempotent (or explicitly mark/terminate what you produce) to avoid infinite iteration.
1---2name: solver3description: How the Faebryk parameter solver works (Sets/Literals, Parameters, Expressions), the core invariants enforced during mutation, and practical workflows for debugging and extending the solver. Use when implementing or modifying constraint solving, parameter bounds, or debugging expression simplification.4---56# Solver Module78The solver is the heart of atopile's **parameter subsystem**: it symbolically simplifies and checks constraint systems built from **Parameters**, **Literals (Sets)**, and **Expressions**.910If you are touching solver internals, read these first:1112- `src/faebryk/core/solver/README.md` (concepts, set correlation, append-only graphs, canonicalization)13- `src/faebryk/core/solver/symbolic/invariants.py` (the *actual* invariants enforced during expression insertion)1415## Quick Start1617```python18import faebryk.core.node as fabll19import faebryk.library._F as F20from faebryk.core.solver.defaultsolver import DefaultSolver21from faebryk.libs.test.boundexpressions import BoundExpressions2223E = BoundExpressions()2425class _App(fabll.Node):26 x = F.Parameters.NumericParameter.MakeChild(unit=E.U.dl)2728app = _App.bind_typegraph(tg=E.tg).create_instance(g=E.g)29x = app.x.get().can_be_operand.get()30E.is_subset(x, E.lit_op_range(((9, E.U.dl), (11, E.U.dl))), assert_=True)3132solver = DefaultSolver()33res = solver.simplify(g=E.g, tg=E.tg, terminal=True).data.mutation_map34lit = res.try_extract_superset(app.x.get().is_parameter_operatable.get(), domain_default=True)35assert lit is not None36```3738## Relevant Files3940- Solver runtime + orchestration:41 - `src/faebryk/core/solver/defaultsolver.py` (`DefaultSolver`, iteration loop, terminal vs non-terminal)42 - `src/faebryk/core/solver/solver.py` (solver protocol + helper APIs)43- Mutation machinery (this is where “graphs are append-only” is handled):44 - `src/faebryk/core/solver/mutator.py` (`Mutator`, `Transformations`, `MutationStage`, `MutationMap`, tracebacks)45- Symbolic layer (canonical forms + invariants):46 - `src/faebryk/core/solver/symbolic/invariants.py` (`insert_expression(...)` invariant pipeline)47 - `src/faebryk/core/solver/symbolic/canonical.py` (canonicalization passes)48 - `src/faebryk/core/solver/symbolic/*` (structural + expression-wise algorithms)49- Domain objects (what users actually create in graphs):50 - `src/faebryk/library/Parameters.py` (ParameterOperatables, domains, compact repr)51 - `src/faebryk/library/Expressions.py` (expression node types, predicates, assertables)52 - `src/faebryk/library/Literals.py` (Sets; numeric/boolean/enum literals)53- Test helpers:54 - `src/faebryk/libs/test/boundexpressions.py` (concise graph + expression construction for tests)5556## Dependants (Call Sites)5758- Library components (`src/faebryk/library/`): define parameters/constraints (e.g. `R.resistance`)59- Compiler + frontends: translate `ato` constraints into solver expressions60- Picker backend: uses solver simplification + bounds extraction to prune candidate parts6162## How to Work With / Develop / Test6364### Mental Model (the parts that matter for correctness)6566### 1) Literals are Sets (and correlation is subtle)67- A literal like `100kOhm +/- 10%` is a **Set** (a range), not a scalar.68- **Singleton sets are self-correlated**; all other sets are treated as **uncorrelated**, even with themselves.69 - This is why `X - X` is not necessarily `{0}` when `X` is a range, but *is* `{0}` when `X` is a singleton.7071### 2) Symbols (Parameters) introduce correlation72- A `Parameter` behaves like a mathematical symbol (variable), not a Python variable.73- Correlation between symbols is created via *asserted* constraints, most notably:74 - `Is(A, B).assert_()` / `A.alias_is(B)` creates a strong “these are the same” correlation.75 - `IsSubset(A, X).assert_()` / `A.constrain_subset(X)` constrains `A` to be within `X`.76 - `IsSubset(X, A).assert_()` / `A.constrain_superset(X)` constrains `A` to accept at least `X`.7778### 3) Expressions are graph objects (not just Python trees)79Expressions are nodes in the Faebryk graph that point at operand nodes. This matters because…8081### 4) The underlying graphs are append-only82The solver cannot “edit” an expression in-place. Instead it:83- builds a new graph containing transformed/copied nodes,84- records a mapping from old nodes → new nodes (`MutationMap`),85- leaves the old graph untouched.8687### Development Workflow88891) Reproduce in a minimal graph (prefer tests + `BoundExpressions`).902) Run `DefaultSolver().simplify(...)` and inspect the resulting `MutationMap`.913) If you’re changing rewrite logic, make sure you understand and preserve the invariant pipeline in92 `src/faebryk/core/solver/symbolic/invariants.py::insert_expression`.934) Add/adjust algorithms in `src/faebryk/core/solver/symbolic/*` (most logic lives there, not in `mutator.py`).9495### Testing96- Solver tests live in `test/core/solver/`:97 - `test/core/solver/test_solver.py`98 - `test/core/solver/test_literal_folding.py`99 - `test/core/solver/test_solver_util.py`100101Run a tight loop while iterating:102103- `ato dev test --llm test/core/solver -k invariant -q`104- `ato dev test --llm test/core/solver/test_solver.py::test_simplify -q`105106## Best Practices107108### Prefer explicit `simplify(...)` arguments109`DefaultSolver.simplify` has a compatibility layer that accepts `(tg, g)` or `(g, tg)`. In new code, prefer named args:110111```python112res = DefaultSolver().simplify(g=g, tg=tg, terminal=True)113mutation_map = res.data.mutation_map114```115116### Use the `Mutator`/`insert_expression` pipeline, not ad-hoc rewrites117When you “create” or “rewrite” an expression, you are really requesting that the solver insert something into the118transient graph while upholding invariants. The canonical place where this happens is:119120- `src/faebryk/core/solver/symbolic/invariants.py::insert_expression`121122If you bypass this, you will almost certainly violate an invariant and get:123- duplicate/congruent expressions,124- multiple incompatible bounds on an operand,125- predicates used as operands,126- missed literal folding, or127- contradictions that don’t point back to the real root cause.128129## Core Invariants (source of truth: `insert_expression`)130131The invariant pipeline is sequencing-sensitive. At a high level it enforces (paraphrased):132133- No predicate operands: `Op(P!, ...)` is rewritten to use boolean literals where possible134- Predicate literal rules: `P{S|True} -> P!`; `P!{S/P|False} -> Contradiction`; `P!{S|True} -> P!`135- No literal inequalities: inequalities involving literals are rewritten into subset constraints136- No singleton supersets as operands: `f(A{S|{x}}, ...) -> f(x, ...)`137- No congruence: congruent expressions are deduplicated (with optional rules for uncorrelated congruence)138- Minimal subsumption: stronger constraints subsume weaker ones; redundant ones become irrelevant139- Single “merged” superset/subset per operand (e.g. intersected supersets)140- No empty supersets/subsets: empty-set constraints are contradictions141- Fold pure literal expressions into literals (and re-express as subset/superset where appropriate)142- Terminate certain literal subset constraints to stop churn143- Canonical form: expressions are created/normalized into canonical operators144145When adding a new algorithm, the easiest way to stay correct is to construct a new `ExpressionBuilder`146and let `insert_expression` do the hard work.147148## Internals & Runtime Behavior149150### Instantiation & Dependencies151- **`DefaultSolver()` holds state**: when called with `terminal=False`, it can keep a reusable internal state for incremental solving.152- **Terminal vs non-terminal**:153 - `terminal=True` (default) is more powerful but not intended to be reused as incremental state.154 - `terminal=False` runs only non-terminal algorithms and stores `reusable_state` for subsequent calls.155- **Graph scoping**: `simplify(..., relevant=[...])` is the intended hook to avoid “solve the entire world”.156157### Data Structures158- `MutationStage`: one algorithm application over an input graph → output graph, with a `Transformations` object.159- `MutationMap`: a chain of stages; lets you:160 - map old → new operables (`map_forward`)161 - map new → old sources (`map_backward`)162 - extract current bounds as literals (`try_extract_superset`; subset extraction is typically via the mapped operable’s `try_extract_subset()`)163 - generate tracebacks for “why did this change?” (see `Traceback` in `mutator.py`)164165### Debugging & Logging166Useful config flags (see `src/faebryk/core/solver/utils.py`):167168- `SLOG=1`: debug logging for solver/mutator169- `SPRINT_START=1`: log start of each phase170- `SVERBOSE_TABLE=1`: verbose mutation tables171- `SSHOW_SS_IS=1`: include subset/is predicates in graph printouts172- `SMAX_ITERATIONS=N`: raise early if stuck looping (helps catch bad rewrites)173174In failures, look for `Contradiction` / `ContradictionByLiteral` output: it prints mutation tracebacks back to175origin expressions/parameters, which is usually the shortest path to the actual bug.176177### Performance178- Prefer restricting scope via `relevant=[...]` when you can.179- Avoid creating huge numbers of near-duplicate expressions; congruence + subsumption help, but churn still costs.180- If you add an algorithm, make it *idempotent* (or explicitly mark/terminate what you produce) to avoid infinite iteration.