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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
//! Closure-based builder traits for the LogUp lookup-argument API.
//!
//! The lookup-air refactor introduces the trait stack that sits on top of
//! `LookupAir`:
//!
//! - [`LookupBuilder`] — the top-level handle mirroring the subset of `LiftedAirBuilder` a lookup
//! author actually needs (trace access plus per-column scoping). It hides `assert_*` / `when_*` /
//! permutation plumbing and does not expose the verifier challenges.
//! - [`LookupColumn`] — per-column handle returned by [`LookupBuilder::next_column`]. It owns the
//! boundary between groups; its only job is to open a group (either the simple path or the
//! cached-encoding dual path).
//! - [`LookupGroup`] — the simple, challenge-free interaction API used by bus authors. Every method
//! here takes a `LookupMessage`; the enclosing adapter is responsible for encoding it under α + Σ
//! βⁱ · payload.
//! - [`LookupBatch`] — a short-lived handle returned inside [`LookupGroup::batch`]. Represents a
//! set of simultaneous interactions that share the outer group's flag.
//! - [`LookupGroup`] also exposes optional encoding primitives (`bus_prefix`, `beta_powers`,
//! `insert_encoded`) for the cached-encoding path. Default implementations panic; only the
//! constraint-path adapter overrides them with real bodies.
//!
//! No adapter impls live in this file; the bounds here are chosen so that both the
//! constraint-path adapter (which forwards to an inner `LiftedAirBuilder`, carrying
//! symbolic `AB::Expr` / `AB::ExprEF` associated types) and the prover-path adapter
//! (instantiated with the concrete `F` / `EF` field types) can satisfy them.
use ;
use WindowAccess;
use LookupMessage;
// DEGREE ANNOTATION
// ================================================================================================
/// Expected post-flag `(V, U)` contribution for one interaction or scope.
///
/// Every builder method takes a `Deg` as its last argument so authors can
/// declare the expected degrees inline. Production adapters ignore the value
/// (it is `Copy` and dead-code-eliminated after inlining). A debug adapter
/// can compare the declared degrees against the symbolic expression it just
/// accumulated and panic with the interaction's `name` if they disagree.
///
/// - `v`: degree of the numerator (`V`) contribution after multiplying by the surrounding flag.
/// - `u`: degree of the denominator (`U`) contribution after multiplying by the surrounding flag.
///
/// Field order mirrors the `(V, U)` tuple convention used throughout the
/// adapter code: numerator first, denominator second.
///
/// ## Semantics by call site
///
/// - **Single interactions** ([`LookupGroup::add`], `remove`, `insert`, `insert_encoded`, and the
/// corresponding [`LookupBatch`] methods): `(v, u) = (deg(m · D) + deg(f), deg(D) + deg(f))`
/// where `m` is the interaction's signed multiplicity, `D` is its denominator polynomial, and `f`
/// is the gating flag (the enclosing batch flag for `LookupBatch` methods). The standalone
/// post-flag contribution this interaction would make if folded directly into the enclosing
/// group's `(V_g, U_g)`.
///
/// - **Batch outer** ([`LookupGroup::batch`]): the post-flag contribution the *whole* batch makes
/// to the enclosing group's `(V_g, U_g)` — `(deg(N) + deg(f), deg(D) + deg(f))` where `(N, D)` is
/// the running pair the inner-loop body accumulates and `f` is the batch flag. The pre-flag `(N,
/// D)` is mechanically derivable from the inner-loop body — `((k − 1) · d_v, k · d_v)` for `k`
/// interactions of inner denominator degree `d_v` — so it is documented inline at each batch site
/// rather than carried in the struct.
///
/// - **Group / column scope** ([`LookupColumn::group`], `group_with_cached_encoding`,
/// [`LookupBuilder::next_column`]): the total post-flag `(V, U)` contribution of the group /
/// column to the surrounding accumulator. Useful as a budget audit number when the author wants
/// to assert what the scope as a whole contributes.
// LOOKUP BUILDER
// ================================================================================================
/// The trace-reading handle handed to a [`super::LookupAir`] implementation.
///
/// `LookupBuilder` deliberately mirrors the subset of `LiftedAirBuilder`'s
/// associated types needed to read `main` and `periodic_values`. It is
/// **not** a sub-trait of `AirBuilder`: the constraint
/// emission surface (`assert_zero` / `when_first_row` / …) and the
/// permutation column plumbing stay hidden, which keeps the simple lookup
/// path free of challenge access.
///
/// Implementors must not shortcut the per-column scoping: a [`super::LookupAir`]
/// author that opens `n` columns must issue exactly `n` calls to
/// [`LookupBuilder::next_column`], matching [`super::LookupAir::num_columns`].
///
/// ## Associated-type layout
///
/// The base-field stack (`F`, `Expr`, `Var`) and extension-field stack
/// (`EF`, `ExprEF`, `VarEF`) mirror the upstream `AirBuilder` /
/// `ExtensionBuilder` split one-for-one; `Algebra<Var>` on `Expr` lets the
/// lookup author multiply main-trace variables with arbitrary expressions
/// without crossing trait boundaries. `PeriodicVar` / `MainWindow` come
/// from `PeriodicAirBuilder` / `AirBuilder` respectively and are passed
/// through the adapter unchanged.
///
/// The per-column handle is a generic associated type
/// ([`Self::Column`](Self::Column)) so that each `column(...)` call can
/// borrow from `self` without outliving the closure. Its bound pins the
/// expression and extension-variable types to keep them in sync with the
/// outer builder.
// LOOKUP COLUMN
// ================================================================================================
/// Per-column handle returned by [`LookupBuilder::next_column`].
///
/// The only decision a column makes is how to open a group: either the
/// simple path via [`group`](Self::group) or the dual cached-encoding path
/// via [`group_with_cached_encoding`](Self::group_with_cached_encoding).
///
/// Multiple groups may be opened per column; the adapter is responsible
/// for composing them according to the column accumulator algebra
/// (`V ← V·U_g + V_g·U`, `U ← U·U_g`). Groups opened inside the same
/// column are assumed *product-closed*, not mutually exclusive.
// LOOKUP GROUP
// ================================================================================================
/// Simple, challenge-free interaction API opened inside a
/// [`LookupColumn`].
///
/// Authors call `add` / `remove` / `insert` to describe one flag-gated
/// interaction at a time, or `batch` to describe several simultaneous
/// interactions that share a single outer flag.
///
/// All methods take the message through an `impl FnOnce() -> M` closure
/// so the prover-path adapter can skip the construction (and any
/// expensive derivation) when `flag == 0`.
// LOOKUP BATCH
// ================================================================================================
/// Transient handle exposed inside [`LookupGroup::batch`].
///
/// A batch groups several simultaneously-active interactions under a
/// single outer flag, emitted by the enclosing group. The flag-zero skip
/// is performed once by the group when the batch opens, so within the
/// batch the message can be built unconditionally and is taken by value
/// (not through a closure).
///
/// Kept as a separate trait rather than a concrete helper struct because
/// the constraint-path and prover-path adapters need different backing
/// storage (`RationalSet` vs `FractionCollector`) and expressing that
/// split through a GAT on [`LookupGroup::Batch`] is cleaner than bolting
/// a second generic parameter onto a shared struct.