Extract and publish reusable operator infrastructure - #794
Merged
frankmcsherry merged 1 commit intoJul 13, 2026
Conversation
…al computation
Extracts from int_proxy the pieces whose correctness is a property of their
own inputs and outputs, so they can be used and tested in isolation:
* TimeHistory — replay times ascending with meet-of-remainder tracking and a
meet-advanced deduplicated buffer (a cheaper ValueHistory when only time
structure matters). ValueHistory itself was already shared (operators::)
and is re-exported here.
* discover_times — the times at which a key's reduction must be
re-evaluated, plus those to carry past 'upper'; O(times) peak memory.
Its one cross-call obligation (seeds from the novel batch's own support)
is stated at the signature.
* bilinear_wave — the join of two histories in time order, work bounded by
netted accumulation sizes rather than history lengths.
* tile_descriptions — cut an output interval into batch descriptions along
held capabilities.
int_proxy's tactics become expressions over these helpers, behaviorally
identical (its tests and oracles carry the equivalence). Written to host a
second tactic binding whose times are ranks into a caller-supplied store.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
frankmcsherry
force-pushed
the
land/recipes
branch
from
July 13, 2026 01:20
755ed96 to
63fb328
Compare
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The int-proxy introduced some regular patterns that have been useful for at least one other tactic, however the tools need to become public for this to work. These are still a bit specialized and function-fit, but as folks start to use them we can work on their shapes a bit more.