Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
fb02b08
Add tile-backed proof engine and hash sources
achamayou Jul 13, 2026
77c129a
Fix proof aliases and index bounds
achamayou Jul 25, 2026
96a6a31
Parallelize CI builds and release tests
achamayou Aug 3, 2026
9d669bf
Address proof generation review feedback
achamayou Aug 3, 2026
791ddb0
Use standard CMake parallelism variables
achamayou Aug 3, 2026
ebfa8d8
Adopt standard CMake test configuration
achamayou Aug 3, 2026
0d16668
Address large-tree and proof review feedback
achamayou Aug 4, 2026
18355a2
Tighten proof roll-up and documentation
achamayou Aug 4, 2026
6a9e58a
Clarify subtree root result and effects
Copilot Aug 4, 2026
741fb70
Consolidate proof subtree reduction
achamayou Aug 4, 2026
42e3ca7
Add proof source visualization atlas
achamayou Aug 5, 2026
8b87555
Visualize consistency between arbitrary leaves
achamayou Aug 5, 2026
74c94e7
Simplify proof atlas scenario model
achamayou Aug 5, 2026
f3560a1
Publish proof visualization on GitHub Pages
achamayou Aug 6, 2026
6b8e7d9
Generate proof atlas in documentation CI
achamayou Aug 7, 2026
b395e7d
Use full viewport for proof atlas
achamayou Aug 7, 2026
47030a4
Refine proof atlas data and styling
achamayou Aug 7, 2026
2a1640b
Extract proof atlas scenarios
achamayou Aug 7, 2026
447d11b
Format proof atlas generator
achamayou Aug 7, 2026
80c2983
Merge branch 'main' into achamayou/proof-viz
achamayou Aug 7, 2026
d662622
Simplify proof atlas presentation
achamayou Aug 7, 2026
6d30474
Apply suggestions from code review
achamayou Aug 7, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
pull_request:
workflow_dispatch:

concurrency:
Expand Down Expand Up @@ -35,8 +36,10 @@ jobs:
- name: Build documentation
run: |
python3 -m sphinx -b html doc doc/build --keep-going
cd doc/build
touch .nojekyll
touch doc/build/.nojekyll

- name: Build proof visualization
run: tools/proof-viz/make_viz.sh doc/build/proof-viz

- name: Upload pages artifact
uses: actions/upload-pages-artifact@fc324d3547104276b827a68afc52ff2a11cc49c9 # v5.0.0
Expand Down
6 changes: 6 additions & 0 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ example:
:end-before: SNIPPET_END: OpenSSL-SHA256
:dedent: 2

Proof visualization
-------------------

Explore the `interactive tile and frontier proof atlas <proof-viz/>`_ to see
which durable tiles and resident Merkle nodes supply each proof hash.

Trees
-----

Expand Down
1 change: 1 addition & 0 deletions tools/proof-viz/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/data.json
Loading
Loading