task_id
stringlengths
21
23
challenge_id
stringlengths
16
16
proof_assistant
stringclasses
1 value
session
stringclasses
1 value
repo
stringclasses
57 values
revision
stringclasses
57 values
file_path
stringlengths
13
92
theory
stringlengths
1
48
variant
int64
0
132
challenge_type
stringclasses
1 value
difficulty
null
count
null
by_centrality
bool
1 class
ablation_prob
float64
0.5
0.5
min_depth
int64
1
1
max_depth
int64
1
1
leaves_only
bool
1 class
min_size
int64
0
0
max_size
stringclasses
1 value
min_centrality
int64
0
0
max_centrality
stringclasses
1 value
seed
int64
42
42
n_proofs
int64
1
173
n_ablated
int64
1
60
holes_filled
listlengths
1
60
deleted_lemmas
listlengths
1
1
corollaries
listlengths
1
1
closure_size
int64
1
172
challenge_file_content
stringlengths
133
350k
solution_file_content
stringlengths
394
351k
solution_diff
stringlengths
243
134k
manifest
dict
ablate_452c1edaf1f0_5
498c7be0104dbf5f
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/Exp/Compose/BaseLengths.lean
BaseLengths
5
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
13
1
[ { "theorem_name": "exp_boundary_epilogue_byte_off", "depth": 1, "n_commands": 0, "n_lines": 2, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n exact exp_prologue_byte_len", "n_chars": 33, "n_subproofs": 0, "n_tactics": 2, "cyclomatic":...
[ { "name": "exp_prologue_byte_len", "text": "theorem exp_prologue_byte_len :\n 4 * (EvmAsm.Evm64.exp_prologue).length = 24 := by\n exact EvmAsm.Evm64.exp_prologue_byte_length\n\n", "fan_in": 1, "n_lines": 5, "n_chars": 133, "n_subproofs": 0, "n_tactics": 2, "cyclomatic": 1, "n...
[ { "name": "exp_boundary_epilogue_byte_off", "fan_in": 1, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 6, "n_chars": 198, "n_subproofs": 0, "n_tactics": 2, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 0, "n_structural": 1, "automation_only": false, ...
1
/- EvmAsm.Evm64.Exp.Compose.BaseLengths Shared EXP composition length and byte-offset lemmas. -/ import EvmAsm.Evm64.Exp.CondMulCall namespace EvmAsm.Evm64.Exp.Compose open EvmAsm.Rv64 abbrev expIterCountNew (iterCount : Word) : Word := iterCount + signExtend12 ((-1 : BitVec 12)) /-- Byte offset of the EXP ...
/- EvmAsm.Evm64.Exp.Compose.BaseLengths Shared EXP composition length and byte-offset lemmas. -/ import EvmAsm.Evm64.Exp.CondMulCall namespace EvmAsm.Evm64.Exp.Compose open EvmAsm.Rv64 abbrev expIterCountNew (iterCount : Word) : Word := iterCount + signExtend12 ((-1 : BitVec 12)) theorem exp_prologue_byte_l...
@@ -13,9 +13,14 @@ abbrev expIterCountNew (iterCount : Word) : Word := iterCount + signExtend12 ((-1 : BitVec 12)) +theorem exp_prologue_byte_len : + 4 * (EvmAsm.Evm64.exp_prologue).length = 24 := by + exact EvmAsm.Evm64.exp_prologue_byte_length + /-- Byte offset of the EXP epilogue within the boundary-code ...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_452c1edaf1f0_6
7d25d649b092573e
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/Exp/Compose/BaseLengths.lean
BaseLengths
6
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
13
1
[ { "theorem_name": "exp_boundary_end_byte_off", "depth": 1, "n_commands": 0, "n_lines": 2, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n simp only [exp_prologue_len, exp_epilogue_len]", "n_chars": 52, "n_subproofs": 0, "n_tactics": 2, ...
[ { "name": "exp_prologue_len", "text": "/-- Length of the EXP prologue block, restated in the composition namespace so\n future `skipBlock`-style subsumption proofs can use a compact simp set. -/\ntheorem exp_prologue_len : (EvmAsm.Evm64.exp_prologue).length = 6 := by\n exact EvmAsm.Evm64.exp_prologue_le...
[ { "name": "exp_boundary_end_byte_off", "fan_in": 1, "n_deps_direct": 2, "n_deps_transitive": 2, "n_lines": 7, "n_chars": 265, "n_subproofs": 0, "n_tactics": 2, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 0, "n_structural": 0, "automation_only": true, "ma...
2
/- EvmAsm.Evm64.Exp.Compose.BaseLengths Shared EXP composition length and byte-offset lemmas. -/ import EvmAsm.Evm64.Exp.CondMulCall namespace EvmAsm.Evm64.Exp.Compose open EvmAsm.Rv64 abbrev expIterCountNew (iterCount : Word) : Word := iterCount + signExtend12 ((-1 : BitVec 12)) /-- Length of the EXP epilo...
/- EvmAsm.Evm64.Exp.Compose.BaseLengths Shared EXP composition length and byte-offset lemmas. -/ import EvmAsm.Evm64.Exp.CondMulCall namespace EvmAsm.Evm64.Exp.Compose open EvmAsm.Rv64 abbrev expIterCountNew (iterCount : Word) : Word := iterCount + signExtend12 ((-1 : BitVec 12)) /-- Length of the EXP prolo...
@@ -13,6 +13,11 @@ abbrev expIterCountNew (iterCount : Word) : Word := iterCount + signExtend12 ((-1 : BitVec 12)) +/-- Length of the EXP prologue block, restated in the composition namespace so + future `skipBlock`-style subsumption proofs can use a compact simp set. -/ +theorem exp_prologue_len : (EvmAsm.Evm...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_452c1edaf1f0_7
37f1d8725b405cb4
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/Exp/Compose/BaseLengths.lean
BaseLengths
7
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
13
1
[ { "theorem_name": "exp_boundary_end_byte_off", "depth": 1, "n_commands": 0, "n_lines": 2, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n simp only [exp_prologue_len, exp_epilogue_len]", "n_chars": 52, "n_subproofs": 0, "n_tactics": 2, ...
[ { "name": "exp_prologue_len", "text": "/-- Length of the EXP prologue block, restated in the composition namespace so\n future `skipBlock`-style subsumption proofs can use a compact simp set. -/\ntheorem exp_prologue_len : (EvmAsm.Evm64.exp_prologue).length = 6 := by\n exact EvmAsm.Evm64.exp_prologue_le...
[ { "name": "exp_boundary_block_byte_offsets", "fan_in": 0, "n_deps_direct": 2, "n_deps_transitive": 5, "n_lines": 8, "n_chars": 328, "n_subproofs": 0, "n_tactics": 2, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 0, "n_structural": 1, "automation_only": false, ...
5
/- EvmAsm.Evm64.Exp.Compose.BaseLengths Shared EXP composition length and byte-offset lemmas. -/ import EvmAsm.Evm64.Exp.CondMulCall namespace EvmAsm.Evm64.Exp.Compose open EvmAsm.Rv64 abbrev expIterCountNew (iterCount : Word) : Word := iterCount + signExtend12 ((-1 : BitVec 12)) /-- Length of the EXP epilo...
/- EvmAsm.Evm64.Exp.Compose.BaseLengths Shared EXP composition length and byte-offset lemmas. -/ import EvmAsm.Evm64.Exp.CondMulCall namespace EvmAsm.Evm64.Exp.Compose open EvmAsm.Rv64 abbrev expIterCountNew (iterCount : Word) : Word := iterCount + signExtend12 ((-1 : BitVec 12)) /-- Length of the EXP prolo...
@@ -13,6 +13,11 @@ abbrev expIterCountNew (iterCount : Word) : Word := iterCount + signExtend12 ((-1 : BitVec 12)) +/-- Length of the EXP prologue block, restated in the composition namespace so + future `skipBlock`-style subsumption proofs can use a compact simp set. -/ +theorem exp_prologue_len : (EvmAsm.Evm...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_262f9ed91767_0
c2a30ee463b8aa72
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Compose/ModFullPathN1LoopUnified.lean
ModFullPathN1LoopUnified
0
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
5
1
[ { "theorem_name": "evm_mod_n1_loop_unified_inst", "depth": 1, "n_commands": 0, "n_lines": 7, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": "\n divK_loop_n1_unified_modCode bltu_3 bltu_2 bltu_1 bltu_0\n sp jMem (1 : Word) shift u0S v10_val v11Old antiShi...
[ { "name": "divK_loop_n1_unified_modCode", "text": "theorem divK_loop_n1_unified_modCode (bltu_3 bltu_2 bltu_1 bltu_0 : Bool)\n (sp jOld v5Old v6Old v7Old v10Old v11Old v2Old\n v0 v1 v2 v3 u0 u1 u2 u3 uTop\n u0_orig_2 u0_orig_1 u0_orig_0\n q3Old q2Old q1Old q0Old : Word)\n (retMem dMem dloM...
[ { "name": "evm_mod_n1_loop_unified_inst", "fan_in": 1, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 56, "n_chars": 3623, "n_subproofs": 0, "n_tactics": 6, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 0, "n_structural": 0, "automation_only": false, ...
1
/- EvmAsm.Evm64.DivMod.Compose.ModFullPathN1LoopUnified MOD n=1 full-path composition using the shared N1 unified loop post bundle. -/ import EvmAsm.Evm64.DivMod.Compose.FullPathN1LoopUnified import EvmAsm.Evm64.DivMod.Compose.ModFullPathN1 import EvmAsm.Evm64.DivMod.Compose.ModFullPathN4 open EvmAsm.Rv64.Tactic...
/- EvmAsm.Evm64.DivMod.Compose.ModFullPathN1LoopUnified MOD n=1 full-path composition using the shared N1 unified loop post bundle. -/ import EvmAsm.Evm64.DivMod.Compose.FullPathN1LoopUnified import EvmAsm.Evm64.DivMod.Compose.ModFullPathN1 import EvmAsm.Evm64.DivMod.Compose.ModFullPathN4 open EvmAsm.Rv64.Tactic...
@@ -15,6 +15,57 @@ open EvmAsm.Rv64 open EvmAsm.Rv64.AddrNorm (se12_32 se12_40 se12_48 se12_56) +theorem divK_loop_n1_unified_modCode (bltu_3 bltu_2 bltu_1 bltu_0 : Bool) + (sp jOld v5Old v6Old v7Old v10Old v11Old v2Old + v0 v1 v2 v3 u0 u1 u2 u3 uTop + u0_orig_2 u0_orig_1 u0_orig_0 + q3Old q2Old q1Ol...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_262f9ed91767_1
17e0c47469045d51
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Compose/ModFullPathN1LoopUnified.lean
ModFullPathN1LoopUnified
1
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
5
1
[ { "theorem_name": "evm_mod_n1_loop_unified_inst", "depth": 1, "n_commands": 0, "n_lines": 7, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": "\n divK_loop_n1_unified_modCode bltu_3 bltu_2 bltu_1 bltu_0\n sp jMem (1 : Word) shift u0S v10_val v11Old antiShi...
[ { "name": "divK_loop_n1_unified_modCode", "text": "theorem divK_loop_n1_unified_modCode (bltu_3 bltu_2 bltu_1 bltu_0 : Bool)\n (sp jOld v5Old v6Old v7Old v10Old v11Old v2Old\n v0 v1 v2 v3 u0 u1 u2 u3 uTop\n u0_orig_2 u0_orig_1 u0_orig_0\n q3Old q2Old q1Old q0Old : Word)\n (retMem dMem dloM...
[ { "name": "evm_mod_n1_preloop_loop_unified_spec", "fan_in": 1, "n_deps_direct": 1, "n_deps_transitive": 2, "n_lines": 92, "n_chars": 5607, "n_subproofs": 5, "n_tactics": 51, "cyclomatic": 1, "n_automation": 4, "n_rewrites": 3, "n_structural": 1, "automation_only":...
2
/- EvmAsm.Evm64.DivMod.Compose.ModFullPathN1LoopUnified MOD n=1 full-path composition using the shared N1 unified loop post bundle. -/ import EvmAsm.Evm64.DivMod.Compose.FullPathN1LoopUnified import EvmAsm.Evm64.DivMod.Compose.ModFullPathN1 import EvmAsm.Evm64.DivMod.Compose.ModFullPathN4 open EvmAsm.Rv64.Tactic...
/- EvmAsm.Evm64.DivMod.Compose.ModFullPathN1LoopUnified MOD n=1 full-path composition using the shared N1 unified loop post bundle. -/ import EvmAsm.Evm64.DivMod.Compose.FullPathN1LoopUnified import EvmAsm.Evm64.DivMod.Compose.ModFullPathN1 import EvmAsm.Evm64.DivMod.Compose.ModFullPathN4 open EvmAsm.Rv64.Tactic...
@@ -15,6 +15,57 @@ open EvmAsm.Rv64 open EvmAsm.Rv64.AddrNorm (se12_32 se12_40 se12_48 se12_56) +theorem divK_loop_n1_unified_modCode (bltu_3 bltu_2 bltu_1 bltu_0 : Bool) + (sp jOld v5Old v6Old v7Old v10Old v11Old v2Old + v0 v1 v2 v3 u0 u1 u2 u3 uTop + u0_orig_2 u0_orig_1 u0_orig_0 + q3Old q2Old q1Ol...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_262f9ed91767_2
5c626931b01b422e
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Compose/ModFullPathN1LoopUnified.lean
ModFullPathN1LoopUnified
2
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
5
1
[ { "theorem_name": "evm_mod_n1_loop_unified_inst", "depth": 1, "n_commands": 0, "n_lines": 7, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": "\n divK_loop_n1_unified_modCode bltu_3 bltu_2 bltu_1 bltu_0\n sp jMem (1 : Word) shift u0S v10_val v11Old antiShi...
[ { "name": "divK_loop_n1_unified_modCode", "text": "theorem divK_loop_n1_unified_modCode (bltu_3 bltu_2 bltu_1 bltu_0 : Bool)\n (sp jOld v5Old v6Old v7Old v10Old v11Old v2Old\n v0 v1 v2 v3 u0 u1 u2 u3 uTop\n u0_orig_2 u0_orig_1 u0_orig_0\n q3Old q2Old q1Old q0Old : Word)\n (retMem dMem dloM...
[ { "name": "evm_mod_n1_full_unified_spec", "fan_in": 0, "n_deps_direct": 3, "n_deps_transitive": 5, "n_lines": 69, "n_chars": 4130, "n_subproofs": 5, "n_tactics": 28, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 2, "n_structural": 2, "automation_only": false, ...
5
/- EvmAsm.Evm64.DivMod.Compose.ModFullPathN1LoopUnified MOD n=1 full-path composition using the shared N1 unified loop post bundle. -/ import EvmAsm.Evm64.DivMod.Compose.FullPathN1LoopUnified import EvmAsm.Evm64.DivMod.Compose.ModFullPathN1 import EvmAsm.Evm64.DivMod.Compose.ModFullPathN4 open EvmAsm.Rv64.Tactic...
/- EvmAsm.Evm64.DivMod.Compose.ModFullPathN1LoopUnified MOD n=1 full-path composition using the shared N1 unified loop post bundle. -/ import EvmAsm.Evm64.DivMod.Compose.FullPathN1LoopUnified import EvmAsm.Evm64.DivMod.Compose.ModFullPathN1 import EvmAsm.Evm64.DivMod.Compose.ModFullPathN4 open EvmAsm.Rv64.Tactic...
@@ -15,6 +15,57 @@ open EvmAsm.Rv64 open EvmAsm.Rv64.AddrNorm (se12_32 se12_40 se12_48 se12_56) +theorem divK_loop_n1_unified_modCode (bltu_3 bltu_2 bltu_1 bltu_0 : Bool) + (sp jOld v5Old v6Old v7Old v10Old v11Old v2Old + v0 v1 v2 v3 u0 u1 u2 u3 uTop + u0_orig_2 u0_orig_1 u0_orig_0 + q3Old q2Old q1Ol...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_250b88416839_0
f8a04dc4229d338d
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/MulMod/ProductLayoutHighTargets.lean
ProductLayoutHighTargets
0
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
10
3
[ { "theorem_name": "mulModProductLayoutHighTargetValues_eq_mulHigh_getLimbNs_of_columnTargets", "depth": 1, "n_commands": 0, "n_lines": 3, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [mulModProductLayoutHighTargetValues_eq_productHighLimbs_of_co...
[ { "name": "mulModProductLayoutHighTargetValues_eq_productHighLimbs_of_columnTargets", "text": "/-- Column-target obligations are exactly enough to identify the high product\n cells with `productHighLimbs`. -/\ntheorem mulModProductLayoutHighTargetValues_eq_productHighLimbs_of_columnTargets\n {a b : Ev...
[ { "name": "mulModProductLayoutHighTargetValues_eq_mulHigh_getLimbNs_of_columnTargets", "fan_in": 2, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 14, "n_chars": 811, "n_subproofs": 0, "n_tactics": 3, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 1, "n_str...
1
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
@@ -19,6 +19,19 @@ ((3984 : BitVec 12), mulModProductLayoutColumn6Value a b), ((3992 : BitVec 12), mulModProductLayoutColumn7Value a b)] +/-- Column-target obligations are exactly enough to identify the high product + cells with `productHighLimbs`. -/ +theorem mulModProductLayoutHighTargetValues_eq_product...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_250b88416839_1
4c7205e11e165367
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/MulMod/ProductLayoutHighTargets.lean
ProductLayoutHighTargets
1
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
10
3
[ { "theorem_name": "mulModProductLayoutHighOffsetValues_eq_mulHigh_getLimbNs_of_columnTargets", "depth": 1, "n_commands": 0, "n_lines": 6, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [mulModProductLayoutHighOffsetValues_eq_productOffsetValues_dr...
[ { "name": "mulModProductLayoutHighOffsetValues_eq_productOffsetValues_drop_four_of_columnTargets", "text": "/-- Column-target obligations identify the high runtime product-window offsets\n with the algebraic `productOffsetValues` high half. -/\ntheorem mulModProductLayoutHighOffsetValues_eq_productOffset...
[ { "name": "mulModProductLayoutHighOffsetValues_eq_mulHigh_getLimbNs_of_columnTargets", "fan_in": 2, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 21, "n_chars": 1111, "n_subproofs": 0, "n_tactics": 6, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 1, "n_st...
1
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
@@ -20,6 +20,20 @@ ((3992 : BitVec 12), mulModProductLayoutColumn7Value a b)] /-- Column-target obligations identify the high runtime product-window offsets + with the algebraic `productOffsetValues` high half. -/ +theorem mulModProductLayoutHighOffsetValues_eq_productOffsetValues_drop_four_of_columnTargets +...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_250b88416839_2
bd2ad47a07ed76a4
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/MulMod/ProductLayoutHighTargets.lean
ProductLayoutHighTargets
2
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
10
3
[ { "theorem_name": "mulModProductLayoutHighTargetValues_eq_mulHigh_getLimbNs_of_columnTargets", "depth": 1, "n_commands": 0, "n_lines": 3, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [mulModProductLayoutHighTargetValues_eq_productHighLimbs_of_co...
[ { "name": "mulModProductLayoutHighTargetValues_eq_productHighLimbs_of_columnTargets", "text": "/-- Column-target obligations are exactly enough to identify the high product\n cells with `productHighLimbs`. -/\ntheorem mulModProductLayoutHighTargetValues_eq_productHighLimbs_of_columnTargets\n {a b : Ev...
[ { "name": "mulModProductLayoutHighTargetValues_eq_productHighLimbs", "fan_in": 1, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 10, "n_chars": 578, "n_subproofs": 0, "n_tactics": 6, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 0, "n_structural": 1, "...
1
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
@@ -19,9 +19,27 @@ ((3984 : BitVec 12), mulModProductLayoutColumn6Value a b), ((3992 : BitVec 12), mulModProductLayoutColumn7Value a b)] +/-- Column-target obligations are exactly enough to identify the high product + cells with `productHighLimbs`. -/ +theorem mulModProductLayoutHighTargetValues_eq_product...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_250b88416839_3
1d440772dfbbef0c
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/MulMod/ProductLayoutHighTargets.lean
ProductLayoutHighTargets
3
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
10
3
[ { "theorem_name": "mulModProductLayoutHighTargetValues_eq_mulHigh_getLimbNs_of_columnTargets", "depth": 1, "n_commands": 0, "n_lines": 3, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [mulModProductLayoutHighTargetValues_eq_productHighLimbs_of_co...
[ { "name": "mulModProductLayoutHighTargetValues_eq_productHighLimbs_of_columnTargets", "text": "/-- Column-target obligations are exactly enough to identify the high product\n cells with `productHighLimbs`. -/\ntheorem mulModProductLayoutHighTargetValues_eq_productHighLimbs_of_columnTargets\n {a b : Ev...
[ { "name": "mulModProductLayoutHighTargetValues_eq_mulHigh_getLimbNs", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 2, "n_lines": 12, "n_chars": 705, "n_subproofs": 0, "n_tactics": 6, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 0, "n_structural": 1, ...
2
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
@@ -19,6 +19,19 @@ ((3984 : BitVec 12), mulModProductLayoutColumn6Value a b), ((3992 : BitVec 12), mulModProductLayoutColumn7Value a b)] +/-- Column-target obligations are exactly enough to identify the high product + cells with `productHighLimbs`. -/ +theorem mulModProductLayoutHighTargetValues_eq_product...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_250b88416839_4
fae5303a11e95960
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/MulMod/ProductLayoutHighTargets.lean
ProductLayoutHighTargets
4
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
10
3
[ { "theorem_name": "mulModProductLayoutHighOffsetValues_eq_mulHigh_getLimbNs_of_columnTargets", "depth": 1, "n_commands": 0, "n_lines": 6, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [mulModProductLayoutHighOffsetValues_eq_productOffsetValues_dr...
[ { "name": "mulModProductLayoutHighOffsetValues_eq_productOffsetValues_drop_four_of_columnTargets", "text": "/-- Column-target obligations identify the high runtime product-window offsets\n with the algebraic `productOffsetValues` high half. -/\ntheorem mulModProductLayoutHighOffsetValues_eq_productOffset...
[ { "name": "mulModProductLayoutHighOffsetValues_eq_productOffsetValues_drop_four", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 10, "n_chars": 635, "n_subproofs": 0, "n_tactics": 6, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 0, "n_structur...
1
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
@@ -19,9 +19,28 @@ ((3984 : BitVec 12), mulModProductLayoutColumn6Value a b), ((3992 : BitVec 12), mulModProductLayoutColumn7Value a b)] +/-- Column-target obligations identify the high runtime product-window offsets + with the algebraic `productOffsetValues` high half. -/ +theorem mulModProductLayoutHighO...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_250b88416839_5
6a643244c4a98cf7
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/MulMod/ProductLayoutHighTargets.lean
ProductLayoutHighTargets
5
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
10
3
[ { "theorem_name": "mulModProductLayoutHighOffsetValues_eq_mulHigh_getLimbNs_of_columnTargets", "depth": 1, "n_commands": 0, "n_lines": 6, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [mulModProductLayoutHighOffsetValues_eq_productOffsetValues_dr...
[ { "name": "mulModProductLayoutHighOffsetValues_eq_productOffsetValues_drop_four_of_columnTargets", "text": "/-- Column-target obligations identify the high runtime product-window offsets\n with the algebraic `productOffsetValues` high half. -/\ntheorem mulModProductLayoutHighOffsetValues_eq_productOffset...
[ { "name": "mulModProductLayoutHighOffsetValues_eq_mulHigh_getLimbNs", "fan_in": 1, "n_deps_direct": 1, "n_deps_transitive": 2, "n_lines": 14, "n_chars": 818, "n_subproofs": 0, "n_tactics": 6, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 0, "n_structural": 1, ...
2
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
@@ -20,6 +20,20 @@ ((3992 : BitVec 12), mulModProductLayoutColumn7Value a b)] /-- Column-target obligations identify the high runtime product-window offsets + with the algebraic `productOffsetValues` high half. -/ +theorem mulModProductLayoutHighOffsetValues_eq_productOffsetValues_drop_four_of_columnTargets +...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_250b88416839_6
71f5cae2969aa969
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/MulMod/ProductLayoutHighTargets.lean
ProductLayoutHighTargets
6
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
10
3
[ { "theorem_name": "mulModProductLayoutHighTargetValues_eq_mulHigh_getLimbNs_of_columnTargets", "depth": 1, "n_commands": 0, "n_lines": 3, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [mulModProductLayoutHighTargetValues_eq_productHighLimbs_of_co...
[ { "name": "mulModProductLayoutHighTargetValues_eq_productHighLimbs_of_columnTargets", "text": "/-- Column-target obligations are exactly enough to identify the high product\n cells with `productHighLimbs`. -/\ntheorem mulModProductLayoutHighTargetValues_eq_productHighLimbs_of_columnTargets\n {a b : Ev...
[ { "name": "mulModProductLayoutConcreteHighTargetValues_eq_productHighLimbs", "fan_in": 0, "n_deps_direct": 2, "n_deps_transitive": 3, "n_lines": 7, "n_chars": 382, "n_subproofs": 0, "n_tactics": 3, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 1, "n_structural": 1...
3
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
@@ -19,9 +19,27 @@ ((3984 : BitVec 12), mulModProductLayoutColumn6Value a b), ((3992 : BitVec 12), mulModProductLayoutColumn7Value a b)] +/-- Column-target obligations are exactly enough to identify the high product + cells with `productHighLimbs`. -/ +theorem mulModProductLayoutHighTargetValues_eq_product...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_250b88416839_7
a6f4758f5a0ed0b8
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/MulMod/ProductLayoutHighTargets.lean
ProductLayoutHighTargets
7
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
10
1
[ { "theorem_name": "mulModProductLayoutConcreteHighTargetValues_eq_mulHigh_getLimbNs_noHyp", "depth": 1, "n_commands": 0, "n_lines": 6, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n exact mulModProductLayoutConcreteHighTargetValues_eq_mulHigh_getLimb...
[ { "name": "mulModProductLayoutConcreteHighTargetValues_eq_mulHigh_getLimbNs", "text": "/-- Direct concrete high-cell aliases identify the final high cells with `mulHigh` limbs. -/\ntheorem mulModProductLayoutConcreteHighTargetValues_eq_mulHigh_getLimbNs\n {a b : EvmWord}\n (h128 : mulModProductLayoutC...
[ { "name": "mulModProductLayoutConcreteHighTargetValues_eq_mulHigh_getLimbNs_noHyp", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 12, "n_chars": 728, "n_subproofs": 0, "n_tactics": 6, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 0, "n_struct...
1
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
@@ -37,11 +37,31 @@ ((3992 : BitVec 12), mulModAddPartialHiValue (mulModProductLayoutCall14P152 a b) (mulModProductLayoutCall14P144 a b) (a.getLimbN 3) (b.getLimbN 3))] +/-- Direct concrete high-cell aliases identify the final high cells with `mulHigh` limbs. -/ +theorem mulModProductLayoutConcreteHighTarget...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_250b88416839_8
d45b155e16df8097
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/MulMod/ProductLayoutHighTargets.lean
ProductLayoutHighTargets
8
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
10
1
[ { "theorem_name": "mulModProductLayoutConcreteHighOffsetValues_eq_productOffsetValues_drop_four_noHyp", "depth": 1, "n_commands": 0, "n_lines": 6, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n exact mulModProductLayoutConcreteHighOffsetValues_eq_pro...
[ { "name": "mulModProductLayoutConcreteHighOffsetValues_eq_productOffsetValues_drop_four", "text": "/-- Direct concrete high-cell aliases identify the final high offset cells with\n the high half of `productOffsetValues`. -/\ntheorem mulModProductLayoutConcreteHighOffsetValues_eq_productOffsetValues_drop_...
[ { "name": "mulModProductLayoutConcreteHighOffsetValues_eq_productOffsetValues_drop_four_noHyp", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 11, "n_chars": 649, "n_subproofs": 0, "n_tactics": 6, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 0, ...
1
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
@@ -37,10 +37,32 @@ ((3992 : BitVec 12), mulModAddPartialHiValue (mulModProductLayoutCall14P152 a b) (mulModProductLayoutCall14P144 a b) (a.getLimbN 3) (b.getLimbN 3))] +/-- Direct concrete high-cell aliases identify the final high offset cells with + the high half of `productOffsetValues`. -/ +theorem mu...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_250b88416839_9
956870387e314a8d
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/MulMod/ProductLayoutHighTargets.lean
ProductLayoutHighTargets
9
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
10
2
[ { "theorem_name": "mulModProductLayoutHighOffsetValues_eq_mulHigh_getLimbNs", "depth": 1, "n_commands": 0, "n_lines": 6, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n exact mulModProductLayoutHighOffsetValues_eq_mulHigh_getLimbNs_of_columnTargets\n ...
[ { "name": "mulModProductLayoutHighOffsetValues_eq_mulHigh_getLimbNs_of_columnTargets", "text": "/-- Column-target obligations identify the high runtime product-window offsets\n with the direct `mulHigh.getLimbN` view. -/\ntheorem mulModProductLayoutHighOffsetValues_eq_mulHigh_getLimbNs_of_columnTargets\n...
[ { "name": "mulModProductLayoutConcreteHighOffsetValues_eq_mulHigh_getLimbNs_noHyp", "fan_in": 0, "n_deps_direct": 2, "n_deps_transitive": 4, "n_lines": 12, "n_chars": 639, "n_subproofs": 0, "n_tactics": 3, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 1, "n_struct...
4
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
@@ -33,13 +33,37 @@ a b).2 h4, h5, h6, h7] rfl +/-- Column-target obligations identify the high runtime product-window offsets + with the direct `mulHigh.getLimbN` view. -/ +theorem mulModProductLayoutHighOffsetValues_eq_mulHigh_getLimbNs_of_columnTargets + {a b : EvmWord} + (h4 : mulModProductLayo...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_250b88416839_10
bd683bccb7d4a03d
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/MulMod/ProductLayoutHighTargets.lean
ProductLayoutHighTargets
10
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
10
3
[ { "theorem_name": "mulModProductLayoutHighTargetValues_eq_mulHigh_getLimbNs_of_columnTargets", "depth": 1, "n_commands": 0, "n_lines": 3, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [mulModProductLayoutHighTargetValues_eq_productHighLimbs_of_co...
[ { "name": "mulModProductLayoutHighTargetValues_eq_productHighLimbs_of_columnTargets", "text": "/-- Column-target obligations are exactly enough to identify the high product\n cells with `productHighLimbs`. -/\ntheorem mulModProductLayoutHighTargetValues_eq_productHighLimbs_of_columnTargets\n {a b : Ev...
[ { "name": "mulModProductLayoutConcreteHighTargetValues_eq_productHighLimbs_of_columnTargets", "fan_in": 0, "n_deps_direct": 2, "n_deps_transitive": 2, "n_lines": 14, "n_chars": 744, "n_subproofs": 0, "n_tactics": 4, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 1, ...
2
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
@@ -19,6 +19,19 @@ ((3984 : BitVec 12), mulModProductLayoutColumn6Value a b), ((3992 : BitVec 12), mulModProductLayoutColumn7Value a b)] +/-- Column-target obligations are exactly enough to identify the high product + cells with `productHighLimbs`. -/ +theorem mulModProductLayoutHighTargetValues_eq_product...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_250b88416839_11
ee2c1ace969cd5e2
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/MulMod/ProductLayoutHighTargets.lean
ProductLayoutHighTargets
11
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
10
2
[ { "theorem_name": "mulModProductLayoutHighTargetValues_eq_mulHigh_getLimbNs", "depth": 1, "n_commands": 0, "n_lines": 6, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n exact mulModProductLayoutHighTargetValues_eq_mulHigh_getLimbNs_of_columnTargets\n ...
[ { "name": "mulModProductLayoutHighTargetValues_eq_mulHigh_getLimbNs_of_columnTargets", "text": "/-- Column-target obligations identify the high product cells with `mulHigh` limbs. -/\ntheorem mulModProductLayoutHighTargetValues_eq_mulHigh_getLimbNs_of_columnTargets\n {a b : EvmWord}\n (h4 : mulModProd...
[ { "name": "mulModProductLayoutConcreteHighTargetValues_eq_mulHigh_getLimbNs_of_columnTargets", "fan_in": 0, "n_deps_direct": 2, "n_deps_transitive": 3, "n_lines": 16, "n_chars": 881, "n_subproofs": 0, "n_tactics": 4, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 1, ...
3
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
@@ -32,6 +32,19 @@ (mulModProductLayoutCall12P128_eq_productLimb_four_iff_call08P120FeedValue a b).2 h4, h5, h6, h7] +/-- Column-target obligations identify the high product cells with `mulHigh` limbs. -/ +theorem mulModProductLayoutHighTargetValues_eq_mulHigh_getLimbNs_of_columnTargets + {a b : EvmWor...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_250b88416839_12
7d15bdcc486710af
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/MulMod/ProductLayoutHighTargets.lean
ProductLayoutHighTargets
12
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
10
3
[ { "theorem_name": "mulModProductLayoutHighOffsetValues_eq_mulHigh_getLimbNs_of_columnTargets", "depth": 1, "n_commands": 0, "n_lines": 6, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [mulModProductLayoutHighOffsetValues_eq_productOffsetValues_dr...
[ { "name": "mulModProductLayoutHighOffsetValues_eq_productOffsetValues_drop_four_of_columnTargets", "text": "/-- Column-target obligations identify the high runtime product-window offsets\n with the algebraic `productOffsetValues` high half. -/\ntheorem mulModProductLayoutHighOffsetValues_eq_productOffset...
[ { "name": "mulModProductLayoutConcreteHighOffsetValues_eq_productOffsetValues_drop_four_of_columnTargets", "fan_in": 0, "n_deps_direct": 2, "n_deps_transitive": 2, "n_lines": 14, "n_chars": 809, "n_subproofs": 0, "n_tactics": 4, "cyclomatic": 1, "n_automation": 0, "n_rewr...
2
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
@@ -19,6 +19,20 @@ ((3984 : BitVec 12), mulModProductLayoutColumn6Value a b), ((3992 : BitVec 12), mulModProductLayoutColumn7Value a b)] +/-- Column-target obligations identify the high runtime product-window offsets + with the algebraic `productOffsetValues` high half. -/ +theorem mulModProductLayoutHighO...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_250b88416839_13
27686bbd3afb48c0
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/MulMod/ProductLayoutHighTargets.lean
ProductLayoutHighTargets
13
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
10
2
[ { "theorem_name": "mulModProductLayoutHighOffsetValues_eq_mulHigh_getLimbNs", "depth": 1, "n_commands": 0, "n_lines": 6, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n exact mulModProductLayoutHighOffsetValues_eq_mulHigh_getLimbNs_of_columnTargets\n ...
[ { "name": "mulModProductLayoutHighOffsetValues_eq_mulHigh_getLimbNs_of_columnTargets", "text": "/-- Column-target obligations identify the high runtime product-window offsets\n with the direct `mulHigh.getLimbN` view. -/\ntheorem mulModProductLayoutHighOffsetValues_eq_mulHigh_getLimbNs_of_columnTargets\n...
[ { "name": "mulModProductLayoutConcreteHighOffsetValues_eq_mulHigh_getLimbNs_of_columnTargets", "fan_in": 0, "n_deps_direct": 2, "n_deps_transitive": 3, "n_lines": 19, "n_chars": 1001, "n_subproofs": 0, "n_tactics": 4, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 1, ...
3
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
import EvmAsm.Evm64.MulMod.ProductLayoutColumn7Target namespace EvmAsm.Evm64 open EvmAsm.Rv64 open EvmAsm.Evm64.MulMod.ProductAlgebra /-- The four finalized high product-layout cells, in product-limb order. -/ def mulModProductLayoutHighTargetValues (a b : EvmWord) : List Word := [mulModProductLayoutCall12P128 a b...
@@ -33,6 +33,25 @@ a b).2 h4, h5, h6, h7] rfl +/-- Column-target obligations identify the high runtime product-window offsets + with the direct `mulHigh.getLimbN` view. -/ +theorem mulModProductLayoutHighOffsetValues_eq_mulHigh_getLimbNs_of_columnTargets + {a b : EvmWord} + (h4 : mulModProductLayou...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_fafa82bf1106_0
260f846ad0d28ddd
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Rv64/SAsm/AssertionSpec.lean
AssertionSpec
0
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
5
1
[ { "theorem_name": "regFileOn_cons", "depth": 1, "n_commands": 0, "n_lines": 21, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n funext h\n apply propext\n constructor\n · intro hh\n refine ⟨PartialState.singletonReg r (rf.get r), PartialState.on...
[ { "name": "union_singleton_onRegs", "text": "private theorem union_singleton_onRegs (r : Reg) (rs : List Reg) (rf : RegFile) :\n (PartialState.singletonReg r (rf.get r)).union (PartialState.onRegs rs rf)\n = PartialState.onRegs (r :: rs) rf := by\n unfold PartialState.union PartialState.onRegs Part...
[ { "name": "regFileOn_cons", "fan_in": 1, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 26, "n_chars": 981, "n_subproofs": 2, "n_tactics": 21, "cyclomatic": 3, "n_automation": 10, "n_rewrites": 4, "n_structural": 7, "automation_only": false, "max_nesti...
1
/- EvmAsm.Rv64.SAsm.AssertionSpec Bridges between the SAsm state atoms and plain separation-logic assertions, plus consequence rules at the `Fn`/`FnHandle` level. - `regFileOn`/`regFileIs_eq_atoms`: the single `regFileIs` atom equals the separating conjunction of the 15 per-register atoms. This is the ...
/- EvmAsm.Rv64.SAsm.AssertionSpec Bridges between the SAsm state atoms and plain separation-logic assertions, plus consequence rules at the `Fn`/`FnHandle` level. - `regFileOn`/`regFileIs_eq_atoms`: the single `regFileIs` atom equals the separating conjunction of the 15 per-register atoms. This is the ...
@@ -37,6 +37,17 @@ def regFileOn (rs : List Reg) (rf : RegFile) : Assertion := fun h => h = PartialState.onRegs rs rf +private theorem union_singleton_onRegs (r : Reg) (rs : List Reg) (rf : RegFile) : + (PartialState.singletonReg r (rf.get r)).union (PartialState.onRegs rs rf) + = PartialState.onRegs (r :...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_fafa82bf1106_1
b5663d8148a9acba
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Rv64/SAsm/AssertionSpec.lean
AssertionSpec
1
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
5
1
[ { "theorem_name": "regFileIs_eq_atoms", "depth": 1, "n_commands": 0, "n_lines": 13, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [regFileIs_eq_regFileOn,\n show exposedRegs = [.x5, .x6, .x7, .x28, .x29, .x30, .x31,\n .x10, .x11, .x12, .x...
[ { "name": "regFileIs_eq_regFileOn", "text": "/-- `regFileIs` is the register-set atom over the exposed registers. -/\ntheorem regFileIs_eq_regFileOn (rf : RegFile) :\n regFileIs rf = regFileOn exposedRegs rf := by\n have hX : PartialState.ofRegFile rf = PartialState.onRegs exposedRegs rf := by\n unfo...
[ { "name": "regFileIs_eq_atoms", "fan_in": 0, "n_deps_direct": 3, "n_deps_transitive": 4, "n_lines": 32, "n_chars": 1829, "n_subproofs": 0, "n_tactics": 13, "cyclomatic": 1, "n_automation": 16, "n_rewrites": 2, "n_structural": 0, "automation_only": false, "max_...
4
/- EvmAsm.Rv64.SAsm.AssertionSpec Bridges between the SAsm state atoms and plain separation-logic assertions, plus consequence rules at the `Fn`/`FnHandle` level. - `regFileOn`/`regFileIs_eq_atoms`: the single `regFileIs` atom equals the separating conjunction of the 15 per-register atoms. This is the ...
/- EvmAsm.Rv64.SAsm.AssertionSpec Bridges between the SAsm state atoms and plain separation-logic assertions, plus consequence rules at the `Fn`/`FnHandle` level. - `regFileOn`/`regFileIs_eq_atoms`: the single `regFileIs` atom equals the separating conjunction of the 15 per-register atoms. This is the ...
@@ -81,6 +81,20 @@ show h = PartialState.onRegs (r :: rs) rf rw [← hu, hh1', hh2', union_singleton_onRegs] +/-- `regFileIs` is the register-set atom over the exposed registers. -/ +theorem regFileIs_eq_regFileOn (rf : RegFile) : + regFileIs rf = regFileOn exposedRegs rf := by + have hX : PartialState.of...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_fafa82bf1106_2
41c93a328eb5e1e4
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Rv64/SAsm/AssertionSpec.lean
AssertionSpec
2
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
5
1
[ { "theorem_name": "asrtM_frameA", "depth": 1, "n_commands": 0, "n_lines": 5, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n show (asrtOf rw (r.frameA Fr) ** bytesRegion reg.base reg.bytes)\n = ((asrtOf rw r ** bytesRegion reg.base reg.bytes) ** Fr...
[ { "name": "asrtOf_frameA", "text": "/-- Splitting the ambient assertion moves a fixed frame out of `asrtOf`. -/\ntheorem asrtOf_frameA (rw : RwRegion) (r : Reach) (Fr : Assertion)\n (hFr : Fr.pcFree) :\n asrtOf rw (r.frameA Fr) = (asrtOf rw r ** Fr) := by\n funext h\n apply propext\n constructor\n ...
[ { "name": "asrtM_frameA", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 10, "n_chars": 496, "n_subproofs": 0, "n_tactics": 5, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 5, "n_structural": 0, "automation_only": false, "max_nesting":...
1
/- EvmAsm.Rv64.SAsm.AssertionSpec Bridges between the SAsm state atoms and plain separation-logic assertions, plus consequence rules at the `Fn`/`FnHandle` level. - `regFileOn`/`regFileIs_eq_atoms`: the single `regFileIs` atom equals the separating conjunction of the 15 per-register atoms. This is the ...
/- EvmAsm.Rv64.SAsm.AssertionSpec Bridges between the SAsm state atoms and plain separation-logic assertions, plus consequence rules at the `Fn`/`FnHandle` level. - `regFileOn`/`regFileIs_eq_atoms`: the single `regFileIs` atom equals the separating conjunction of the 15 per-register atoms. This is the ...
@@ -99,10 +99,32 @@ def Reach.frameA (r : Reach) (Fr : Assertion) : Reach := fun rf ws A => ∃ A₀, A₀.pcFree ∧ A = (A₀ ** Fr) ∧ r rf ws A₀ +/-- Splitting the ambient assertion moves a fixed frame out of `asrtOf`. -/ +theorem asrtOf_frameA (rw : RwRegion) (r : Reach) (Fr : Assertion) + (hFr : Fr.pcFree) : + a...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_60bc3c5d5358_0
2150345053c28994
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Rv64/RLP/ScalarSpillChain.lean
ScalarSpillChain
0
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
2
1
[ { "theorem_name": "spillIterCR_disjoint", "depth": 1, "n_commands": 0, "n_lines": 7, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n intro a\n by_cases hin : ∀ k, k < 3 → a ≠ base1 + BitVec.ofNat 64 (4 * k)\n · exact Or.inl (spillIterCR_none base1 a...
[ { "name": "spillIterCR_none", "text": "theorem spillIterCR_none (base a : Word) (h : ∀ k, k < 3 → a ≠ base + BitVec.ofNat 64 (4 * k)) :\n spillIterCR base a = none := by\n have s0 : CodeReq.singleton base (.SB .x14 .x11 0) a = none :=\n CodeReq.singleton_miss (by have := h 0 (by omega); simpa using t...
[ { "name": "spillIterCR_disjoint", "fan_in": 1, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 11, "n_chars": 451, "n_subproofs": 1, "n_tactics": 7, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 0, "n_structural": 4, "automation_only": false, "max_n...
1
/- EvmAsm.Rv64.RLP.ScalarSpillChain Spill a u64 value register into the output struct region, little-endian: `N` `rlp_spill_iter` blocks in sequence (block `j` at `base + 12*j`) write `x11`'s bytes to output positions `[di0, di0+N)`, shifting `x11` right by 8 each block. For a u64 scalar field `N = 8`, writi...
/- EvmAsm.Rv64.RLP.ScalarSpillChain Spill a u64 value register into the output struct region, little-endian: `N` `rlp_spill_iter` blocks in sequence (block `j` at `base + 12*j`) write `x11`'s bytes to output positions `[di0, di0+N)`, shifting `x11` right by 8 each block. For a u64 scalar field `N = 8`, writi...
@@ -24,13 +24,25 @@ (CodeReq.singleton (base + 4) (.SRLI .x11 .x11 8))).union (CodeReq.singleton (base + 8) (.ADDI .x14 .x14 1)) +theorem spillIterCR_none (base a : Word) (h : ∀ k, k < 3 → a ≠ base + BitVec.ofNat 64 (4 * k)) : + spillIterCR base a = none := by + have s0 : CodeReq.singleton base (.SB...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_60bc3c5d5358_1
c57d395df6a46a23
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Rv64/RLP/ScalarSpillChain.lean
ScalarSpillChain
1
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
2
1
[ { "theorem_name": "spillIterCR_disjoint_chainCR", "depth": 1, "n_commands": 0, "n_lines": 16, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n induction N generalizing bw with\n | zero => simpa [spillChainCR] using CodeReq.Disjoint.empty_right (spillI...
[ { "name": "spillIterCR_disjoint", "text": "theorem spillIterCR_disjoint (base1 base2 : Word)\n (hsep : base1.toNat + 12 ≤ base2.toNat) (hov : base2.toNat + 12 < 2 ^ 64) :\n (spillIterCR base1).Disjoint (spillIterCR base2) := by\n intro a\n by_cases hin : ∀ k, k < 3 → a ≠ base1 + BitVec.ofNat 64 (4 *...
[ { "name": "spillIterCR_disjoint_chainCR", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 2, "n_lines": 20, "n_chars": 803, "n_subproofs": 4, "n_tactics": 16, "cyclomatic": 2, "n_automation": 6, "n_rewrites": 1, "n_structural": 4, "automation_only": false, ...
2
/- EvmAsm.Rv64.RLP.ScalarSpillChain Spill a u64 value register into the output struct region, little-endian: `N` `rlp_spill_iter` blocks in sequence (block `j` at `base + 12*j`) write `x11`'s bytes to output positions `[di0, di0+N)`, shifting `x11` right by 8 each block. For a u64 scalar field `N = 8`, writi...
/- EvmAsm.Rv64.RLP.ScalarSpillChain Spill a u64 value register into the output struct region, little-endian: `N` `rlp_spill_iter` blocks in sequence (block `j` at `base + 12*j`) write `x11`'s bytes to output positions `[di0, di0+N)`, shifting `x11` right by 8 each block. For a u64 scalar field `N = 8`, writi...
@@ -34,6 +34,16 @@ CodeReq.singleton_miss (by have := h 2 (by omega); bv_omega) simp only [spillIterCR, CodeReq.union, s0, s1, s2] +theorem spillIterCR_disjoint (base1 base2 : Word) + (hsep : base1.toNat + 12 ≤ base2.toNat) (hov : base2.toNat + 12 < 2 ^ 64) : + (spillIterCR base1).Disjoint (spillIterCR ...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_061966a87554_0
9f4409e56a8d1f9c
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Codegen/Programs/Bn254Fq12ZeroSAsm.lean
Bn254Fq12ZeroSAsm
0
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
6
1
[ { "theorem_name": "bnqZeroFn_spec", "depth": 1, "n_commands": 0, "n_lines": 79, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n have hbase : (bnqZeroFn dst orig).rw.base = dst := rfl\n vcgen\n case region => exact ⟨Region.empty_wf, hwf⟩\n case bnqZ...
[ { "name": "zeroWin384_step", "text": "theorem zeroWin384_step (orig : List (BitVec 8)) (i : Nat)\n (h : orig.length = 384) (hi : i < 48) :\n setBytes (zeroWin384 orig i) (8 * i) (dwordBytes (0 : Word)) = zeroWin384 orig (i + 1) := by\n rw [zeroWin384]\n rw [setBytes_append_right _ _ _ _ (by simp)]\n...
[ { "name": "bnqZeroFn_spec", "fan_in": 0, "n_deps_direct": 6, "n_deps_transitive": 6, "n_lines": 83, "n_chars": 3898, "n_subproofs": 7, "n_tactics": 81, "cyclomatic": 16, "n_automation": 43, "n_rewrites": 23, "n_structural": 23, "automation_only": false, "max_n...
6
/- EvmAsm.Codegen.Programs.Bn254Fq12ZeroSAsm Verified SAsm port of `bnq_zero`: zero the 384-byte BN254 FQ12 buffer at `a0`. The emitted routine is a bottom-test dword loop: initialize `x5 = 12`, store a zero dword, advance `a0`, decrement `x5`, and branch back while `x5 != 0`. The postcondition is the genu...
/- EvmAsm.Codegen.Programs.Bn254Fq12ZeroSAsm Verified SAsm port of `bnq_zero`: zero the 384-byte BN254 FQ12 buffer at `a0`. The emitted routine is a bottom-test dword loop: initialize `x5 = 12`, store a zero dword, advance `a0`, decrement `x5`, and branch back while `x5 != 0`. The postcondition is the genu...
@@ -31,6 +31,39 @@ simp only [zeroWin384, Nat.reduceMul, List.drop_eq_nil_of_le (by omega : orig.length <= 384), List.append_nil] +theorem zeroWin384_step (orig : List (BitVec 8)) (i : Nat) + (h : orig.length = 384) (hi : i < 48) : + setBytes (zeroWin384 orig i) (8 * i) (dwordBytes (0 : Word)) = zeroWin...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_48f9f5a57bdf_0
d9a514d002da29b5
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/EvmWordArith/CallSkipLowerBoundV4/Un21Bound.lean
Un21Bound
0
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
2
1
[ { "theorem_name": "divKTrialCallV4Un21_lt_vTop_of_uHi_lt_pow63", "depth": 1, "n_commands": 0, "n_lines": 134, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n let q := divKTrialCallV4Q1dd uHi uLo vTop\n let rhat := divKTrialCallV4Rhatdd uHi uLo vTop\n...
[ { "name": "un21_mod_sub_le_full_remainder_nat", "text": "/-- The machine low-word subtraction used for `un21` is bounded by the full\n mathematical remainder, even when the low half wraps. -/\ntheorem un21_mod_sub_le_full_remainder_nat\n (rhat qdLo un1 : Nat)\n (hA_lt : (rhat % 2^32) * 2^32 + un1 <...
[ { "name": "divKTrialCallV4Un21_lt_vTop_of_uHi_lt_pow63", "fan_in": 1, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 143, "n_chars": 5853, "n_subproofs": 38, "n_tactics": 134, "cyclomatic": 1, "n_automation": 22, "n_rewrites": 26, "n_structural": 9, "autom...
1
/- EvmAsm.Evm64.EvmWordArith.CallSkipLowerBoundV4.Un21Bound Final Phase-1b V4 `un21 < vTop` bound, split out of `Phase1bBound` to keep the arithmetic helper file under the line-count guardrail. -/ import EvmAsm.Evm64.EvmWordArith.CallSkipLowerBoundV4.Phase1bBound namespace EvmAsm.Evm64 open EvmAsm.Rv64 EvmWor...
/- EvmAsm.Evm64.EvmWordArith.CallSkipLowerBoundV4.Un21Bound Final Phase-1b V4 `un21 < vTop` bound, split out of `Phase1bBound` to keep the arithmetic helper file under the line-count guardrail. -/ import EvmAsm.Evm64.EvmWordArith.CallSkipLowerBoundV4.Phase1bBound namespace EvmAsm.Evm64 open EvmAsm.Rv64 EvmWor...
@@ -11,6 +11,39 @@ open EvmAsm.Rv64 EvmWord +/-- The machine low-word subtraction used for `un21` is bounded by the full + mathematical remainder, even when the low half wraps. -/ +theorem un21_mod_sub_le_full_remainder_nat + (rhat qdLo un1 : Nat) + (hA_lt : (rhat % 2^32) * 2^32 + un1 < 2^64) + (hB_lt ...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_48f9f5a57bdf_1
0e9fafceb09ddb52
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/EvmWordArith/CallSkipLowerBoundV4/Un21Bound.lean
Un21Bound
1
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
2
1
[ { "theorem_name": "un21V4_lt_vTop_of_call", "depth": 1, "n_commands": 0, "n_lines": 22, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n intro shift antiShift b3' u4 u3\n have hb3'_ge : b3'.toNat ≥ 2^63 :=\n b3_prime_ge_pow63 b3 b2 hb3nz _\n have ...
[ { "name": "divKTrialCallV4Un21_lt_vTop_of_uHi_lt_pow63", "text": "/-- Under the call-reachable raw hypotheses, the V4 Phase-1b `un21`\n intermediate is strictly below the normalized top divisor limb. -/\ntheorem divKTrialCallV4Un21_lt_vTop_of_uHi_lt_pow63\n (uHi uLo vTop : Word)\n (hvTop_ge : vTop....
[ { "name": "un21V4_lt_vTop_of_call", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 2, "n_lines": 36, "n_chars": 1421, "n_subproofs": 6, "n_tactics": 22, "cyclomatic": 2, "n_automation": 2, "n_rewrites": 2, "n_structural": 6, "automation_only": false, "m...
2
/- EvmAsm.Evm64.EvmWordArith.CallSkipLowerBoundV4.Un21Bound Final Phase-1b V4 `un21 < vTop` bound, split out of `Phase1bBound` to keep the arithmetic helper file under the line-count guardrail. -/ import EvmAsm.Evm64.EvmWordArith.CallSkipLowerBoundV4.Phase1bBound namespace EvmAsm.Evm64 open EvmAsm.Rv64 EvmWor...
/- EvmAsm.Evm64.EvmWordArith.CallSkipLowerBoundV4.Un21Bound Final Phase-1b V4 `un21 < vTop` bound, split out of `Phase1bBound` to keep the arithmetic helper file under the line-count guardrail. -/ import EvmAsm.Evm64.EvmWordArith.CallSkipLowerBoundV4.Phase1bBound namespace EvmAsm.Evm64 open EvmAsm.Rv64 EvmWor...
@@ -44,6 +44,148 @@ have h_H_ge : 1 ≤ H := Nat.succ_le_of_lt h_H_pos omega +/-- Under the call-reachable raw hypotheses, the V4 Phase-1b `un21` + intermediate is strictly below the normalized top divisor limb. -/ +theorem divKTrialCallV4Un21_lt_vTop_of_uHi_lt_pow63 + (uHi uLo vTop : Word) + (hvTop_...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_33d7884b5206_0
b5ea62c2447bb67a
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/EvmWordArith/DivV5TrialOverestimate.lean
DivV5TrialOverestimate
0
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
5
3
[ { "theorem_name": "DivKTrialCallV5QHatLeFloorPlusOne_of_norm", "depth": 1, "n_commands": 0, "n_lines": 2, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": "\n divKTrialCallV5QHat_le_floor_plus_one uHi uLo vTop hvTop_ge huHi_lt_vTop", "n_chars": 75, "n...
[ { "name": "divKTrialCallV5QHat_le_floor_plus_one", "text": "/-- **The V5 payoff** (v5 analog of the impossible v4 bead `7.1.4.1`):\n `divKTrialCallV5QHat ≤ (uHi·2^64 + uLo)/vTop + 1` discharged\n unconditionally from V5.4.5, under just the call regime\n (`uHi < vTop`) + normalisation (`vTop ≥ 2^63`...
[ { "name": "DivKTrialCallV5QHatLeFloorPlusOne_of_norm", "fan_in": 1, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 9, "n_chars": 361, "n_subproofs": 0, "n_tactics": 1, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 0, "n_structural": 0, "automation_only...
1
/- EvmAsm.Evm64.EvmWordArith.DivV5TrialOverestimate v5 analog of `DivV4TrialOverestimate` — but DISCHARGED, not just named. The v4 frontier `DivKTrialCallV4QHatLeFloorPlusOne` (bead `9iqmw.7.1.4.1`) was the open obstruction gating `evm_div_stack_spec_unconditional`: `divKTrialCallV4QHat uHi uLo vTop ≤ (uH...
/- EvmAsm.Evm64.EvmWordArith.DivV5TrialOverestimate v5 analog of `DivV4TrialOverestimate` — but DISCHARGED, not just named. The v4 frontier `DivKTrialCallV4QHatLeFloorPlusOne` (bead `9iqmw.7.1.4.1`) was the open obstruction gating `evm_div_stack_spec_unconditional`: `divKTrialCallV4QHat uHi uLo vTop ≤ (uH...
@@ -37,12 +37,26 @@ (divKTrialCallV5QHat uHi uLo vTop).toNat ≤ (uHi.toNat * 2^64 + uLo.toNat) / vTop.toNat + 1 +/-- **The V5 payoff** (v5 analog of the impossible v4 bead `7.1.4.1`): + `divKTrialCallV5QHat ≤ (uHi·2^64 + uLo)/vTop + 1` discharged + unconditionally from V5.4.5, under just the call regime ...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_33d7884b5206_1
bbcaadafa77cd193
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/EvmWordArith/DivV5TrialOverestimate.lean
DivV5TrialOverestimate
1
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
5
1
[ { "theorem_name": "divKTrialCallV5QHat_le_val256_div_plus_two_of_norm", "depth": 1, "n_commands": 0, "n_lines": 4, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": "\n divKTrialCallV5QHat_le_val256_div_plus_two uHi uLo vTop v0 v1 v2 v3 u0 u1 u2 u3\n (DivKT...
[ { "name": "DivKTrialCallV5QHatLeFloorPlusOne_of_norm", "text": "/-- Named-predicate form of `divKTrialCallV5QHat_le_floor_plus_one`. -/\ntheorem DivKTrialCallV5QHatLeFloorPlusOne_of_norm\n (uHi uLo vTop : Word)\n (hvTop_ge : vTop.toNat ≥ 2^63)\n (huHi_lt_vTop : uHi.toNat < vTop.toNat) :\n DivKTr...
[ { "name": "divKTrialCallV5QHat_le_val256_div_plus_two_of_norm", "fan_in": 1, "n_deps_direct": 2, "n_deps_transitive": 3, "n_lines": 16, "n_chars": 783, "n_subproofs": 0, "n_tactics": 3, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 0, "n_structural": 0, "autom...
3
/- EvmAsm.Evm64.EvmWordArith.DivV5TrialOverestimate v5 analog of `DivV4TrialOverestimate` — but DISCHARGED, not just named. The v4 frontier `DivKTrialCallV4QHatLeFloorPlusOne` (bead `9iqmw.7.1.4.1`) was the open obstruction gating `evm_div_stack_spec_unconditional`: `divKTrialCallV4QHat uHi uLo vTop ≤ (uH...
/- EvmAsm.Evm64.EvmWordArith.DivV5TrialOverestimate v5 analog of `DivV4TrialOverestimate` — but DISCHARGED, not just named. The v4 frontier `DivKTrialCallV4QHatLeFloorPlusOne` (bead `9iqmw.7.1.4.1`) was the open obstruction gating `evm_div_stack_spec_unconditional`: `divKTrialCallV4QHat uHi uLo vTop ≤ (uH...
@@ -50,6 +50,14 @@ rw [divKTrialCallV5QHat_eq_div128Quot_v5] exact div128Quot_v5_le_q_true_plus_one uHi uLo vTop hvTop_ge huHi_lt_vTop +/-- Named-predicate form of `divKTrialCallV5QHat_le_floor_plus_one`. -/ +theorem DivKTrialCallV5QHatLeFloorPlusOne_of_norm + (uHi uLo vTop : Word) + (hvTop_ge : vTop.toNa...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_33d7884b5206_2
8e9a953f2062ba53
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/EvmWordArith/DivV5TrialOverestimate.lean
DivV5TrialOverestimate
2
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
5
1
[ { "theorem_name": "divKTrialCallV5QHat_le_val256_div_plus_two_of_norm", "depth": 1, "n_commands": 0, "n_lines": 4, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": "\n divKTrialCallV5QHat_le_val256_div_plus_two uHi uLo vTop v0 v1 v2 v3 u0 u1 u2 u3\n (DivKT...
[ { "name": "divKTrialCallV5QHat_le_val256_div_plus_two", "text": "/-- **v5 val256 composition** (mirror of `divKTrialCallV4QHat_le_val256_div_plus_two`):\n from the v5 frontier `+1` bound and the version-agnostic Knuth Theorem A\n top-window bridge `Knuth128_64TopWindowLeVal256DivPlusOne`, derive the\n...
[ { "name": "divKTrialCallV5QHat_le_val256_div_plus_two_of_norm_and_top_window_fits_v_eq_vTop", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 4, "n_lines": 27, "n_chars": 1538, "n_subproofs": 0, "n_tactics": 4, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 0, ...
4
/- EvmAsm.Evm64.EvmWordArith.DivV5TrialOverestimate v5 analog of `DivV4TrialOverestimate` — but DISCHARGED, not just named. The v4 frontier `DivKTrialCallV4QHatLeFloorPlusOne` (bead `9iqmw.7.1.4.1`) was the open obstruction gating `evm_div_stack_spec_unconditional`: `divKTrialCallV4QHat uHi uLo vTop ≤ (uH...
/- EvmAsm.Evm64.EvmWordArith.DivV5TrialOverestimate v5 analog of `DivV4TrialOverestimate` — but DISCHARGED, not just named. The v4 frontier `DivKTrialCallV4QHatLeFloorPlusOne` (bead `9iqmw.7.1.4.1`) was the open obstruction gating `evm_div_stack_spec_unconditional`: `divKTrialCallV4QHat uHi uLo vTop ≤ (uH...
@@ -58,6 +58,25 @@ DivKTrialCallV5QHatLeFloorPlusOne uHi uLo vTop := divKTrialCallV5QHat_le_floor_plus_one uHi uLo vTop hvTop_ge huHi_lt_vTop +/-- **v5 val256 composition** (mirror of `divKTrialCallV4QHat_le_val256_div_plus_two`): + from the v5 frontier `+1` bound and the version-agnostic Knuth Theorem A +...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_33d7884b5206_3
d3b6ed31a7f3e60f
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/EvmWordArith/DivV5TrialOverestimate.lean
DivV5TrialOverestimate
3
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
5
3
[ { "theorem_name": "DivKTrialCallV5QHatLeFloorPlusOne_of_norm", "depth": 1, "n_commands": 0, "n_lines": 2, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": "\n divKTrialCallV5QHat_le_floor_plus_one uHi uLo vTop hvTop_ge huHi_lt_vTop", "n_chars": 75, "n...
[ { "name": "divKTrialCallV5QHat_le_floor_plus_one", "text": "/-- **The V5 payoff** (v5 analog of the impossible v4 bead `7.1.4.1`):\n `divKTrialCallV5QHat ≤ (uHi·2^64 + uLo)/vTop + 1` discharged\n unconditionally from V5.4.5, under just the call regime\n (`uHi < vTop`) + normalisation (`vTop ≥ 2^63`...
[ { "name": "divKTrialCallV5QHat_le_val256_div_plus_three_of_call", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 46, "n_chars": 2574, "n_subproofs": 4, "n_tactics": 13, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 0, "n_structural": 0, "a...
1
/- EvmAsm.Evm64.EvmWordArith.DivV5TrialOverestimate v5 analog of `DivV4TrialOverestimate` — but DISCHARGED, not just named. The v4 frontier `DivKTrialCallV4QHatLeFloorPlusOne` (bead `9iqmw.7.1.4.1`) was the open obstruction gating `evm_div_stack_spec_unconditional`: `divKTrialCallV4QHat uHi uLo vTop ≤ (uH...
/- EvmAsm.Evm64.EvmWordArith.DivV5TrialOverestimate v5 analog of `DivV4TrialOverestimate` — but DISCHARGED, not just named. The v4 frontier `DivKTrialCallV4QHatLeFloorPlusOne` (bead `9iqmw.7.1.4.1`) was the open obstruction gating `evm_div_stack_spec_unconditional`: `divKTrialCallV4QHat uHi uLo vTop ≤ (uH...
@@ -37,6 +37,19 @@ (divKTrialCallV5QHat uHi uLo vTop).toNat ≤ (uHi.toNat * 2^64 + uLo.toNat) / vTop.toNat + 1 +/-- **The V5 payoff** (v5 analog of the impossible v4 bead `7.1.4.1`): + `divKTrialCallV5QHat ≤ (uHi·2^64 + uLo)/vTop + 1` discharged + unconditionally from V5.4.5, under just the call regime +...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_33d7884b5206_4
ccbab900d377e23e
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/EvmWordArith/DivV5TrialOverestimate.lean
DivV5TrialOverestimate
4
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
5
1
[ { "theorem_name": "divKTrialCallV5QHat_eq_floor_or_succ", "depth": 1, "n_commands": 0, "n_lines": 4, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n have hle := divKTrialCallV5QHat_le_floor_plus_one uHi uLo vTop hvTop_ge huHi_lt_vTop\n have hge := di...
[ { "name": "divKTrialCallV5QHat_ge_floor", "text": "/-- Companion lower bound (from V5.5.3): `(uHi·2^64+uLo)/vTop ≤\n divKTrialCallV5QHat`. Together with the `+1` upper bound this pins the\n v5 trial quotient to within 1 of the floor — the input to the BLT-path\n `Carry2Nz` bridges. -/\ntheorem divK...
[ { "name": "divKTrialCallV5QHat_eq_floor_or_succ", "fan_in": 0, "n_deps_direct": 2, "n_deps_transitive": 2, "n_lines": 29, "n_chars": 1590, "n_subproofs": 2, "n_tactics": 4, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 0, "n_structural": 0, "automation_only": ...
2
/- EvmAsm.Evm64.EvmWordArith.DivV5TrialOverestimate v5 analog of `DivV4TrialOverestimate` — but DISCHARGED, not just named. The v4 frontier `DivKTrialCallV4QHatLeFloorPlusOne` (bead `9iqmw.7.1.4.1`) was the open obstruction gating `evm_div_stack_spec_unconditional`: `divKTrialCallV4QHat uHi uLo vTop ≤ (uH...
/- EvmAsm.Evm64.EvmWordArith.DivV5TrialOverestimate v5 analog of `DivV4TrialOverestimate` — but DISCHARGED, not just named. The v4 frontier `DivKTrialCallV4QHatLeFloorPlusOne` (bead `9iqmw.7.1.4.1`) was the open obstruction gating `evm_div_stack_spec_unconditional`: `divKTrialCallV4QHat uHi uLo vTop ≤ (uH...
@@ -50,6 +50,19 @@ rw [divKTrialCallV5QHat_eq_div128Quot_v5] exact div128Quot_v5_le_q_true_plus_one uHi uLo vTop hvTop_ge huHi_lt_vTop +/-- Companion lower bound (from V5.5.3): `(uHi·2^64+uLo)/vTop ≤ + divKTrialCallV5QHat`. Together with the `+1` upper bound this pins the + v5 trial quotient to within 1 o...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_a04fefa5d167_0
15de549756538f4b
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Rv64/RLP/ValidatingFieldWalk.lean
ValidatingFieldWalk
0
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
2
1
[ { "theorem_name": "rlp_decode_shortBytes_advance_at_clean", "depth": 1, "n_commands": 0, "n_lines": 5, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n have h := rlp_decode_shortBytes_advance_at pfx rest bs O v10 v11Old v12Old v14Old regionBase\n of...
[ { "name": "rlp_decode_shortBytes_advance_at", "text": "/-- **Validating shortBytes decode-and-advance** (one field step of the untrusted walk, F1 of\n #9373). Runs the offset-general validating shortBytes decoder at byte offset `O`\n (`rlp_decode_shortBytes_validated_at`) and, on its SUCCESS (taken) e...
[ { "name": "rlp_decode_shortBytes_advance_at_clean", "fan_in": 0, "n_deps_direct": 2, "n_deps_transitive": 2, "n_lines": 66, "n_chars": 4017, "n_subproofs": 1, "n_tactics": 5, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 1, "n_structural": 1, "automation_only"...
2
/- EvmAsm.Rv64.RLP.ValidatingFieldWalk Composition glue for the untrusted RLP field walker (F1 of the verified guest-decoder plan, #9373). The validating single-item decoders are 2-exit `cpsBranchWithin`s whose SUCCESS is the *taken* exit and FAIL the fall-through. To advance to the next field after a successf...
/- EvmAsm.Rv64.RLP.ValidatingFieldWalk Composition glue for the untrusted RLP field walker (F1 of the verified guest-decoder plan, #9373). The validating single-item decoders are 2-exit `cpsBranchWithin`s whose SUCCESS is the *taken* exit and FAIL the fall-through. To advance to the next field after a successf...
@@ -21,6 +21,117 @@ open EvmAsm.EL.RLP open EvmAsm.Rv64.Tactics +/-- **Validating shortBytes decode-and-advance** (one field step of the untrusted walk, F1 of + #9373). Runs the offset-general validating shortBytes decoder at byte offset `O` + (`rlp_decode_shortBytes_validated_at`) and, on its SUCCESS (taken)...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_30619a2c57d5_0
9e4e4bd779af7ae3
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/SDiv/Compose/DispatchReadyPost.lean
DispatchReadyPost
0
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
1
1
[ { "theorem_name": "saveRaDivCallDispatchReadyPost_pcFree", "depth": 1, "n_commands": 0, "n_lines": 6, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [saveRaDivCallDispatchReadyPost_unfold]\n dsimp\n rw [EvmAsm.Evm64.divModStackDispatchPreNoX1_un...
[ { "name": "saveRaDivCallDispatchReadyPost_unfold", "text": "theorem saveRaDivCallDispatchReadyPost_unfold\n {vRa sp base : Word}\n {dividendLimb0 dividendLimb1 dividendLimb2 dividendTop\n divisorLimb0 divisorLimb1 divisorLimb2 divisorTop : Word}\n {v2 v5 v6 : Word}\n {q0 q1 q2 q3 u0 u1 u2 u...
[ { "name": "saveRaDivCallDispatchReadyPost_pcFree", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 17, "n_chars": 740, "n_subproofs": 0, "n_tactics": 6, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 2, "n_structural": 0, "automation_only": ...
1
/- EvmAsm.Evm64.SDiv.Compose.DispatchReadyPost Named postcondition consumed by the unsigned DIV callable after the SDIV prefix has normalized signs and absolute values. -/ import EvmAsm.Evm64.DivMod.Spec.Dispatcher import EvmAsm.Evm64.SDiv.Compose.BaseOffsets import EvmAsm.Evm64.SDiv.Compose.SignFrame import Ev...
/- EvmAsm.Evm64.SDiv.Compose.DispatchReadyPost Named postcondition consumed by the unsigned DIV callable after the SDIV prefix has normalized signs and absolute values. -/ import EvmAsm.Evm64.DivMod.Spec.Dispatcher import EvmAsm.Evm64.SDiv.Compose.BaseOffsets import EvmAsm.Evm64.SDiv.Compose.SignFrame import Ev...
@@ -49,6 +49,42 @@ shiftMem nMem jMem retMem dMem dloMem scratchUn0 ** ((.x8 ↦ᵣ resultSign) ** (.x18 ↦ᵣ (vRa + EvmAsm.Rv64.signExtend12 (0 : BitVec 12)))) +theorem saveRaDivCallDispatchReadyPost_unfold + {vRa sp base : Word} + {dividendLimb0 dividendLimb1 dividendLimb2 dividendTop + divisorLimb...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_4208382ab454_0
e962998814b8e042
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/EvmWordArith/DivBridge.lean
DivBridge
0
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
4
2
[ { "theorem_name": "div_of_nat_euclidean", "depth": 1, "n_commands": 0, "n_lines": 5, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": "\n div_eq_of_euclidean hbnz\n (bv_eq_of_nat_eq h_nat_eq)\n (bv_lt_of_nat_lt h_nat_lt)\n (by have := a.isLt; omega)"...
[ { "name": "bv_eq_of_nat_eq", "text": "/-- If the Nat-level equation `a = b * q + r` holds and `a < 2^256`,\n then the BitVec-level equation `a = b * q + r` holds (no overflow). -/\ntheorem bv_eq_of_nat_eq {a b q r : EvmWord}\n (h_nat : a.toNat = b.toNat * q.toNat + r.toNat) :\n a = b * q + r := by\...
[ { "name": "div_of_nat_euclidean", "fan_in": 1, "n_deps_direct": 2, "n_deps_transitive": 2, "n_lines": 16, "n_chars": 640, "n_subproofs": 1, "n_tactics": 5, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 0, "n_structural": 0, "automation_only": false, "max_n...
2
/- EvmAsm.Evm64.EvmWordArith.DivBridge Master bridge theorems connecting Nat-level Euclidean properties to EvmWord.div/mod correctness. These are the final lemmas needed to prove the algorithm's output equals BitVec.udiv/umod. Key theorems: - bv_eq_of_nat_eq: Nat equation → BitVec equation (auto no-overfl...
/- EvmAsm.Evm64.EvmWordArith.DivBridge Master bridge theorems connecting Nat-level Euclidean properties to EvmWord.div/mod correctness. These are the final lemmas needed to prove the algorithm's output equals BitVec.udiv/umod. Key theorems: - bv_eq_of_nat_eq: Nat equation → BitVec equation (auto no-overfl...
@@ -23,6 +23,18 @@ -- Nat → BitVec bridge -- ============================================================================ +/-- If the Nat-level equation `a = b * q + r` holds and `a < 2^256`, + then the BitVec-level equation `a = b * q + r` holds (no overflow). -/ +theorem bv_eq_of_nat_eq {a b q r : EvmWord} + ...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_4208382ab454_1
1dca51df31ebec65
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/EvmWordArith/DivBridge.lean
DivBridge
1
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
4
2
[ { "theorem_name": "div_of_nat_euclidean", "depth": 1, "n_commands": 0, "n_lines": 5, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": "\n div_eq_of_euclidean hbnz\n (bv_eq_of_nat_eq h_nat_eq)\n (bv_lt_of_nat_lt h_nat_lt)\n (by have := a.isLt; omega)"...
[ { "name": "bv_eq_of_nat_eq", "text": "/-- If the Nat-level equation `a = b * q + r` holds and `a < 2^256`,\n then the BitVec-level equation `a = b * q + r` holds (no overflow). -/\ntheorem bv_eq_of_nat_eq {a b q r : EvmWord}\n (h_nat : a.toNat = b.toNat * q.toNat + r.toNat) :\n a = b * q + r := by\...
[ { "name": "mod_of_nat_euclidean", "fan_in": 1, "n_deps_direct": 2, "n_deps_transitive": 2, "n_lines": 16, "n_chars": 650, "n_subproofs": 1, "n_tactics": 5, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 0, "n_structural": 0, "automation_only": false, "max_n...
2
/- EvmAsm.Evm64.EvmWordArith.DivBridge Master bridge theorems connecting Nat-level Euclidean properties to EvmWord.div/mod correctness. These are the final lemmas needed to prove the algorithm's output equals BitVec.udiv/umod. Key theorems: - bv_eq_of_nat_eq: Nat equation → BitVec equation (auto no-overfl...
/- EvmAsm.Evm64.EvmWordArith.DivBridge Master bridge theorems connecting Nat-level Euclidean properties to EvmWord.div/mod correctness. These are the final lemmas needed to prove the algorithm's output equals BitVec.udiv/umod. Key theorems: - bv_eq_of_nat_eq: Nat equation → BitVec equation (auto no-overfl...
@@ -23,6 +23,18 @@ -- Nat → BitVec bridge -- ============================================================================ +/-- If the Nat-level equation `a = b * q + r` holds and `a < 2^256`, + then the BitVec-level equation `a = b * q + r` holds (no overflow). -/ +theorem bv_eq_of_nat_eq {a b q r : EvmWord} + ...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_4208382ab454_2
3038ad95d910f4fd
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/EvmWordArith/DivBridge.lean
DivBridge
2
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
4
2
[ { "theorem_name": "div_of_nat_euclidean", "depth": 1, "n_commands": 0, "n_lines": 5, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": "\n div_eq_of_euclidean hbnz\n (bv_eq_of_nat_eq h_nat_eq)\n (bv_lt_of_nat_lt h_nat_lt)\n (by have := a.isLt; omega)"...
[ { "name": "bv_eq_of_nat_eq", "text": "/-- If the Nat-level equation `a = b * q + r` holds and `a < 2^256`,\n then the BitVec-level equation `a = b * q + r` holds (no overflow). -/\ntheorem bv_eq_of_nat_eq {a b q r : EvmWord}\n (h_nat : a.toNat = b.toNat * q.toNat + r.toNat) :\n a = b * q + r := by\...
[ { "name": "div_from_mulsub", "fan_in": 0, "n_deps_direct": 2, "n_deps_transitive": 4, "n_lines": 13, "n_chars": 550, "n_subproofs": 0, "n_tactics": 2, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 0, "n_structural": 0, "automation_only": false, "max_nestin...
4
/- EvmAsm.Evm64.EvmWordArith.DivBridge Master bridge theorems connecting Nat-level Euclidean properties to EvmWord.div/mod correctness. These are the final lemmas needed to prove the algorithm's output equals BitVec.udiv/umod. Key theorems: - bv_eq_of_nat_eq: Nat equation → BitVec equation (auto no-overfl...
/- EvmAsm.Evm64.EvmWordArith.DivBridge Master bridge theorems connecting Nat-level Euclidean properties to EvmWord.div/mod correctness. These are the final lemmas needed to prove the algorithm's output equals BitVec.udiv/umod. Key theorems: - bv_eq_of_nat_eq: Nat equation → BitVec equation (auto no-overfl...
@@ -23,6 +23,18 @@ -- Nat → BitVec bridge -- ============================================================================ +/-- If the Nat-level equation `a = b * q + r` holds and `a < 2^256`, + then the BitVec-level equation `a = b * q + r` holds (no overflow). -/ +theorem bv_eq_of_nat_eq {a b q r : EvmWord} + ...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_0c3a656b6d05_0
24b2333c2613d241
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Rv64/SAsm/AccumLoop.lean
AccumLoop
0
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
6
1
[ { "theorem_name": "xorAcc_eq_zero_iff", "depth": 1, "n_commands": 0, "n_lines": 19, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n induction N with\n | zero =>\n constructor\n · intro _ j hj\n exact absurd hj (Nat.not_lt_zero j)\n ...
[ { "name": "xor_eq_zero_iff", "text": "private theorem xor_eq_zero_iff (a b : Word) : (a ^^^ b) = 0 ↔ a = b := by\n constructor\n · intro h\n apply BitVec.eq_of_getLsbD_eq\n intro i _hi\n have hbit := congrArg (fun w : Word => w.getLsbD i) h\n simp only [BitVec.getLsbD_xor] at hbit\n simp on...
[ { "name": "xorAcc_eq_zero_iff", "fan_in": 1, "n_deps_direct": 3, "n_deps_transitive": 3, "n_lines": 26, "n_chars": 756, "n_subproofs": 1, "n_tactics": 19, "cyclomatic": 5, "n_automation": 4, "n_rewrites": 2, "n_structural": 11, "automation_only": false, "max_n...
3
/- EvmAsm.Rv64.SAsm.AccumLoop The **single-exit accumulate loop** (bead evm-asm-pr5lu). `DualReadScan` (#10038) covers early-exit dual-read equality scans; `bloom_eq` is the SINGLE-EXIT variant: a constant-cycle XOR/OR accumulate over two buffers (no early exit — timing invariance), with the verdict deriv...
/- EvmAsm.Rv64.SAsm.AccumLoop The **single-exit accumulate loop** (bead evm-asm-pr5lu). `DualReadScan` (#10038) covers early-exit dual-read equality scans; `bloom_eq` is the SINGLE-EXIT variant: a constant-cycle XOR/OR accumulate over two buffers (no early exit — timing invariance), with the verdict deriv...
@@ -86,6 +86,20 @@ · rintro ⟨rfl, rfl⟩ simp +private theorem xor_eq_zero_iff (a b : Word) : (a ^^^ b) = 0 ↔ a = b := by + constructor + · intro h + apply BitVec.eq_of_getLsbD_eq + intro i _hi + have hbit := congrArg (fun w : Word => w.getLsbD i) h + simp only [BitVec.getLsbD_xor] at hbit + si...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_0c3a656b6d05_1
79e3eb0d8ec9e353
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Rv64/SAsm/AccumLoop.lean
AccumLoop
1
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
6
1
[ { "theorem_name": "xorAcc_eq_zero_iff", "depth": 1, "n_commands": 0, "n_lines": 19, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n induction N with\n | zero =>\n constructor\n · intro _ j hj\n exact absurd hj (Nat.not_lt_zero j)\n ...
[ { "name": "xor_eq_zero_iff", "text": "private theorem xor_eq_zero_iff (a b : Word) : (a ^^^ b) = 0 ↔ a = b := by\n constructor\n · intro h\n apply BitVec.eq_of_getLsbD_eq\n intro i _hi\n have hbit := congrArg (fun w : Word => w.getLsbD i) h\n simp only [BitVec.getLsbD_xor] at hbit\n simp on...
[ { "name": "xorAcc_eq_zero_iff_bytes_eq", "fan_in": 1, "n_deps_direct": 1, "n_deps_transitive": 4, "n_lines": 14, "n_chars": 575, "n_subproofs": 0, "n_tactics": 6, "cyclomatic": 2, "n_automation": 0, "n_rewrites": 1, "n_structural": 4, "automation_only": false, ...
4
/- EvmAsm.Rv64.SAsm.AccumLoop The **single-exit accumulate loop** (bead evm-asm-pr5lu). `DualReadScan` (#10038) covers early-exit dual-read equality scans; `bloom_eq` is the SINGLE-EXIT variant: a constant-cycle XOR/OR accumulate over two buffers (no early exit — timing invariance), with the verdict deriv...
/- EvmAsm.Rv64.SAsm.AccumLoop The **single-exit accumulate loop** (bead evm-asm-pr5lu). `DualReadScan` (#10038) covers early-exit dual-read equality scans; `bloom_eq` is the SINGLE-EXIT variant: a constant-cycle XOR/OR accumulate over two buffers (no early exit — timing invariance), with the verdict deriv...
@@ -86,6 +86,20 @@ · rintro ⟨rfl, rfl⟩ simp +private theorem xor_eq_zero_iff (a b : Word) : (a ^^^ b) = 0 ↔ a = b := by + constructor + · intro h + apply BitVec.eq_of_getLsbD_eq + intro i _hi + have hbit := congrArg (fun w : Word => w.getLsbD i) h + simp only [BitVec.getLsbD_xor] at hbit + si...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_0c3a656b6d05_2
194059bbd24c3f34
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Rv64/SAsm/AccumLoop.lean
AccumLoop
2
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
6
1
[ { "theorem_name": "xorAcc_eq_zero_iff_bytes_eq", "depth": 1, "n_commands": 0, "n_lines": 6, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [xorAcc_eq_zero_iff]\n constructor\n · exact bytes_eq_of_dwordSlots_eq N bsA bsB hlenA hlenB\n · intro h ...
[ { "name": "xorAcc_eq_zero_iff", "text": "/-- The accumulator → per-slot bridge: zero after `N` slots iff every\n slot pair matched. -/\ntheorem xorAcc_eq_zero_iff (bsA bsB : List (BitVec 8)) (N : Nat) :\n xorAcc bsA bsB N = 0\n ↔ ∀ j, j < N →\n dwordSlot bsA j = dwordSlot bsB j := by\n ...
[ { "name": "bytesRegion_ld_cursor_within", "fan_in": 0, "n_deps_direct": 2, "n_deps_transitive": 6, "n_lines": 31, "n_chars": 1477, "n_subproofs": 2, "n_tactics": 16, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 4, "n_structural": 2, "automation_only": false, ...
6
/- EvmAsm.Rv64.SAsm.AccumLoop The **single-exit accumulate loop** (bead evm-asm-pr5lu). `DualReadScan` (#10038) covers early-exit dual-read equality scans; `bloom_eq` is the SINGLE-EXIT variant: a constant-cycle XOR/OR accumulate over two buffers (no early exit — timing invariance), with the verdict deriv...
/- EvmAsm.Rv64.SAsm.AccumLoop The **single-exit accumulate loop** (bead evm-asm-pr5lu). `DualReadScan` (#10038) covers early-exit dual-read equality scans; `bloom_eq` is the SINGLE-EXIT variant: a constant-cycle XOR/OR accumulate over two buffers (no early exit — timing invariance), with the verdict deriv...
@@ -113,13 +113,43 @@ · rintro rfl simp +/-- The accumulator → per-slot bridge: zero after `N` slots iff every + slot pair matched. -/ +theorem xorAcc_eq_zero_iff (bsA bsB : List (BitVec 8)) (N : Nat) : + xorAcc bsA bsB N = 0 + ↔ ∀ j, j < N → + dwordSlot bsA j = dwordSlot bsB j := by + in...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_b07b2e06e4ab_0
0e87cb4e316055a0
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/EL/Bls12G2PrecompileResultBridge.lean
Bls12G2PrecompileResultBridge
0
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
10
1
[ { "theorem_name": "paddedG2PointChunkBytes_length", "depth": 1, "n_commands": 0, "n_lines": 2, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n simp [paddedG2PointChunkBytes, zeroPad16_length, g2PointChunkBytes_length]", "n_chars": 80, "n_subpr...
[ { "name": "zeroPad16_length", "text": "theorem zeroPad16_length : zeroPad16.length = 16 := by\n simp [zeroPad16]\n\n", "fan_in": 1, "n_lines": 4, "n_chars": 75, "n_subproofs": 0, "n_tactics": 2, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 0, "n_structural": 0, ...
[ { "name": "paddedG2PointChunkBytes_length", "fan_in": 1, "n_deps_direct": 2, "n_deps_transitive": 2, "n_lines": 5, "n_chars": 222, "n_subproofs": 0, "n_tactics": 2, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 0, "n_structural": 0, "automation_only": true, ...
2
/- EvmAsm.EL.Bls12G2PrecompileResultBridge Bridge from BLS12-381 G2 accelerator ECALL results to EVM precompile results. Authored by @pirapira; implemented by Codex. -/ import EvmAsm.EL.Bls12G2AddEcallBridge import EvmAsm.EL.Bls12G2MsmEcallBridge import EvmAsm.Evm64.PrecompileResult namespace EvmAsm.EL names...
/- EvmAsm.EL.Bls12G2PrecompileResultBridge Bridge from BLS12-381 G2 accelerator ECALL results to EVM precompile results. Authored by @pirapira; implemented by Codex. -/ import EvmAsm.EL.Bls12G2AddEcallBridge import EvmAsm.EL.Bls12G2MsmEcallBridge import EvmAsm.Evm64.PrecompileResult namespace EvmAsm.EL names...
@@ -61,12 +61,16 @@ def msmGasRemaining (input : EvmAsm.Evm64.PrecompileInput) (cost : Nat) : Nat := input.gas - cost +theorem zeroPad16_length : zeroPad16.length = 16 := by + simp [zeroPad16] + theorem g2PointChunkBytes_length (point : Fin 192 → Byte) (chunk : Fin 4) : (g2PointChunkBytes point chunk).leng...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_b07b2e06e4ab_1
49ef09590a125480
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/EL/Bls12G2PrecompileResultBridge.lean
Bls12G2PrecompileResultBridge
1
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
10
1
[ { "theorem_name": "paddedG2PointChunkBytes_length", "depth": 1, "n_commands": 0, "n_lines": 2, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n simp [paddedG2PointChunkBytes, zeroPad16_length, g2PointChunkBytes_length]", "n_chars": 80, "n_subpr...
[ { "name": "zeroPad16_length", "text": "theorem zeroPad16_length : zeroPad16.length = 16 := by\n simp [zeroPad16]\n\n", "fan_in": 1, "n_lines": 4, "n_chars": 75, "n_subproofs": 0, "n_tactics": 2, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 0, "n_structural": 0, ...
[ { "name": "evmG2PointBytes_length", "fan_in": 2, "n_deps_direct": 1, "n_deps_transitive": 3, "n_lines": 5, "n_chars": 165, "n_subproofs": 0, "n_tactics": 2, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 0, "n_structural": 0, "automation_only": true, "max_n...
3
/- EvmAsm.EL.Bls12G2PrecompileResultBridge Bridge from BLS12-381 G2 accelerator ECALL results to EVM precompile results. Authored by @pirapira; implemented by Codex. -/ import EvmAsm.EL.Bls12G2AddEcallBridge import EvmAsm.EL.Bls12G2MsmEcallBridge import EvmAsm.Evm64.PrecompileResult namespace EvmAsm.EL names...
/- EvmAsm.EL.Bls12G2PrecompileResultBridge Bridge from BLS12-381 G2 accelerator ECALL results to EVM precompile results. Authored by @pirapira; implemented by Codex. -/ import EvmAsm.EL.Bls12G2AddEcallBridge import EvmAsm.EL.Bls12G2MsmEcallBridge import EvmAsm.Evm64.PrecompileResult namespace EvmAsm.EL names...
@@ -61,12 +61,16 @@ def msmGasRemaining (input : EvmAsm.Evm64.PrecompileInput) (cost : Nat) : Nat := input.gas - cost +theorem zeroPad16_length : zeroPad16.length = 16 := by + simp [zeroPad16] + theorem g2PointChunkBytes_length (point : Fin 192 → Byte) (chunk : Fin 4) : (g2PointChunkBytes point chunk).leng...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_b07b2e06e4ab_2
92647da37a9f4836
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/EL/Bls12G2PrecompileResultBridge.lean
Bls12G2PrecompileResultBridge
2
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
10
1
[ { "theorem_name": "paddedG2PointChunkBytes_length", "depth": 1, "n_commands": 0, "n_lines": 2, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n simp [paddedG2PointChunkBytes, zeroPad16_length, g2PointChunkBytes_length]", "n_chars": 80, "n_subpr...
[ { "name": "zeroPad16_length", "text": "theorem zeroPad16_length : zeroPad16.length = 16 := by\n simp [zeroPad16]\n\n", "fan_in": 1, "n_lines": 4, "n_chars": 75, "n_subproofs": 0, "n_tactics": 2, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 0, "n_structural": 0, ...
[ { "name": "addOutputBytes_length", "fan_in": 1, "n_deps_direct": 1, "n_deps_transitive": 4, "n_lines": 5, "n_chars": 178, "n_subproofs": 0, "n_tactics": 2, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 0, "n_structural": 0, "automation_only": true, "max_ne...
4
/- EvmAsm.EL.Bls12G2PrecompileResultBridge Bridge from BLS12-381 G2 accelerator ECALL results to EVM precompile results. Authored by @pirapira; implemented by Codex. -/ import EvmAsm.EL.Bls12G2AddEcallBridge import EvmAsm.EL.Bls12G2MsmEcallBridge import EvmAsm.Evm64.PrecompileResult namespace EvmAsm.EL names...
/- EvmAsm.EL.Bls12G2PrecompileResultBridge Bridge from BLS12-381 G2 accelerator ECALL results to EVM precompile results. Authored by @pirapira; implemented by Codex. -/ import EvmAsm.EL.Bls12G2AddEcallBridge import EvmAsm.EL.Bls12G2MsmEcallBridge import EvmAsm.Evm64.PrecompileResult namespace EvmAsm.EL names...
@@ -61,12 +61,16 @@ def msmGasRemaining (input : EvmAsm.Evm64.PrecompileInput) (cost : Nat) : Nat := input.gas - cost +theorem zeroPad16_length : zeroPad16.length = 16 := by + simp [zeroPad16] + theorem g2PointChunkBytes_length (point : Fin 192 → Byte) (chunk : Fin 4) : (g2PointChunkBytes point chunk).leng...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_b07b2e06e4ab_3
0f7ea6cbcfb7345e
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/EL/Bls12G2PrecompileResultBridge.lean
Bls12G2PrecompileResultBridge
3
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
10
1
[ { "theorem_name": "paddedG2PointChunkBytes_length", "depth": 1, "n_commands": 0, "n_lines": 2, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n simp [paddedG2PointChunkBytes, zeroPad16_length, g2PointChunkBytes_length]", "n_chars": 80, "n_subpr...
[ { "name": "zeroPad16_length", "text": "theorem zeroPad16_length : zeroPad16.length = 16 := by\n simp [zeroPad16]\n\n", "fan_in": 1, "n_lines": 4, "n_chars": 75, "n_subproofs": 0, "n_tactics": 2, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 0, "n_structural": 0, ...
[ { "name": "msmOutputBytes_length", "fan_in": 1, "n_deps_direct": 1, "n_deps_transitive": 4, "n_lines": 5, "n_chars": 178, "n_subproofs": 0, "n_tactics": 2, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 0, "n_structural": 0, "automation_only": true, "max_ne...
4
/- EvmAsm.EL.Bls12G2PrecompileResultBridge Bridge from BLS12-381 G2 accelerator ECALL results to EVM precompile results. Authored by @pirapira; implemented by Codex. -/ import EvmAsm.EL.Bls12G2AddEcallBridge import EvmAsm.EL.Bls12G2MsmEcallBridge import EvmAsm.Evm64.PrecompileResult namespace EvmAsm.EL names...
/- EvmAsm.EL.Bls12G2PrecompileResultBridge Bridge from BLS12-381 G2 accelerator ECALL results to EVM precompile results. Authored by @pirapira; implemented by Codex. -/ import EvmAsm.EL.Bls12G2AddEcallBridge import EvmAsm.EL.Bls12G2MsmEcallBridge import EvmAsm.Evm64.PrecompileResult namespace EvmAsm.EL names...
@@ -61,12 +61,16 @@ def msmGasRemaining (input : EvmAsm.Evm64.PrecompileInput) (cost : Nat) : Nat := input.gas - cost +theorem zeroPad16_length : zeroPad16.length = 16 := by + simp [zeroPad16] + theorem g2PointChunkBytes_length (point : Fin 192 → Byte) (chunk : Fin 4) : (g2PointChunkBytes point chunk).leng...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_b07b2e06e4ab_4
5a7536dbd482e5f6
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/EL/Bls12G2PrecompileResultBridge.lean
Bls12G2PrecompileResultBridge
4
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
10
1
[ { "theorem_name": "paddedG2PointChunkBytes_length", "depth": 1, "n_commands": 0, "n_lines": 2, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n simp [paddedG2PointChunkBytes, zeroPad16_length, g2PointChunkBytes_length]", "n_chars": 80, "n_subpr...
[ { "name": "g2PointChunkBytes_length", "text": "theorem g2PointChunkBytes_length (point : Fin 192 → Byte) (chunk : Fin 4) :\n (g2PointChunkBytes point chunk).length = 48 := by\n simp [g2PointChunkBytes]\n\n", "fan_in": 1, "n_lines": 5, "n_chars": 160, "n_subproofs": 0, "n_tactics": 2,...
[ { "name": "fromAddResult_output_length", "fan_in": 0, "n_deps_direct": 2, "n_deps_transitive": 6, "n_lines": 8, "n_chars": 283, "n_subproofs": 0, "n_tactics": 3, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 1, "n_structural": 0, "automation_only": false, ...
6
/- EvmAsm.EL.Bls12G2PrecompileResultBridge Bridge from BLS12-381 G2 accelerator ECALL results to EVM precompile results. Authored by @pirapira; implemented by Codex. -/ import EvmAsm.EL.Bls12G2AddEcallBridge import EvmAsm.EL.Bls12G2MsmEcallBridge import EvmAsm.Evm64.PrecompileResult namespace EvmAsm.EL names...
/- EvmAsm.EL.Bls12G2PrecompileResultBridge Bridge from BLS12-381 G2 accelerator ECALL results to EVM precompile results. Authored by @pirapira; implemented by Codex. -/ import EvmAsm.EL.Bls12G2AddEcallBridge import EvmAsm.EL.Bls12G2MsmEcallBridge import EvmAsm.Evm64.PrecompileResult namespace EvmAsm.EL names...
@@ -64,8 +64,13 @@ theorem zeroPad16_length : zeroPad16.length = 16 := by simp [zeroPad16] +theorem g2PointChunkBytes_length (point : Fin 192 → Byte) (chunk : Fin 4) : + (g2PointChunkBytes point chunk).length = 48 := by + simp [g2PointChunkBytes] + theorem paddedG2PointChunkBytes_length (point : Fin 192 → By...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_b07b2e06e4ab_5
680d861d5bce1136
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/EL/Bls12G2PrecompileResultBridge.lean
Bls12G2PrecompileResultBridge
5
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
10
1
[ { "theorem_name": "paddedG2PointChunkBytes_length", "depth": 1, "n_commands": 0, "n_lines": 2, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n simp [paddedG2PointChunkBytes, zeroPad16_length, g2PointChunkBytes_length]", "n_chars": 80, "n_subpr...
[ { "name": "g2PointChunkBytes_length", "text": "theorem g2PointChunkBytes_length (point : Fin 192 → Byte) (chunk : Fin 4) :\n (g2PointChunkBytes point chunk).length = 48 := by\n simp [g2PointChunkBytes]\n\n", "fan_in": 1, "n_lines": 5, "n_chars": 160, "n_subproofs": 0, "n_tactics": 2,...
[ { "name": "fromMsmResult_output_length", "fan_in": 0, "n_deps_direct": 2, "n_deps_transitive": 6, "n_lines": 8, "n_chars": 283, "n_subproofs": 0, "n_tactics": 3, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 1, "n_structural": 0, "automation_only": false, ...
6
/- EvmAsm.EL.Bls12G2PrecompileResultBridge Bridge from BLS12-381 G2 accelerator ECALL results to EVM precompile results. Authored by @pirapira; implemented by Codex. -/ import EvmAsm.EL.Bls12G2AddEcallBridge import EvmAsm.EL.Bls12G2MsmEcallBridge import EvmAsm.Evm64.PrecompileResult namespace EvmAsm.EL names...
/- EvmAsm.EL.Bls12G2PrecompileResultBridge Bridge from BLS12-381 G2 accelerator ECALL results to EVM precompile results. Authored by @pirapira; implemented by Codex. -/ import EvmAsm.EL.Bls12G2AddEcallBridge import EvmAsm.EL.Bls12G2MsmEcallBridge import EvmAsm.Evm64.PrecompileResult namespace EvmAsm.EL names...
@@ -64,8 +64,13 @@ theorem zeroPad16_length : zeroPad16.length = 16 := by simp [zeroPad16] +theorem g2PointChunkBytes_length (point : Fin 192 → Byte) (chunk : Fin 4) : + (g2PointChunkBytes point chunk).length = 48 := by + simp [g2PointChunkBytes] + theorem paddedG2PointChunkBytes_length (point : Fin 192 → By...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_b07b2e06e4ab_6
e4b7704565a571d5
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/EL/Bls12G2PrecompileResultBridge.lean
Bls12G2PrecompileResultBridge
6
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
10
1
[ { "theorem_name": "fromAddResult_failure_output_length", "depth": 1, "n_commands": 0, "n_lines": 3, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [fromAddResult_efail h_status]\n rfl", "n_chars": 45, "n_subproofs": 0, "n_tactics": 3,...
[ { "name": "fromAddResult_efail", "text": "theorem fromAddResult_efail\n {gasRemaining : Nat} {result : Bls12G2AddEcallBridge.Bls12G2AddResult}\n (h_status : result.status = .efail) :\n fromAddResult gasRemaining result = EvmAsm.Evm64.PrecompileResult.fail gasRemaining := by\n simp [fromAddResult, ...
[ { "name": "fromAddResult_failure_output_length", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 8, "n_chars": 276, "n_subproofs": 0, "n_tactics": 3, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 1, "n_structural": 0, "automation_only": fal...
1
/- EvmAsm.EL.Bls12G2PrecompileResultBridge Bridge from BLS12-381 G2 accelerator ECALL results to EVM precompile results. Authored by @pirapira; implemented by Codex. -/ import EvmAsm.EL.Bls12G2AddEcallBridge import EvmAsm.EL.Bls12G2MsmEcallBridge import EvmAsm.Evm64.PrecompileResult namespace EvmAsm.EL names...
/- EvmAsm.EL.Bls12G2PrecompileResultBridge Bridge from BLS12-381 G2 accelerator ECALL results to EVM precompile results. Authored by @pirapira; implemented by Codex. -/ import EvmAsm.EL.Bls12G2AddEcallBridge import EvmAsm.EL.Bls12G2MsmEcallBridge import EvmAsm.Evm64.PrecompileResult namespace EvmAsm.EL names...
@@ -61,6 +61,12 @@ def msmGasRemaining (input : EvmAsm.Evm64.PrecompileInput) (cost : Nat) : Nat := input.gas - cost +theorem fromAddResult_efail + {gasRemaining : Nat} {result : Bls12G2AddEcallBridge.Bls12G2AddResult} + (h_status : result.status = .efail) : + fromAddResult gasRemaining result = EvmAsm.E...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_b07b2e06e4ab_7
5be21f1363eb1bca
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/EL/Bls12G2PrecompileResultBridge.lean
Bls12G2PrecompileResultBridge
7
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
10
1
[ { "theorem_name": "fromMsmResult_failure_output_length", "depth": 1, "n_commands": 0, "n_lines": 3, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [fromMsmResult_efail h_status]\n rfl", "n_chars": 45, "n_subproofs": 0, "n_tactics": 3,...
[ { "name": "fromMsmResult_efail", "text": "theorem fromMsmResult_efail\n {gasRemaining : Nat} {result : Bls12G2MsmEcallBridge.Bls12G2MsmResult}\n (h_status : result.status = .efail) :\n fromMsmResult gasRemaining result = EvmAsm.Evm64.PrecompileResult.fail gasRemaining := by\n simp [fromMsmResult, ...
[ { "name": "fromMsmResult_failure_output_length", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 8, "n_chars": 276, "n_subproofs": 0, "n_tactics": 3, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 1, "n_structural": 0, "automation_only": fal...
1
/- EvmAsm.EL.Bls12G2PrecompileResultBridge Bridge from BLS12-381 G2 accelerator ECALL results to EVM precompile results. Authored by @pirapira; implemented by Codex. -/ import EvmAsm.EL.Bls12G2AddEcallBridge import EvmAsm.EL.Bls12G2MsmEcallBridge import EvmAsm.Evm64.PrecompileResult namespace EvmAsm.EL names...
/- EvmAsm.EL.Bls12G2PrecompileResultBridge Bridge from BLS12-381 G2 accelerator ECALL results to EVM precompile results. Authored by @pirapira; implemented by Codex. -/ import EvmAsm.EL.Bls12G2AddEcallBridge import EvmAsm.EL.Bls12G2MsmEcallBridge import EvmAsm.Evm64.PrecompileResult namespace EvmAsm.EL names...
@@ -67,6 +67,12 @@ fromAddResult gasRemaining result = EvmAsm.Evm64.PrecompileResult.fail gasRemaining := by simp [fromAddResult, h_status] +theorem fromMsmResult_efail + {gasRemaining : Nat} {result : Bls12G2MsmEcallBridge.Bls12G2MsmResult} + (h_status : result.status = .efail) : + fromMsmResult gas...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_9bbdf7b4deeb_0
7ea1dd09826f38d4
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Rv64/RLP/UnifiedListLoop.lean
UnifiedListLoop
0
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
6
1
[ { "theorem_name": "regionLongWindow_of_split", "depth": 1, "n_commands": 0, "n_lines": 31, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rcases flat_or_long head with hflat | hlong\n · rcases classifyPrefix_encode_head_flat head hflat with h | h | ...
[ { "name": "classify_bytes_long", "text": "/-- A long byte-string's encoding head classifies as `longBytes`. -/\nprivate theorem classify_bytes_long {data : List Byte} (hlong : 55 < data.length)\n (hsize : data.length < 256 ^ 8) :\n classifyPrefix ((encode (.bytes data))[0]'(encode_nonempty _)) = .long...
[ { "name": "regionLongWindow_of_split", "fan_in": 1, "n_deps_direct": 2, "n_deps_transitive": 2, "n_lines": 45, "n_chars": 2623, "n_subproofs": 12, "n_tactics": 37, "cyclomatic": 5, "n_automation": 12, "n_rewrites": 5, "n_structural": 11, "automation_only": false, ...
2
/- EvmAsm.Rv64.RLP.UnifiedListLoop EL.3 — the UNIFIED (all-class) RLP list-decode loop closure + bridge: the long-item-capable analog of the flat `fll_loop_*` (`FlatListLoop.lean`). `unified_loop_spec_within` is the n-iteration closure (structural induction over a list of arbitrary RLP items, threading the ...
/- EvmAsm.Rv64.RLP.UnifiedListLoop EL.3 — the UNIFIED (all-class) RLP list-decode loop closure + bridge: the long-item-capable analog of the flat `fll_loop_*` (`FlatListLoop.lean`). `unified_loop_spec_within` is the n-iteration closure (structural induction over a list of arbitrary RLP items, threading the ...
@@ -89,6 +89,26 @@ (.x13 ↦ᵣ itemPtrRegion (bs[i]'hi) regionBase i) ** (.x14 ↦ᵣ itemX14 (bs[i]'hi) v14) ** bytesRegion regionBase bs) +/-- A long byte-string's encoding head classifies as `longBytes`. -/ +private theorem classify_bytes_long {data : List Byte} (hlong : 55 < data.length) + (hsize : da...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_9bbdf7b4deeb_1
82fdc5c34bbb748f
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Rv64/RLP/UnifiedListLoop.lean
UnifiedListLoop
1
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
6
1
[ { "theorem_name": "unified_loop_spec_within", "depth": 1, "n_commands": 0, "n_lines": 135, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n intro items\n induction items with\n | nil => intro O v5Old v10 v11Old v12Old v14Old hne _ _; exact absurd rfl...
[ { "name": "unified_loop_post_unfold", "text": "theorem unified_loop_post_unfold (regionBase : Word) (bs : List (BitVec 8)) (endPtr : Word) :\n unified_loop_post regionBase bs endPtr =\n (regOwn .x5 ** (.x0 ↦ᵣ (0 : Word)) ** regOwn .x10 ** regOwn .x11 ** regOwn .x12 **\n (.x13 ↦ᵣ endPtr) ** regOwn...
[ { "name": "unified_loop_spec_within", "fan_in": 1, "n_deps_direct": 2, "n_deps_transitive": 4, "n_lines": 169, "n_chars": 10461, "n_subproofs": 30, "n_tactics": 143, "cyclomatic": 5, "n_automation": 28, "n_rewrites": 22, "n_structural": 15, "automation_only": fals...
4
/- EvmAsm.Rv64.RLP.UnifiedListLoop EL.3 — the UNIFIED (all-class) RLP list-decode loop closure + bridge: the long-item-capable analog of the flat `fll_loop_*` (`FlatListLoop.lean`). `unified_loop_spec_within` is the n-iteration closure (structural induction over a list of arbitrary RLP items, threading the ...
/- EvmAsm.Rv64.RLP.UnifiedListLoop EL.3 — the UNIFIED (all-class) RLP list-decode loop closure + bridge: the long-item-capable analog of the flat `fll_loop_*` (`FlatListLoop.lean`). `unified_loop_spec_within` is the n-iteration closure (structural induction over a list of arbitrary RLP items, threading the ...
@@ -46,6 +46,12 @@ regOwn .x5 ** (.x0 ↦ᵣ (0 : Word)) ** regOwn .x10 ** regOwn .x11 ** regOwn .x12 ** (.x13 ↦ᵣ endPtr) ** regOwn .x14 ** (.x15 ↦ᵣ (0 : Word)) ** bytesRegion regionBase bs +theorem unified_loop_post_unfold (regionBase : Word) (bs : List (BitVec 8)) (endPtr : Word) : + unified_loop_post region...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_9bbdf7b4deeb_2
e26a92a05e94ca42
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Rv64/RLP/UnifiedListLoop.lean
UnifiedListLoop
2
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
6
1
[ { "theorem_name": "unified_loop_spec_within", "depth": 1, "n_commands": 0, "n_lines": 135, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n intro items\n induction items with\n | nil => intro O v5Old v10 v11Old v12Old v14Old hne _ _; exact absurd rfl...
[ { "name": "unified_loop_post_unfold", "text": "theorem unified_loop_post_unfold (regionBase : Word) (bs : List (BitVec 8)) (endPtr : Word) :\n unified_loop_post regionBase bs endPtr =\n (regOwn .x5 ** (.x0 ↦ᵣ (0 : Word)) ** regOwn .x10 ** regOwn .x11 ** regOwn .x12 **\n (.x13 ↦ᵣ endPtr) ** regOwn...
[ { "name": "unified_loop_n_spec_within", "fan_in": 1, "n_deps_direct": 1, "n_deps_transitive": 5, "n_lines": 38, "n_chars": 2551, "n_subproofs": 1, "n_tactics": 9, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 4, "n_structural": 1, "automation_only": false, ...
5
/- EvmAsm.Rv64.RLP.UnifiedListLoop EL.3 — the UNIFIED (all-class) RLP list-decode loop closure + bridge: the long-item-capable analog of the flat `fll_loop_*` (`FlatListLoop.lean`). `unified_loop_spec_within` is the n-iteration closure (structural induction over a list of arbitrary RLP items, threading the ...
/- EvmAsm.Rv64.RLP.UnifiedListLoop EL.3 — the UNIFIED (all-class) RLP list-decode loop closure + bridge: the long-item-capable analog of the flat `fll_loop_*` (`FlatListLoop.lean`). `unified_loop_spec_within` is the n-iteration closure (structural induction over a list of arbitrary RLP items, threading the ...
@@ -46,6 +46,12 @@ regOwn .x5 ** (.x0 ↦ᵣ (0 : Word)) ** regOwn .x10 ** regOwn .x11 ** regOwn .x12 ** (.x13 ↦ᵣ endPtr) ** regOwn .x14 ** (.x15 ↦ᵣ (0 : Word)) ** bytesRegion regionBase bs +theorem unified_loop_post_unfold (regionBase : Word) (bs : List (BitVec 8)) (endPtr : Word) : + unified_loop_post region...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_9bbdf7b4deeb_3
9c3d5f4a1fb94051
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Rv64/RLP/UnifiedListLoop.lean
UnifiedListLoop
3
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
6
1
[ { "theorem_name": "unified_loop_spec_within", "depth": 1, "n_commands": 0, "n_lines": 135, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n intro items\n induction items with\n | nil => intro O v5Old v10 v11Old v12Old v14Old hne _ _; exact absurd rfl...
[ { "name": "unified_loop_post_unfold", "text": "theorem unified_loop_post_unfold (regionBase : Word) (bs : List (BitVec 8)) (endPtr : Word) :\n unified_loop_post regionBase bs endPtr =\n (regOwn .x5 ** (.x0 ↦ᵣ (0 : Word)) ** regOwn .x10 ** regOwn .x11 ** regOwn .x12 **\n (.x13 ↦ᵣ endPtr) ** regOwn...
[ { "name": "unified_loop_bridge", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 6, "n_lines": 40, "n_chars": 2727, "n_subproofs": 0, "n_tactics": 4, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 0, "n_structural": 0, "automation_only": true, "max_ne...
6
/- EvmAsm.Rv64.RLP.UnifiedListLoop EL.3 — the UNIFIED (all-class) RLP list-decode loop closure + bridge: the long-item-capable analog of the flat `fll_loop_*` (`FlatListLoop.lean`). `unified_loop_spec_within` is the n-iteration closure (structural induction over a list of arbitrary RLP items, threading the ...
/- EvmAsm.Rv64.RLP.UnifiedListLoop EL.3 — the UNIFIED (all-class) RLP list-decode loop closure + bridge: the long-item-capable analog of the flat `fll_loop_*` (`FlatListLoop.lean`). `unified_loop_spec_within` is the n-iteration closure (structural induction over a list of arbitrary RLP items, threading the ...
@@ -46,6 +46,12 @@ regOwn .x5 ** (.x0 ↦ᵣ (0 : Word)) ** regOwn .x10 ** regOwn .x11 ** regOwn .x12 ** (.x13 ↦ᵣ endPtr) ** regOwn .x14 ** (.x15 ↦ᵣ (0 : Word)) ** bytesRegion regionBase bs +theorem unified_loop_post_unfold (regionBase : Word) (bs : List (BitVec 8)) (endPtr : Word) : + unified_loop_post region...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_247b56b5e157_0
9b6f263bb5e58f96
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/Environment/Assertion.lean
Assertion
0
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
1
15
[ { "theorem_name": "envIs_caller_split", "depth": 1, "n_commands": 0, "n_lines": 4, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [envIs_unfold]\n unfold envIsCallerRest\n ac_rfl", "n_chars": 57, "n_subproofs": 0, "n_tactics": 4, ...
[ { "name": "envIs_unfold", "text": "/-- Definitional unfold: `envIs base env` is the right-associative\n `sepConj` of the per-field cells. Useful as a `simp only` rewrite\n when an opcode handler needs to frame out a single field. -/\ntheorem envIs_unfold (base : Word) (env : EvmEnv) :\n envIs base ...
[ { "name": "envIs_caller_split", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 14, "n_chars": 561, "n_subproofs": 0, "n_tactics": 4, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 2, "n_structural": 0, "automation_only": false, "max_nes...
1
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
@@ -54,6 +54,29 @@ ((base + BitVec.ofNat 64 returnDataPtrOff) ↦ₘ env.returnDataPtr) ** ((base + BitVec.ofNat 64 returnDataSizeOff) ↦ₘ env.returnDataSize) +/-- Definitional unfold: `envIs base env` is the right-associative + `sepConj` of the per-field cells. Useful as a `simp only` rewrite + when an opcod...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_247b56b5e157_1
e9745892ad97cb95
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/Environment/Assertion.lean
Assertion
1
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
1
15
[ { "theorem_name": "envIs_caller_split", "depth": 1, "n_commands": 0, "n_lines": 4, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [envIs_unfold]\n unfold envIsCallerRest\n ac_rfl", "n_chars": 57, "n_subproofs": 0, "n_tactics": 4, ...
[ { "name": "envIs_unfold", "text": "/-- Definitional unfold: `envIs base env` is the right-associative\n `sepConj` of the per-field cells. Useful as a `simp only` rewrite\n when an opcode handler needs to frame out a single field. -/\ntheorem envIs_unfold (base : Word) (env : EvmEnv) :\n envIs base ...
[ { "name": "envIs_address_split", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 13, "n_chars": 529, "n_subproofs": 0, "n_tactics": 4, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 2, "n_structural": 0, "automation_only": false, "max_ne...
1
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
@@ -54,6 +54,29 @@ ((base + BitVec.ofNat 64 returnDataPtrOff) ↦ₘ env.returnDataPtr) ** ((base + BitVec.ofNat 64 returnDataSizeOff) ↦ₘ env.returnDataSize) +/-- Definitional unfold: `envIs base env` is the right-associative + `sepConj` of the per-field cells. Useful as a `simp only` rewrite + when an opcod...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_247b56b5e157_2
3a4e48c9ba7bcdaf
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/Environment/Assertion.lean
Assertion
2
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
1
15
[ { "theorem_name": "envIs_caller_split", "depth": 1, "n_commands": 0, "n_lines": 4, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [envIs_unfold]\n unfold envIsCallerRest\n ac_rfl", "n_chars": 57, "n_subproofs": 0, "n_tactics": 4, ...
[ { "name": "envIs_unfold", "text": "/-- Definitional unfold: `envIs base env` is the right-associative\n `sepConj` of the per-field cells. Useful as a `simp only` rewrite\n when an opcode handler needs to frame out a single field. -/\ntheorem envIs_unfold (base : Word) (env : EvmEnv) :\n envIs base ...
[ { "name": "envIs_callValue_split", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 22, "n_chars": 855, "n_subproofs": 0, "n_tactics": 4, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 2, "n_structural": 0, "automation_only": false, "max_...
1
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
@@ -54,6 +54,29 @@ ((base + BitVec.ofNat 64 returnDataPtrOff) ↦ₘ env.returnDataPtr) ** ((base + BitVec.ofNat 64 returnDataSizeOff) ↦ₘ env.returnDataSize) +/-- Definitional unfold: `envIs base env` is the right-associative + `sepConj` of the per-field cells. Useful as a `simp only` rewrite + when an opcod...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_247b56b5e157_3
f7e077986a8e64e4
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/Environment/Assertion.lean
Assertion
3
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
1
15
[ { "theorem_name": "envIs_caller_split", "depth": 1, "n_commands": 0, "n_lines": 4, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [envIs_unfold]\n unfold envIsCallerRest\n ac_rfl", "n_chars": 57, "n_subproofs": 0, "n_tactics": 4, ...
[ { "name": "envIs_unfold", "text": "/-- Definitional unfold: `envIs base env` is the right-associative\n `sepConj` of the per-field cells. Useful as a `simp only` rewrite\n when an opcode handler needs to frame out a single field. -/\ntheorem envIs_unfold (base : Word) (env : EvmEnv) :\n envIs base ...
[ { "name": "envIs_selfBalance_split", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 11, "n_chars": 380, "n_subproofs": 0, "n_tactics": 4, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 2, "n_structural": 0, "automation_only": false, "ma...
1
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
@@ -54,6 +54,29 @@ ((base + BitVec.ofNat 64 returnDataPtrOff) ↦ₘ env.returnDataPtr) ** ((base + BitVec.ofNat 64 returnDataSizeOff) ↦ₘ env.returnDataSize) +/-- Definitional unfold: `envIs base env` is the right-associative + `sepConj` of the per-field cells. Useful as a `simp only` rewrite + when an opcod...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_247b56b5e157_4
408ff8c5bf8ab281
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/Environment/Assertion.lean
Assertion
4
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
1
15
[ { "theorem_name": "envIs_caller_split", "depth": 1, "n_commands": 0, "n_lines": 4, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [envIs_unfold]\n unfold envIsCallerRest\n ac_rfl", "n_chars": 57, "n_subproofs": 0, "n_tactics": 4, ...
[ { "name": "envIs_unfold", "text": "/-- Definitional unfold: `envIs base env` is the right-associative\n `sepConj` of the per-field cells. Useful as a `simp only` rewrite\n when an opcode handler needs to frame out a single field. -/\ntheorem envIs_unfold (base : Word) (env : EvmEnv) :\n envIs base ...
[ { "name": "envIs_origin_split", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 11, "n_chars": 368, "n_subproofs": 0, "n_tactics": 4, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 2, "n_structural": 0, "automation_only": false, "max_nes...
1
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
@@ -54,6 +54,29 @@ ((base + BitVec.ofNat 64 returnDataPtrOff) ↦ₘ env.returnDataPtr) ** ((base + BitVec.ofNat 64 returnDataSizeOff) ↦ₘ env.returnDataSize) +/-- Definitional unfold: `envIs base env` is the right-associative + `sepConj` of the per-field cells. Useful as a `simp only` rewrite + when an opcod...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_247b56b5e157_5
cfd26275155de66b
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/Environment/Assertion.lean
Assertion
5
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
1
15
[ { "theorem_name": "envIs_caller_split", "depth": 1, "n_commands": 0, "n_lines": 4, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [envIs_unfold]\n unfold envIsCallerRest\n ac_rfl", "n_chars": 57, "n_subproofs": 0, "n_tactics": 4, ...
[ { "name": "envIs_unfold", "text": "/-- Definitional unfold: `envIs base env` is the right-associative\n `sepConj` of the per-field cells. Useful as a `simp only` rewrite\n when an opcode handler needs to frame out a single field. -/\ntheorem envIs_unfold (base : Word) (env : EvmEnv) :\n envIs base ...
[ { "name": "envIs_gasPrice_split", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 11, "n_chars": 359, "n_subproofs": 0, "n_tactics": 4, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 2, "n_structural": 0, "automation_only": false, "max_n...
1
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
@@ -54,6 +54,29 @@ ((base + BitVec.ofNat 64 returnDataPtrOff) ↦ₘ env.returnDataPtr) ** ((base + BitVec.ofNat 64 returnDataSizeOff) ↦ₘ env.returnDataSize) +/-- Definitional unfold: `envIs base env` is the right-associative + `sepConj` of the per-field cells. Useful as a `simp only` rewrite + when an opcod...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_247b56b5e157_6
0b91b312b842d909
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/Environment/Assertion.lean
Assertion
6
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
1
15
[ { "theorem_name": "envIs_caller_split", "depth": 1, "n_commands": 0, "n_lines": 4, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [envIs_unfold]\n unfold envIsCallerRest\n ac_rfl", "n_chars": 57, "n_subproofs": 0, "n_tactics": 4, ...
[ { "name": "envIs_unfold", "text": "/-- Definitional unfold: `envIs base env` is the right-associative\n `sepConj` of the per-field cells. Useful as a `simp only` rewrite\n when an opcode handler needs to frame out a single field. -/\ntheorem envIs_unfold (base : Word) (env : EvmEnv) :\n envIs base ...
[ { "name": "envIs_coinbase_split", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 11, "n_chars": 397, "n_subproofs": 0, "n_tactics": 4, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 2, "n_structural": 0, "automation_only": false, "max_n...
1
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
@@ -54,6 +54,29 @@ ((base + BitVec.ofNat 64 returnDataPtrOff) ↦ₘ env.returnDataPtr) ** ((base + BitVec.ofNat 64 returnDataSizeOff) ↦ₘ env.returnDataSize) +/-- Definitional unfold: `envIs base env` is the right-associative + `sepConj` of the per-field cells. Useful as a `simp only` rewrite + when an opcod...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_247b56b5e157_7
968de4ed747dfb1c
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/Environment/Assertion.lean
Assertion
7
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
1
15
[ { "theorem_name": "envIs_caller_split", "depth": 1, "n_commands": 0, "n_lines": 4, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [envIs_unfold]\n unfold envIsCallerRest\n ac_rfl", "n_chars": 57, "n_subproofs": 0, "n_tactics": 4, ...
[ { "name": "envIs_unfold", "text": "/-- Definitional unfold: `envIs base env` is the right-associative\n `sepConj` of the per-field cells. Useful as a `simp only` rewrite\n when an opcode handler needs to frame out a single field. -/\ntheorem envIs_unfold (base : Word) (env : EvmEnv) :\n envIs base ...
[ { "name": "envIs_timestamp_split", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 11, "n_chars": 391, "n_subproofs": 0, "n_tactics": 4, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 2, "n_structural": 0, "automation_only": false, "max_...
1
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
@@ -54,6 +54,29 @@ ((base + BitVec.ofNat 64 returnDataPtrOff) ↦ₘ env.returnDataPtr) ** ((base + BitVec.ofNat 64 returnDataSizeOff) ↦ₘ env.returnDataSize) +/-- Definitional unfold: `envIs base env` is the right-associative + `sepConj` of the per-field cells. Useful as a `simp only` rewrite + when an opcod...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_247b56b5e157_8
bf17ce98fba14642
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/Environment/Assertion.lean
Assertion
8
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
1
15
[ { "theorem_name": "envIs_caller_split", "depth": 1, "n_commands": 0, "n_lines": 4, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [envIs_unfold]\n unfold envIsCallerRest\n ac_rfl", "n_chars": 57, "n_subproofs": 0, "n_tactics": 4, ...
[ { "name": "envIs_unfold", "text": "/-- Definitional unfold: `envIs base env` is the right-associative\n `sepConj` of the per-field cells. Useful as a `simp only` rewrite\n when an opcode handler needs to frame out a single field. -/\ntheorem envIs_unfold (base : Word) (env : EvmEnv) :\n envIs base ...
[ { "name": "envIs_number_split", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 11, "n_chars": 370, "n_subproofs": 0, "n_tactics": 4, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 2, "n_structural": 0, "automation_only": false, "max_nes...
1
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
@@ -54,6 +54,29 @@ ((base + BitVec.ofNat 64 returnDataPtrOff) ↦ₘ env.returnDataPtr) ** ((base + BitVec.ofNat 64 returnDataSizeOff) ↦ₘ env.returnDataSize) +/-- Definitional unfold: `envIs base env` is the right-associative + `sepConj` of the per-field cells. Useful as a `simp only` rewrite + when an opcod...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_247b56b5e157_9
0923b18759630c64
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/Environment/Assertion.lean
Assertion
9
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
1
15
[ { "theorem_name": "envIs_caller_split", "depth": 1, "n_commands": 0, "n_lines": 4, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [envIs_unfold]\n unfold envIsCallerRest\n ac_rfl", "n_chars": 57, "n_subproofs": 0, "n_tactics": 4, ...
[ { "name": "envIs_unfold", "text": "/-- Definitional unfold: `envIs base env` is the right-associative\n `sepConj` of the per-field cells. Useful as a `simp only` rewrite\n when an opcode handler needs to frame out a single field. -/\ntheorem envIs_unfold (base : Word) (env : EvmEnv) :\n envIs base ...
[ { "name": "envIs_prevrandao_split", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 11, "n_chars": 398, "n_subproofs": 0, "n_tactics": 4, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 2, "n_structural": 0, "automation_only": false, "max...
1
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
@@ -54,6 +54,29 @@ ((base + BitVec.ofNat 64 returnDataPtrOff) ↦ₘ env.returnDataPtr) ** ((base + BitVec.ofNat 64 returnDataSizeOff) ↦ₘ env.returnDataSize) +/-- Definitional unfold: `envIs base env` is the right-associative + `sepConj` of the per-field cells. Useful as a `simp only` rewrite + when an opcod...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_247b56b5e157_10
a14452e8bec14e78
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/Environment/Assertion.lean
Assertion
10
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
1
15
[ { "theorem_name": "envIs_caller_split", "depth": 1, "n_commands": 0, "n_lines": 4, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [envIs_unfold]\n unfold envIsCallerRest\n ac_rfl", "n_chars": 57, "n_subproofs": 0, "n_tactics": 4, ...
[ { "name": "envIs_unfold", "text": "/-- Definitional unfold: `envIs base env` is the right-associative\n `sepConj` of the per-field cells. Useful as a `simp only` rewrite\n when an opcode handler needs to frame out a single field. -/\ntheorem envIs_unfold (base : Word) (env : EvmEnv) :\n envIs base ...
[ { "name": "envIs_gasLimit_split", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 11, "n_chars": 384, "n_subproofs": 0, "n_tactics": 4, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 2, "n_structural": 0, "automation_only": false, "max_n...
1
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
@@ -54,6 +54,29 @@ ((base + BitVec.ofNat 64 returnDataPtrOff) ↦ₘ env.returnDataPtr) ** ((base + BitVec.ofNat 64 returnDataSizeOff) ↦ₘ env.returnDataSize) +/-- Definitional unfold: `envIs base env` is the right-associative + `sepConj` of the per-field cells. Useful as a `simp only` rewrite + when an opcod...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_247b56b5e157_11
3fb34042cd000fde
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/Environment/Assertion.lean
Assertion
11
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
1
15
[ { "theorem_name": "envIs_caller_split", "depth": 1, "n_commands": 0, "n_lines": 4, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [envIs_unfold]\n unfold envIsCallerRest\n ac_rfl", "n_chars": 57, "n_subproofs": 0, "n_tactics": 4, ...
[ { "name": "envIs_unfold", "text": "/-- Definitional unfold: `envIs base env` is the right-associative\n `sepConj` of the per-field cells. Useful as a `simp only` rewrite\n when an opcode handler needs to frame out a single field. -/\ntheorem envIs_unfold (base : Word) (env : EvmEnv) :\n envIs base ...
[ { "name": "envIs_chainId_split", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 11, "n_chars": 352, "n_subproofs": 0, "n_tactics": 4, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 2, "n_structural": 0, "automation_only": false, "max_ne...
1
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
@@ -54,6 +54,29 @@ ((base + BitVec.ofNat 64 returnDataPtrOff) ↦ₘ env.returnDataPtr) ** ((base + BitVec.ofNat 64 returnDataSizeOff) ↦ₘ env.returnDataSize) +/-- Definitional unfold: `envIs base env` is the right-associative + `sepConj` of the per-field cells. Useful as a `simp only` rewrite + when an opcod...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_247b56b5e157_12
5f496f6b89263225
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/Environment/Assertion.lean
Assertion
12
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
1
15
[ { "theorem_name": "envIs_caller_split", "depth": 1, "n_commands": 0, "n_lines": 4, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [envIs_unfold]\n unfold envIsCallerRest\n ac_rfl", "n_chars": 57, "n_subproofs": 0, "n_tactics": 4, ...
[ { "name": "envIs_unfold", "text": "/-- Definitional unfold: `envIs base env` is the right-associative\n `sepConj` of the per-field cells. Useful as a `simp only` rewrite\n when an opcode handler needs to frame out a single field. -/\ntheorem envIs_unfold (base : Word) (env : EvmEnv) :\n envIs base ...
[ { "name": "envIs_baseFee_split", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 11, "n_chars": 377, "n_subproofs": 0, "n_tactics": 4, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 2, "n_structural": 0, "automation_only": false, "max_ne...
1
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
@@ -54,6 +54,29 @@ ((base + BitVec.ofNat 64 returnDataPtrOff) ↦ₘ env.returnDataPtr) ** ((base + BitVec.ofNat 64 returnDataSizeOff) ↦ₘ env.returnDataSize) +/-- Definitional unfold: `envIs base env` is the right-associative + `sepConj` of the per-field cells. Useful as a `simp only` rewrite + when an opcod...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_247b56b5e157_13
af1e5f85514190a9
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/Environment/Assertion.lean
Assertion
13
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
1
15
[ { "theorem_name": "envIs_caller_split", "depth": 1, "n_commands": 0, "n_lines": 4, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [envIs_unfold]\n unfold envIsCallerRest\n ac_rfl", "n_chars": 57, "n_subproofs": 0, "n_tactics": 4, ...
[ { "name": "envIs_unfold", "text": "/-- Definitional unfold: `envIs base env` is the right-associative\n `sepConj` of the per-field cells. Useful as a `simp only` rewrite\n when an opcode handler needs to frame out a single field. -/\ntheorem envIs_unfold (base : Word) (env : EvmEnv) :\n envIs base ...
[ { "name": "envIs_callDataLen_split", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 11, "n_chars": 380, "n_subproofs": 0, "n_tactics": 4, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 2, "n_structural": 0, "automation_only": false, "ma...
1
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
@@ -54,6 +54,29 @@ ((base + BitVec.ofNat 64 returnDataPtrOff) ↦ₘ env.returnDataPtr) ** ((base + BitVec.ofNat 64 returnDataSizeOff) ↦ₘ env.returnDataSize) +/-- Definitional unfold: `envIs base env` is the right-associative + `sepConj` of the per-field cells. Useful as a `simp only` rewrite + when an opcod...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_247b56b5e157_14
d8628bf4189e371d
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/Environment/Assertion.lean
Assertion
14
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
1
15
[ { "theorem_name": "envIs_caller_split", "depth": 1, "n_commands": 0, "n_lines": 4, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [envIs_unfold]\n unfold envIsCallerRest\n ac_rfl", "n_chars": 57, "n_subproofs": 0, "n_tactics": 4, ...
[ { "name": "envIs_unfold", "text": "/-- Definitional unfold: `envIs base env` is the right-associative\n `sepConj` of the per-field cells. Useful as a `simp only` rewrite\n when an opcode handler needs to frame out a single field. -/\ntheorem envIs_unfold (base : Word) (env : EvmEnv) :\n envIs base ...
[ { "name": "envIs_callDataPtrLen_split", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 13, "n_chars": 473, "n_subproofs": 0, "n_tactics": 4, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 2, "n_structural": 0, "automation_only": false, ...
1
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
/- EvmAsm.Evm64.Environment.Assertion Slice 3 of #100 (EVM environment context layout). Defines the `envIs base env` separation-logic assertion that pins every field of an `EvmEnv` to a concrete cell at `base + <off>` using the per-field offsets from `Environment.Layout`. 32-byte fields use `evmWordIs` (f...
@@ -54,6 +54,29 @@ ((base + BitVec.ofNat 64 returnDataPtrOff) ↦ₘ env.returnDataPtr) ** ((base + BitVec.ofNat 64 returnDataSizeOff) ↦ₘ env.returnDataSize) +/-- Definitional unfold: `envIs base env` is the right-associative + `sepConj` of the per-field cells. Useful as a `simp only` rewrite + when an opcod...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_f03cdb646982_0
0f58cc7b230c3dbf
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Compose/FullPathN3LoopUnified.lean
FullPathN3LoopUnified
0
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
25
1
[ { "theorem_name": "evm_div_n3_preloop_loop_unified_spec", "depth": 1, "n_commands": 0, "n_lines": 56, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n -- 1. Pre-loop: base → base+448\n have hPre := evm_div_n3_to_loopSetup_spec_within sp base\n a0 a...
[ { "name": "evm_div_n3_loop_unified_inst", "text": "/-- Helper: instantiate unified n=3 loop (double-addback) with explicit normalized values.\n Separates the loop application from the composition for heartbeat budgeting.\n\n Legacy compatibility surface: this still consumes the raw `Carry2NzAll`\n ...
[ { "name": "evm_div_n3_preloop_loop_unified_spec", "fan_in": 1, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 102, "n_chars": 6166, "n_subproofs": 5, "n_tactics": 52, "cyclomatic": 1, "n_automation": 4, "n_rewrites": 3, "n_structural": 1, "automation_only"...
1
/- EvmAsm.Evm64.DivMod.Compose.FullPathN3LoopUnified Bool-parameterized unified preloop+loop composition for n=3. Issue #262: Single theorem covers all 4 path combinations at the preloop+loop level (base → base+904). Dispatches to the existing 4 per-path theorems in FullPathN3Loop.lean. Legacy carry note...
/- EvmAsm.Evm64.DivMod.Compose.FullPathN3LoopUnified Bool-parameterized unified preloop+loop composition for n=3. Issue #262: Single theorem covers all 4 path combinations at the preloop+loop level (base → base+904). Dispatches to the existing 4 per-path theorems in FullPathN3Loop.lean. Legacy carry note...
@@ -91,6 +91,34 @@ -- Double-addback loop instantiation helper (heartbeat isolation) -- ============================================================================ +/-- Helper: instantiate unified n=3 loop (double-addback) with explicit normalized values. + Separates the loop application from the composition fo...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_f03cdb646982_1
06b7ac96a59efc05
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Compose/FullPathN3LoopUnified.lean
FullPathN3LoopUnified
1
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
25
1
[ { "theorem_name": "evm_div_n3_preloop_loop_unified_spec_noNop", "depth": 1, "n_commands": 0, "n_lines": 51, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n have hPre := evm_div_n3_to_loopSetup_spec_within_noNop sp base\n a0 a1 a2 a3 b0 b1 b2 b3 v5 ...
[ { "name": "evm_div_n3_loop_unified_inst_noNop", "text": "/-- No-NOP variant of `evm_div_n3_loop_unified_inst`.\n\n Legacy compatibility surface: this still consumes the raw `Carry2NzAll`\n package. New v4 n=3 work should route through selected carry evidence. -/\ntheorem evm_div_n3_loop_unified_inst_n...
[ { "name": "evm_div_n3_preloop_loop_unified_spec_noNop", "fan_in": 1, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 98, "n_chars": 5904, "n_subproofs": 5, "n_tactics": 52, "cyclomatic": 1, "n_automation": 4, "n_rewrites": 3, "n_structural": 1, "automation_...
1
/- EvmAsm.Evm64.DivMod.Compose.FullPathN3LoopUnified Bool-parameterized unified preloop+loop composition for n=3. Issue #262: Single theorem covers all 4 path combinations at the preloop+loop level (base → base+904). Dispatches to the existing 4 per-path theorems in FullPathN3Loop.lean. Legacy carry note...
/- EvmAsm.Evm64.DivMod.Compose.FullPathN3LoopUnified Bool-parameterized unified preloop+loop composition for n=3. Issue #262: Single theorem covers all 4 path combinations at the preloop+loop level (base → base+904). Dispatches to the existing 4 per-path theorems in FullPathN3Loop.lean. Legacy carry note...
@@ -91,6 +91,37 @@ -- Double-addback loop instantiation helper (heartbeat isolation) -- ============================================================================ +/-- No-NOP variant of `evm_div_n3_loop_unified_inst`. + + Legacy compatibility surface: this still consumes the raw `Carry2NzAll` + package. New...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_f03cdb646982_2
b7f7b1e30371a976
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Compose/FullPathN3LoopUnified.lean
FullPathN3LoopUnified
2
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
25
4
[ { "theorem_name": "preloopN3UnifiedPost_to_fullDivN3DenormPre_frame_FF", "depth": 1, "n_commands": 0, "n_lines": 9, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n delta preloopN3UnifiedPost loopN3UnifiedPost loopN3MaxPost loopIterPostN3Max at hp\n d...
[ { "name": "loopExitPostN3_j0_eq", "text": "/-- Specialize `loopExitPostN3` at `j=0`: all uBase/qAddr offsets become\n flat `sp + signExtend12 K` addresses. -/\ntheorem loopExitPostN3_j0_eq (sp q_f c3 un0F un1F un2F un3F u4F\n v0 v1 v2 v3 : Word) :\n loopExitPostN3 sp (0 : Word) q_f c3 un0F un1F un2...
[ { "name": "preloopN3UnifiedPost_to_fullDivN3DenormPre_frame_FF", "fan_in": 2, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 19, "n_chars": 955, "n_subproofs": 0, "n_tactics": 9, "cyclomatic": 1, "n_automation": 4, "n_rewrites": 3, "n_structural": 0, "auto...
1
/- EvmAsm.Evm64.DivMod.Compose.FullPathN3LoopUnified Bool-parameterized unified preloop+loop composition for n=3. Issue #262: Single theorem covers all 4 path combinations at the preloop+loop level (base → base+904). Dispatches to the existing 4 per-path theorems in FullPathN3Loop.lean. Legacy carry note...
/- EvmAsm.Evm64.DivMod.Compose.FullPathN3LoopUnified Bool-parameterized unified preloop+loop composition for n=3. Issue #262: Single theorem covers all 4 path combinations at the preloop+loop level (base → base+904). Dispatches to the existing 4 per-path theorems in FullPathN3Loop.lean. Legacy carry note...
@@ -91,6 +91,32 @@ -- Double-addback loop instantiation helper (heartbeat isolation) -- ============================================================================ +/-- Specialize `loopExitPostN3` at `j=0`: all uBase/qAddr offsets become + flat `sp + signExtend12 K` addresses. -/ +theorem loopExitPostN3_j0_eq (...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_f03cdb646982_3
aec1c716bd642cad
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Compose/FullPathN3LoopUnified.lean
FullPathN3LoopUnified
3
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
25
3
[ { "theorem_name": "preloopN3UnifiedPost_to_fullDivN3DenormPre_frame_FT", "depth": 1, "n_commands": 0, "n_lines": 31, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n delta preloopN3UnifiedPost loopN3UnifiedPost at hp\n simp (config := { decide := true...
[ { "name": "fullDivN3NormU_unfold", "text": "theorem fullDivN3NormU_unfold (a0 a1 a2 a3 b2 : Word) :\n fullDivN3NormU a0 a1 a2 a3 b2 =\n let shift := fullDivN3Shift b2\n let antiShift := fullDivN3AntiShift b2\n (a0 <<< (shift.toNat % 64),\n (a1 <<< (shift.toNat % 64)) ||| (a0 >>> (antiShift.t...
[ { "name": "preloopN3UnifiedPost_to_fullDivN3DenormPre_frame_FT", "fan_in": 2, "n_deps_direct": 11, "n_deps_transitive": 11, "n_lines": 41, "n_chars": 2196, "n_subproofs": 0, "n_tactics": 31, "cyclomatic": 1, "n_automation": 6, "n_rewrites": 3, "n_structural": 0, "...
11
/- EvmAsm.Evm64.DivMod.Compose.FullPathN3LoopUnified Bool-parameterized unified preloop+loop composition for n=3. Issue #262: Single theorem covers all 4 path combinations at the preloop+loop level (base → base+904). Dispatches to the existing 4 per-path theorems in FullPathN3Loop.lean. Legacy carry note...
/- EvmAsm.Evm64.DivMod.Compose.FullPathN3LoopUnified Bool-parameterized unified preloop+loop composition for n=3. Issue #262: Single theorem covers all 4 path combinations at the preloop+loop level (base → base+904). Dispatches to the existing 4 per-path theorems in FullPathN3Loop.lean. Legacy carry note...
@@ -330,6 +330,18 @@ delta fullDivN3NormV rfl +theorem fullDivN3NormU_unfold (a0 a1 a2 a3 b2 : Word) : + fullDivN3NormU a0 a1 a2 a3 b2 = + let shift := fullDivN3Shift b2 + let antiShift := fullDivN3AntiShift b2 + (a0 <<< (shift.toNat % 64), + (a1 <<< (shift.toNat % 64)) ||| (a0 >>> (antiShift.to...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_f03cdb646982_4
73453db145d28db5
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Compose/FullPathN3LoopUnified.lean
FullPathN3LoopUnified
4
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
25
3
[ { "theorem_name": "preloopN3UnifiedPost_to_fullDivN3DenormPre_frame_FT", "depth": 1, "n_commands": 0, "n_lines": 31, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n delta preloopN3UnifiedPost loopN3UnifiedPost at hp\n simp (config := { decide := true...
[ { "name": "fullDivN3NormV_unfold", "text": "theorem fullDivN3NormV_unfold (b0 b1 b2 b3 : Word) :\n fullDivN3NormV b0 b1 b2 b3 =\n let shift := fullDivN3Shift b2\n let antiShift := fullDivN3AntiShift b2\n (b0 <<< (shift.toNat % 64),\n (b1 <<< (shift.toNat % 64)) ||| (b0 >>> (antiShift.toNat %...
[ { "name": "preloopN3UnifiedPost_to_fullDivN3DenormPre_frame_TF", "fan_in": 2, "n_deps_direct": 11, "n_deps_transitive": 11, "n_lines": 41, "n_chars": 2187, "n_subproofs": 0, "n_tactics": 31, "cyclomatic": 1, "n_automation": 6, "n_rewrites": 3, "n_structural": 0, "...
11
/- EvmAsm.Evm64.DivMod.Compose.FullPathN3LoopUnified Bool-parameterized unified preloop+loop composition for n=3. Issue #262: Single theorem covers all 4 path combinations at the preloop+loop level (base → base+904). Dispatches to the existing 4 per-path theorems in FullPathN3Loop.lean. Legacy carry note...
/- EvmAsm.Evm64.DivMod.Compose.FullPathN3LoopUnified Bool-parameterized unified preloop+loop composition for n=3. Issue #262: Single theorem covers all 4 path combinations at the preloop+loop level (base → base+904). Dispatches to the existing 4 per-path theorems in FullPathN3Loop.lean. Legacy carry note...
@@ -319,6 +319,17 @@ delta fullDivN3AntiShift rfl +theorem fullDivN3NormV_unfold (b0 b1 b2 b3 : Word) : + fullDivN3NormV b0 b1 b2 b3 = + let shift := fullDivN3Shift b2 + let antiShift := fullDivN3AntiShift b2 + (b0 <<< (shift.toNat % 64), + (b1 <<< (shift.toNat % 64)) ||| (b0 >>> (antiShift.toNa...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_f03cdb646982_5
4b4a68843291a06c
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Compose/FullPathN3LoopUnified.lean
FullPathN3LoopUnified
5
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
25
3
[ { "theorem_name": "preloopN3UnifiedPost_to_fullDivN3DenormPre_frame_FT", "depth": 1, "n_commands": 0, "n_lines": 31, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n delta preloopN3UnifiedPost loopN3UnifiedPost at hp\n simp (config := { decide := true...
[ { "name": "fullDivN3NormU_unfold", "text": "theorem fullDivN3NormU_unfold (a0 a1 a2 a3 b2 : Word) :\n fullDivN3NormU a0 a1 a2 a3 b2 =\n let shift := fullDivN3Shift b2\n let antiShift := fullDivN3AntiShift b2\n (a0 <<< (shift.toNat % 64),\n (a1 <<< (shift.toNat % 64)) ||| (a0 >>> (antiShift.t...
[ { "name": "preloopN3UnifiedPost_to_fullDivN3DenormPre_frame_TT", "fan_in": 2, "n_deps_direct": 11, "n_deps_transitive": 11, "n_lines": 41, "n_chars": 2180, "n_subproofs": 0, "n_tactics": 31, "cyclomatic": 1, "n_automation": 6, "n_rewrites": 3, "n_structural": 0, "...
11
/- EvmAsm.Evm64.DivMod.Compose.FullPathN3LoopUnified Bool-parameterized unified preloop+loop composition for n=3. Issue #262: Single theorem covers all 4 path combinations at the preloop+loop level (base → base+904). Dispatches to the existing 4 per-path theorems in FullPathN3Loop.lean. Legacy carry note...
/- EvmAsm.Evm64.DivMod.Compose.FullPathN3LoopUnified Bool-parameterized unified preloop+loop composition for n=3. Issue #262: Single theorem covers all 4 path combinations at the preloop+loop level (base → base+904). Dispatches to the existing 4 per-path theorems in FullPathN3Loop.lean. Legacy carry note...
@@ -330,6 +330,18 @@ delta fullDivN3NormV rfl +theorem fullDivN3NormU_unfold (a0 a1 a2 a3 b2 : Word) : + fullDivN3NormU a0 a1 a2 a3 b2 = + let shift := fullDivN3Shift b2 + let antiShift := fullDivN3AntiShift b2 + (a0 <<< (shift.toNat % 64), + (a1 <<< (shift.toNat % 64)) ||| (a0 >>> (antiShift.to...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_f03cdb646982_6
8230a74bb4f546f1
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Compose/FullPathN3LoopUnified.lean
FullPathN3LoopUnified
6
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
25
3
[ { "theorem_name": "preloopN3UnifiedPost_to_fullDivN3DenormPre_frame_FT", "depth": 1, "n_commands": 0, "n_lines": 31, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n delta preloopN3UnifiedPost loopN3UnifiedPost at hp\n simp (config := { decide := true...
[ { "name": "fullDivN3R1_unfold", "text": "theorem fullDivN3R1_unfold (bltu_1 : Bool) (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :\n fullDivN3R1 bltu_1 a0 a1 a2 a3 b0 b1 b2 b3 =\n let v := fullDivN3NormV b0 b1 b2 b3\n let u := fullDivN3NormU a0 a1 a2 a3 b2\n iterN3 bltu_1 v.1 v.2.1 v.2.2.1 v.2.2.2\n u....
[ { "name": "evm_div_n3_full_unified_spec", "fan_in": 0, "n_deps_direct": 8, "n_deps_transitive": 22, "n_lines": 77, "n_chars": 4615, "n_subproofs": 5, "n_tactics": 34, "cyclomatic": 4, "n_automation": 1, "n_rewrites": 2, "n_structural": 8, "automation_only": false,...
22
/- EvmAsm.Evm64.DivMod.Compose.FullPathN3LoopUnified Bool-parameterized unified preloop+loop composition for n=3. Issue #262: Single theorem covers all 4 path combinations at the preloop+loop level (base → base+904). Dispatches to the existing 4 per-path theorems in FullPathN3Loop.lean. Legacy carry note...
/- EvmAsm.Evm64.DivMod.Compose.FullPathN3LoopUnified Bool-parameterized unified preloop+loop composition for n=3. Issue #262: Single theorem covers all 4 path combinations at the preloop+loop level (base → base+904). Dispatches to the existing 4 per-path theorems in FullPathN3Loop.lean. Legacy carry note...
@@ -471,6 +471,15 @@ delta fullDivN3NormU rfl +theorem fullDivN3R1_unfold (bltu_1 : Bool) (a0 a1 a2 a3 b0 b1 b2 b3 : Word) : + fullDivN3R1 bltu_1 a0 a1 a2 a3 b0 b1 b2 b3 = + let v := fullDivN3NormV b0 b1 b2 b3 + let u := fullDivN3NormU a0 a1 a2 a3 b2 + iterN3 bltu_1 v.1 v.2.1 v.2.2.1 v.2.2.2 + ...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_f03cdb646982_7
6d5dc82514aec5c1
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Compose/FullPathN3LoopUnified.lean
FullPathN3LoopUnified
7
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
25
3
[ { "theorem_name": "preloopN3UnifiedPost_to_fullDivN3DenormPre_frame_FT", "depth": 1, "n_commands": 0, "n_lines": 31, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n delta preloopN3UnifiedPost loopN3UnifiedPost at hp\n simp (config := { decide := true...
[ { "name": "fullDivN3R1_unfold", "text": "theorem fullDivN3R1_unfold (bltu_1 : Bool) (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :\n fullDivN3R1 bltu_1 a0 a1 a2 a3 b0 b1 b2 b3 =\n let v := fullDivN3NormV b0 b1 b2 b3\n let u := fullDivN3NormU a0 a1 a2 a3 b2\n iterN3 bltu_1 v.1 v.2.1 v.2.2.1 v.2.2.2\n u....
[ { "name": "evm_div_n3_full_unified_spec_noNop", "fan_in": 0, "n_deps_direct": 8, "n_deps_transitive": 22, "n_lines": 76, "n_chars": 4597, "n_subproofs": 5, "n_tactics": 34, "cyclomatic": 4, "n_automation": 1, "n_rewrites": 2, "n_structural": 8, "automation_only": ...
22
/- EvmAsm.Evm64.DivMod.Compose.FullPathN3LoopUnified Bool-parameterized unified preloop+loop composition for n=3. Issue #262: Single theorem covers all 4 path combinations at the preloop+loop level (base → base+904). Dispatches to the existing 4 per-path theorems in FullPathN3Loop.lean. Legacy carry note...
/- EvmAsm.Evm64.DivMod.Compose.FullPathN3LoopUnified Bool-parameterized unified preloop+loop composition for n=3. Issue #262: Single theorem covers all 4 path combinations at the preloop+loop level (base → base+904). Dispatches to the existing 4 per-path theorems in FullPathN3Loop.lean. Legacy carry note...
@@ -470,6 +470,15 @@ delta fullDivN3NormU rfl +theorem fullDivN3R1_unfold (bltu_1 : Bool) (a0 a1 a2 a3 b0 b1 b2 b3 : Word) : + fullDivN3R1 bltu_1 a0 a1 a2 a3 b0 b1 b2 b3 = + let v := fullDivN3NormV b0 b1 b2 b3 + let u := fullDivN3NormU a0 a1 a2 a3 b2 + iterN3 bltu_1 v.1 v.2.1 v.2.2.1 v.2.2.2 + ...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_1543c2d2bf4f_0
2eca536a1ff5b5d9
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/LoopIterN1/Iter10CallV5.lean
Iter10CallV5
0
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
1
1
[ { "theorem_name": "divK_loop_n1_call_iter10_v5_spec_within_noNop", "depth": 1, "n_commands": 0, "n_lines": 48, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n unfold loopN1Iter10PreV5 loopN1Iter10PreWithScratch loopN1Iter10Pre\n let r1 := iterN1Call_...
[ { "name": "iterN1Call_v5_unfold", "text": "private theorem iterN1Call_v5_unfold (v0 v1 v2 v3 u0 u1 u2 u3 uTop : Word) :\n iterN1Call_v5 v0 v1 v2 v3 u0 u1 u2 u3 uTop\n = iterWithDoubleAddback (div128Quot_v5 u1 u0 v0) v0 v1 v2 v3 u0 u1 u2 u3 uTop := by\n unfold iterN1Call_v5\n rfl\n\n", "fan_in": ...
[ { "name": "divK_loop_n1_call_iter10_v5_spec_within_noNop", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 71, "n_chars": 3773, "n_subproofs": 6, "n_tactics": 44, "cyclomatic": 1, "n_automation": 3, "n_rewrites": 7, "n_structural": 1, "automati...
1
/- EvmAsm.Evm64.DivMod.LoopIterN1.Iter10CallV5 v5 n=1 two-iteration loop composition, ALL-CALL path (bltu_1 = bltu_0 = true). In the n=1 normalized call regime the running remainder stays < divisor, so `uHi < vTop` at every digit (`iterN1V5_true_remainder_lt_of_v0_norm_call`) and every digit takes the call p...
/- EvmAsm.Evm64.DivMod.LoopIterN1.Iter10CallV5 v5 n=1 two-iteration loop composition, ALL-CALL path (bltu_1 = bltu_0 = true). In the n=1 normalized call regime the running remainder stays < divisor, so `uHi < vTop` at every digit (`iterN1V5_true_remainder_lt_of_v0_norm_call`) and every digit takes the call p...
@@ -19,6 +19,12 @@ open EvmAsm.Rv64 open EvmAsm.Evm64.DivMod.AddrNorm (jpred_1 slt_jpos_1) +private theorem iterN1Call_v5_unfold (v0 v1 v2 v3 u0 u1 u2 u3 uTop : Word) : + iterN1Call_v5 v0 v1 v2 v3 u0 u1 u2 u3 uTop + = iterWithDoubleAddback (div128Quot_v5 u1 u0 v0) v0 v1 v2 v3 u0 u1 u2 u3 uTop := by + unfold ...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_927ffa73ee78_0
a0e78f698daa872e
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Rv64/RLP/UnifiedScalarFieldRegionCanonical.lean
UnifiedScalarFieldRegionCanonical
0
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
1
1
[ { "theorem_name": "unified_scalar_field_decode_and_store_region_canonical", "depth": 1, "n_commands": 0, "n_lines": 18, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n refine ⟨?_, ?_⟩\n · refine cpsTripleWithin_weaken (fun _ hp => by xperm_hyp hp) (f...
[ { "name": "unified_scalar_field_decode_and_store_region_at_regOwn", "text": "/-- **`regOwn`-re-entry non-empty scalar field.** As\n `unified_scalar_field_decode_and_store_region` but `x5, x10, x11, x12` are `regOwn` in the\n precondition, so it can be called after a previous field unit. -/\ntheorem un...
[ { "name": "unified_scalar_field_decode_and_store_region_canonical", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 50, "n_chars": 3307, "n_subproofs": 0, "n_tactics": 18, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 0, "n_structural": 4, ...
1
/- EvmAsm.Rv64.RLP.UnifiedScalarFieldRegionCanonical EL.3 / Phase 5 — the CANONICAL re-entry form of the scalar-into-region field unit, with a uniform all-`regOwn` scratch interface for `x5, x10, x11, x12, x15`. The byte-array unit releases `x15` as `regOwn` (it uses it as the copy counter), whereas the scalar...
/- EvmAsm.Rv64.RLP.UnifiedScalarFieldRegionCanonical EL.3 / Phase 5 — the CANONICAL re-entry form of the scalar-into-region field unit, with a uniform all-`regOwn` scratch interface for `x5, x10, x11, x12, x15`. The byte-array unit releases `x15` as `regOwn` (it uses it as the copy counter), whereas the scalar...
@@ -24,6 +24,77 @@ open EvmAsm.EL.RLP open EvmAsm.Rv64.Tactics +/-- **`regOwn`-re-entry non-empty scalar field.** As + `unified_scalar_field_decode_and_store_region` but `x5, x10, x11, x12` are `regOwn` in the + precondition, so it can be called after a previous field unit. -/ +theorem unified_scalar_field_de...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_3a27c2b123a3_0
de180ac7e89cb955
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Codegen/Programs/Secp256k1PointDoubleSAsmStage.lean
Secp256k1PointDoubleSAsmStage
0
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
7
2
[ { "theorem_name": "secfIsZero32Flat_spec", "depth": 1, "n_commands": 0, "n_lines": 49, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n refine cpsTripleWithin_weaken (fun _ hp => by xperm_hyp hp) (fun _ hq => hq)\n (cpsTripleWithin_peel_regOwns a0Re...
[ { "name": "x10_notin_a0Rest", "text": "private theorem x10_notin_a0Rest : (.x10 : Reg) ∉ a0Rest := by decide\n\n-- ============================================================================\n-- Flat contract: secf_is_zero32 (read-only leaf, no rw window)\n-- ===============================================...
[ { "name": "secfIsZero32Flat_spec", "fan_in": 0, "n_deps_direct": 2, "n_deps_transitive": 2, "n_lines": 67, "n_chars": 3353, "n_subproofs": 4, "n_tactics": 51, "cyclomatic": 1, "n_automation": 15, "n_rewrites": 17, "n_structural": 6, "automation_only": false, "...
2
/- EvmAsm.Codegen.Programs.Secp256k1PointDoubleSAsmStage Staging infrastructure for `secp256k1_point_double` (bead evm-asm-4ch8f.38.5, the inline-CSRS half): the emitted routine (`pdBody`/`pdFrame`/`pdProg_tie`), its code map (`pdCr`), the four callee focused adapters (`secfIsZero32Flat_spec` / `secfZero32Fl...
/- EvmAsm.Codegen.Programs.Secp256k1PointDoubleSAsmStage Staging infrastructure for `secp256k1_point_double` (bead evm-asm-4ch8f.38.5, the inline-CSRS half): the emitted routine (`pdBody`/`pdFrame`/`pdProg_tie`), its code map (`pdCr`), the four callee focused adapters (`secfIsZero32Flat_spec` / `secfZero32Fl...
@@ -102,6 +102,12 @@ simp only [a0Rest, regAtomsOf_cons, regAtomsOf_nil] xperm +private theorem x10_notin_a0Rest : (.x10 : Reg) ∉ a0Rest := by decide + +-- ============================================================================ +-- Flat contract: secf_is_zero32 (read-only leaf, no rw window) +-- ==========...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_3a27c2b123a3_1
795735cc439ffbd1
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Codegen/Programs/Secp256k1PointDoubleSAsmStage.lean
Secp256k1PointDoubleSAsmStage
1
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
7
2
[ { "theorem_name": "secfIsZero32Flat_spec", "depth": 1, "n_commands": 0, "n_lines": 49, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n refine cpsTripleWithin_weaken (fun _ hp => by xperm_hyp hp) (fun _ hq => hq)\n (cpsTripleWithin_peel_regOwns a0Re...
[ { "name": "x10_notin_a0Rest", "text": "private theorem x10_notin_a0Rest : (.x10 : Reg) ∉ a0Rest := by decide\n\n-- ============================================================================\n-- Flat contract: secf_is_zero32 (read-only leaf, no rw window)\n-- ===============================================...
[ { "name": "secfZero32Flat_spec", "fan_in": 0, "n_deps_direct": 2, "n_deps_transitive": 2, "n_lines": 57, "n_chars": 2933, "n_subproofs": 2, "n_tactics": 43, "cyclomatic": 1, "n_automation": 14, "n_rewrites": 17, "n_structural": 6, "automation_only": false, "ma...
2
/- EvmAsm.Codegen.Programs.Secp256k1PointDoubleSAsmStage Staging infrastructure for `secp256k1_point_double` (bead evm-asm-4ch8f.38.5, the inline-CSRS half): the emitted routine (`pdBody`/`pdFrame`/`pdProg_tie`), its code map (`pdCr`), the four callee focused adapters (`secfIsZero32Flat_spec` / `secfZero32Fl...
/- EvmAsm.Codegen.Programs.Secp256k1PointDoubleSAsmStage Staging infrastructure for `secp256k1_point_double` (bead evm-asm-4ch8f.38.5, the inline-CSRS half): the emitted routine (`pdBody`/`pdFrame`/`pdProg_tie`), its code map (`pdCr`), the four callee focused adapters (`secfIsZero32Flat_spec` / `secfZero32Fl...
@@ -102,6 +102,12 @@ simp only [a0Rest, regAtomsOf_cons, regAtomsOf_nil] xperm +private theorem x10_notin_a0Rest : (.x10 : Reg) ∉ a0Rest := by decide + +-- ============================================================================ +-- Flat contract: secf_is_zero32 (read-only leaf, no rw window) +-- ==========...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_3a27c2b123a3_2
97b8656b37adfdcb
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Codegen/Programs/Secp256k1PointDoubleSAsmStage.lean
Secp256k1PointDoubleSAsmStage
2
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
7
2
[ { "theorem_name": "secfBeToLeFlat_spec", "depth": 1, "n_commands": 0, "n_lines": 65, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n refine cpsTripleWithin_weaken (fun _ hp => by xperm_hyp hp) (fun _ hq => hq)\n (cpsTripleWithin_peel_regOwns convSc...
[ { "name": "x10_notin_convScratch", "text": "private theorem x10_notin_convScratch : (.x10 : Reg) ∉ convScratch := by decide\n", "fan_in": 2, "n_lines": 2, "n_chars": 82, "n_subproofs": 0, "n_tactics": 1, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 0, "n_structural":...
[ { "name": "secfBeToLeFlat_spec", "fan_in": 0, "n_deps_direct": 3, "n_deps_transitive": 3, "n_lines": 83, "n_chars": 4461, "n_subproofs": 6, "n_tactics": 67, "cyclomatic": 1, "n_automation": 17, "n_rewrites": 19, "n_structural": 10, "automation_only": false, "m...
3
/- EvmAsm.Codegen.Programs.Secp256k1PointDoubleSAsmStage Staging infrastructure for `secp256k1_point_double` (bead evm-asm-4ch8f.38.5, the inline-CSRS half): the emitted routine (`pdBody`/`pdFrame`/`pdProg_tie`), its code map (`pdCr`), the four callee focused adapters (`secfIsZero32Flat_spec` / `secfZero32Fl...
/- EvmAsm.Codegen.Programs.Secp256k1PointDoubleSAsmStage Staging infrastructure for `secp256k1_point_double` (bead evm-asm-4ch8f.38.5, the inline-CSRS half): the emitted routine (`pdBody`/`pdFrame`/`pdProg_tie`), its code map (`pdCr`), the four callee focused adapters (`secfIsZero32Flat_spec` / `secfZero32Fl...
@@ -102,6 +102,7 @@ simp only [convScratch, regAtomsOf_cons, regAtomsOf_nil] xperm +private theorem x10_notin_convScratch : (.x10 : Reg) ∉ convScratch := by decide private theorem x11_notin_convScratch : (.x11 : Reg) ∉ convScratch := by decide /-- **Flat contract for `secf_be_to_le`** (adapter-derived, ∃-post...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_3a27c2b123a3_3
c68495f30264ec9e
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Codegen/Programs/Secp256k1PointDoubleSAsmStage.lean
Secp256k1PointDoubleSAsmStage
3
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
7
2
[ { "theorem_name": "secfBeToLeFlat_spec", "depth": 1, "n_commands": 0, "n_lines": 65, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n refine cpsTripleWithin_weaken (fun _ hp => by xperm_hyp hp) (fun _ hq => hq)\n (cpsTripleWithin_peel_regOwns convSc...
[ { "name": "x10_notin_convScratch", "text": "private theorem x10_notin_convScratch : (.x10 : Reg) ∉ convScratch := by decide\n", "fan_in": 2, "n_lines": 2, "n_chars": 82, "n_subproofs": 0, "n_tactics": 1, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 0, "n_structural":...
[ { "name": "secfLeToBeFlat_spec", "fan_in": 0, "n_deps_direct": 3, "n_deps_transitive": 3, "n_lines": 121, "n_chars": 6376, "n_subproofs": 13, "n_tactics": 102, "cyclomatic": 1, "n_automation": 18, "n_rewrites": 20, "n_structural": 12, "automation_only": false, ...
3
/- EvmAsm.Codegen.Programs.Secp256k1PointDoubleSAsmStage Staging infrastructure for `secp256k1_point_double` (bead evm-asm-4ch8f.38.5, the inline-CSRS half): the emitted routine (`pdBody`/`pdFrame`/`pdProg_tie`), its code map (`pdCr`), the four callee focused adapters (`secfIsZero32Flat_spec` / `secfZero32Fl...
/- EvmAsm.Codegen.Programs.Secp256k1PointDoubleSAsmStage Staging infrastructure for `secp256k1_point_double` (bead evm-asm-4ch8f.38.5, the inline-CSRS half): the emitted routine (`pdBody`/`pdFrame`/`pdProg_tie`), its code map (`pdCr`), the four callee focused adapters (`secfIsZero32Flat_spec` / `secfZero32Fl...
@@ -102,6 +102,7 @@ simp only [convScratch, regAtomsOf_cons, regAtomsOf_nil] xperm +private theorem x10_notin_convScratch : (.x10 : Reg) ∉ convScratch := by decide private theorem x11_notin_convScratch : (.x11 : Reg) ∉ convScratch := by decide /-- **Flat contract for `secf_le_to_be`** (adapter-derived, ∃-post...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_3a27c2b123a3_4
131e917ebd3a6a5a
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Codegen/Programs/Secp256k1PointDoubleSAsmStage.lean
Secp256k1PointDoubleSAsmStage
4
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
7
1
[ { "theorem_name": "curveStep_spec", "depth": 1, "n_commands": 0, "n_lines": 47, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n refine cpsTripleWithin_weaken (fun _ hp => by xperm_hyp hp) (fun _ hq => hq)\n (cpsTripleWithin_peel_regOwns csrsRest (b...
[ { "name": "x5_notin_csrsRest", "text": "private theorem x5_notin_csrsRest : (.x5 : Reg) ∉ csrsRest := by decide\n\n", "fan_in": 1, "n_lines": 3, "n_chars": 75, "n_subproofs": 0, "n_tactics": 1, "cyclomatic": 1, "n_automation": 1, "n_rewrites": 0, "n_structural": 0, "a...
[ { "name": "curveStep_spec", "fan_in": 0, "n_deps_direct": 2, "n_deps_transitive": 2, "n_lines": 66, "n_chars": 3443, "n_subproofs": 3, "n_tactics": 47, "cyclomatic": 1, "n_automation": 19, "n_rewrites": 21, "n_structural": 5, "automation_only": false, "max_nes...
2
/- EvmAsm.Codegen.Programs.Secp256k1PointDoubleSAsmStage Staging infrastructure for `secp256k1_point_double` (bead evm-asm-4ch8f.38.5, the inline-CSRS half): the emitted routine (`pdBody`/`pdFrame`/`pdProg_tie`), its code map (`pdCr`), the four callee focused adapters (`secfIsZero32Flat_spec` / `secfZero32Fl...
/- EvmAsm.Codegen.Programs.Secp256k1PointDoubleSAsmStage Staging infrastructure for `secp256k1_point_double` (bead evm-asm-4ch8f.38.5, the inline-CSRS half): the emitted routine (`pdBody`/`pdFrame`/`pdProg_tie`), its code map (`pdCr`), the four callee focused adapters (`secfIsZero32Flat_spec` / `secfZero32Fl...
@@ -106,6 +106,8 @@ .x10, .x11, .x12, .x13, .x14, .x15, .x16, .x17] = _ simp only [csrsRest, regAtomsOf_cons, regAtomsOf_nil] +private theorem x5_notin_csrsRest : (.x5 : Reg) ∉ csrsRest := by decide + /-- The one-step accelerator triple at atom granularity: `t0` points at the staged LE point, the who...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_2dfaa9194ec4_0
16341c98554d07de
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/Mcopy/Program.lean
Program
0
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
1
1
[ { "theorem_name": "evm_mcopy_byte_length", "depth": 1, "n_commands": 0, "n_lines": 2, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n rw [evm_mcopy_length]", "n_chars": 27, "n_subproofs": 0, "n_tactics": 2, "cyclomatic": 1, "n_auto...
[ { "name": "evm_mcopy_length", "text": "/-- `evm_mcopy` is exactly 21 RISC-V instructions. -/\ntheorem evm_mcopy_length\n (memBaseReg dstOffReg srcOffReg cntReg dstPtrReg srcPtrReg\n scratchReg : Reg) :\n (evm_mcopy memBaseReg dstOffReg srcOffReg cntReg dstPtrReg srcPtrReg\n scratchReg).len...
[ { "name": "evm_mcopy_byte_length", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 9, "n_chars": 317, "n_subproofs": 0, "n_tactics": 2, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 1, "n_structural": 0, "automation_only": false, "max_n...
1
/- EvmAsm.Evm64.Mcopy.Program RISC-V program implementing the overlap-aware copy core of the EVM `MCOPY` opcode (0x5e, EIP-5656; see `EvmAsm/Codegen/Programs/EvmMcopyHandlers.lean`). MCOPY copies `length` bytes of EVM memory from `srcOffset` to `destOffset` within the SAME memory buffer, with `memmove` sema...
/- EvmAsm.Evm64.Mcopy.Program RISC-V program implementing the overlap-aware copy core of the EVM `MCOPY` opcode (0x5e, EIP-5656; see `EvmAsm/Codegen/Programs/EvmMcopyHandlers.lean`). MCOPY copies `length` bytes of EVM memory from `srcOffset` to `destOffset` within the SAME memory buffer, with `memmove` sema...
@@ -107,12 +107,21 @@ (evm_mcopy memBaseReg dstOffReg srcOffReg cntReg dstPtrReg srcPtrReg scratchReg) +/-- `evm_mcopy` is exactly 21 RISC-V instructions. -/ +theorem evm_mcopy_length + (memBaseReg dstOffReg srcOffReg cntReg dstPtrReg srcPtrReg + scratchReg : Reg) : + (evm_mcopy memBaseReg dstO...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_25d9df0f8a3f_0
543548603b5a6ca3
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Spec/UnifiedN1SelectedPath.lean
UnifiedN1SelectedPath
0
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
6
1
[ { "theorem_name": "evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_evidence_remainders_all_phases_uni", "depth": 1, "n_commands": 0, "n_lines": 6, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n exact evm_div_n1_stack_spec_within_word_exact_x1_n...
[ { "name": "evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_path_remainders_all_phases_uni", "text": "/-- Selected-path variant of\n `evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_remainders_all_phases_uni`. -/\ntheorem evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_path_remainders_al...
[ { "name": "evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_evidence_remainders_all_phases_uni", "fan_in": 1, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 78, "n_chars": 4116, "n_subproofs": 0, "n_tactics": 6, "cyclomatic": 1, "n_automation": 0, "n_rewrites...
1
import EvmAsm.Evm64.DivMod.Spec.UnifiedN1StepPath namespace EvmAsm.Evm64 open EvmAsm.Rv64 /-- Evidence-package variant of `evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_path_remainders_all_phases_uni`. -/ theorem evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_evidence_remainders_all_phases_uni ...
import EvmAsm.Evm64.DivMod.Spec.UnifiedN1StepPath namespace EvmAsm.Evm64 open EvmAsm.Rv64 /-- Selected-path variant of `evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_remainders_all_phases_uni`. -/ theorem evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_path_remainders_all_phases_uni (sp base : ...
@@ -4,6 +4,93 @@ open EvmAsm.Rv64 +/-- Selected-path variant of + `evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_remainders_all_phases_uni`. -/ +theorem evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_path_remainders_all_phases_uni + (sp base : Word) (a b : EvmWord) + (v5 v6 v7 v10 v11Old : ...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_25d9df0f8a3f_1
501f9712e6edca0a
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Spec/UnifiedN1SelectedPath.lean
UnifiedN1SelectedPath
1
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
6
1
[ { "theorem_name": "evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_all_phases_overestimate_path_uni", "depth": 1, "n_commands": 0, "n_lines": 11, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n have hpathFacts : N1AllTruePathEvidence a b :=\n ...
[ { "name": "evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_evidence_remainders_all_phases_uni", "text": "/-- Evidence-package variant of\n `evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_path_remainders_all_phases_uni`. -/\ntheorem evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_eviden...
[ { "name": "evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_all_phases_overestimate_path_uni", "fan_in": 1, "n_deps_direct": 1, "n_deps_transitive": 2, "n_lines": 111, "n_chars": 5687, "n_subproofs": 1, "n_tactics": 11, "cyclomatic": 1, "n_automation": 0, "n_rewrites...
2
import EvmAsm.Evm64.DivMod.Spec.UnifiedN1StepPath namespace EvmAsm.Evm64 open EvmAsm.Rv64 /-- Selected-path variant of `evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_remainders_all_phases_uni`. -/ theorem evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_path_remainders_all_phases_uni (sp base : ...
import EvmAsm.Evm64.DivMod.Spec.UnifiedN1StepPath namespace EvmAsm.Evm64 open EvmAsm.Rv64 /-- Selected-path variant of `evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_remainders_all_phases_uni`. -/ theorem evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_path_remainders_all_phases_uni (sp base : ...
@@ -91,6 +91,83 @@ hpathFacts.2.2.2.1 hpathFacts.2.2.2.2.1 hpathFacts.2.2.2.2.2 +/-- Evidence-package variant of + `evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_path_remainders_all_phases_uni`. -/ +theorem evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_evidence_remainders_all_phases_uni +...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_25d9df0f8a3f_2
28a24147a0f5edb1
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Spec/UnifiedN1SelectedPath.lean
UnifiedN1SelectedPath
2
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
6
1
[ { "theorem_name": "evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_r3_conjunct_overestimate_path_uni", "depth": 1, "n_commands": 0, "n_lines": 9, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n exact\n evm_div_n1_stack_spec_within_word_exact_...
[ { "name": "evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_all_phases_overestimate_path_uni", "text": "/-- All-phases overestimate-path variant of the exact-x1 no-NOP all-call n=1\n stack wrapper. This constructs the selected evidence package internally and\n delegates to the evidence-based wrap...
[ { "name": "evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_r3_conjunct_overestimate_path_uni", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 3, "n_lines": 107, "n_chars": 5450, "n_subproofs": 0, "n_tactics": 9, "cyclomatic": 1, "n_automation": 0, "n_rewrites...
3
import EvmAsm.Evm64.DivMod.Spec.UnifiedN1StepPath namespace EvmAsm.Evm64 open EvmAsm.Rv64 /-- Selected-path variant of `evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_remainders_all_phases_uni`. -/ theorem evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_path_remainders_all_phases_uni (sp base : ...
import EvmAsm.Evm64.DivMod.Spec.UnifiedN1StepPath namespace EvmAsm.Evm64 open EvmAsm.Rv64 /-- Selected-path variant of `evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_remainders_all_phases_uni`. -/ theorem evm_div_n1_stack_spec_within_word_exact_x1_noNop_true_path_remainders_all_phases_uni (sp base : ...
@@ -168,6 +168,116 @@ scratch_un0 hbnz hb3z hb2z hb1z hshift_nz halign hr3_lt hr2_lt hr1_lt (N1AllTruePathEvidence.toCallback hpathFacts) +/-- All-phases overestimate-path variant of the exact-x1 no-NOP all-call n=1 + stack wrapper. This constructs the selected evidence package internally and + delega...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_25d9df0f8a3f_3
cc15c7f41a680ca7
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Spec/UnifiedN1SelectedPath.lean
UnifiedN1SelectedPath
3
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
6
1
[ { "theorem_name": "evm_div_n1_stack_spec_within_word_exact_x1_true_evidence_remainders_all_phases_uni", "depth": 1, "n_commands": 0, "n_lines": 6, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n exact evm_div_n1_stack_spec_within_word_exact_x1_true_pa...
[ { "name": "evm_div_n1_stack_spec_within_word_exact_x1_true_path_remainders_all_phases_uni", "text": "/-- Selected-path variant of\n `evm_div_n1_stack_spec_within_word_exact_x1_true_remainders_all_phases_uni`. -/\ntheorem evm_div_n1_stack_spec_within_word_exact_x1_true_path_remainders_all_phases_uni\n ...
[ { "name": "evm_div_n1_stack_spec_within_word_exact_x1_true_evidence_remainders_all_phases_uni", "fan_in": 1, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 78, "n_chars": 4092, "n_subproofs": 0, "n_tactics": 6, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 0, ...
1
import EvmAsm.Evm64.DivMod.Spec.UnifiedN1StepPath namespace EvmAsm.Evm64 open EvmAsm.Rv64 /-- Evidence-package variant of `evm_div_n1_stack_spec_within_word_exact_x1_true_path_remainders_all_phases_uni`. -/ theorem evm_div_n1_stack_spec_within_word_exact_x1_true_evidence_remainders_all_phases_uni (sp base : ...
import EvmAsm.Evm64.DivMod.Spec.UnifiedN1StepPath namespace EvmAsm.Evm64 open EvmAsm.Rv64 /-- Selected-path variant of `evm_div_n1_stack_spec_within_word_exact_x1_true_remainders_all_phases_uni`. -/ theorem evm_div_n1_stack_spec_within_word_exact_x1_true_path_remainders_all_phases_uni (sp base : Word) (a b :...
@@ -4,6 +4,93 @@ open EvmAsm.Rv64 +/-- Selected-path variant of + `evm_div_n1_stack_spec_within_word_exact_x1_true_remainders_all_phases_uni`. -/ +theorem evm_div_n1_stack_spec_within_word_exact_x1_true_path_remainders_all_phases_uni + (sp base : Word) (a b : EvmWord) + (v5 v6 v7 v10 v11Old : Word) + (...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_25d9df0f8a3f_4
97d2dd6c096cfe98
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Spec/UnifiedN1SelectedPath.lean
UnifiedN1SelectedPath
4
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
6
1
[ { "theorem_name": "evm_div_n1_stack_spec_within_word_exact_x1_true_all_phases_overestimate_path_uni", "depth": 1, "n_commands": 0, "n_lines": 11, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n have hpathFacts : N1AllTruePathEvidence a b :=\n N1All...
[ { "name": "evm_div_n1_stack_spec_within_word_exact_x1_true_evidence_remainders_all_phases_uni", "text": "/-- Evidence-package variant of\n `evm_div_n1_stack_spec_within_word_exact_x1_true_path_remainders_all_phases_uni`. -/\ntheorem evm_div_n1_stack_spec_within_word_exact_x1_true_evidence_remainders_all_...
[ { "name": "evm_div_n1_stack_spec_within_word_exact_x1_true_all_phases_overestimate_path_uni", "fan_in": 1, "n_deps_direct": 1, "n_deps_transitive": 2, "n_lines": 111, "n_chars": 5677, "n_subproofs": 1, "n_tactics": 11, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 0, ...
2
import EvmAsm.Evm64.DivMod.Spec.UnifiedN1StepPath namespace EvmAsm.Evm64 open EvmAsm.Rv64 /-- Selected-path variant of `evm_div_n1_stack_spec_within_word_exact_x1_true_remainders_all_phases_uni`. -/ theorem evm_div_n1_stack_spec_within_word_exact_x1_true_path_remainders_all_phases_uni (sp base : Word) (a b :...
import EvmAsm.Evm64.DivMod.Spec.UnifiedN1StepPath namespace EvmAsm.Evm64 open EvmAsm.Rv64 /-- Selected-path variant of `evm_div_n1_stack_spec_within_word_exact_x1_true_remainders_all_phases_uni`. -/ theorem evm_div_n1_stack_spec_within_word_exact_x1_true_path_remainders_all_phases_uni (sp base : Word) (a b :...
@@ -91,6 +91,83 @@ hpathFacts.2.2.2.1 hpathFacts.2.2.2.2.1 hpathFacts.2.2.2.2.2 +/-- Evidence-package variant of + `evm_div_n1_stack_spec_within_word_exact_x1_true_path_remainders_all_phases_uni`. -/ +theorem evm_div_n1_stack_spec_within_word_exact_x1_true_evidence_remainders_all_phases_uni + (sp base...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_25d9df0f8a3f_5
8b21bcb135cac829
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Spec/UnifiedN1SelectedPath.lean
UnifiedN1SelectedPath
5
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
6
1
[ { "theorem_name": "evm_div_n1_stack_spec_within_word_exact_x1_true_r3_conjunct_overestimate_path_uni", "depth": 1, "n_commands": 0, "n_lines": 9, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n exact\n evm_div_n1_stack_spec_within_word_exact_x1_tru...
[ { "name": "evm_div_n1_stack_spec_within_word_exact_x1_true_all_phases_overestimate_path_uni", "text": "/-- All-phases overestimate-path variant of the exact-x1 all-call n=1 stack\n wrapper over `divCode`. This constructs the selected evidence package\n internally and delegates to the evidence-based wr...
[ { "name": "evm_div_n1_stack_spec_within_word_exact_x1_true_r3_conjunct_overestimate_path_uni", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 3, "n_lines": 107, "n_chars": 5425, "n_subproofs": 0, "n_tactics": 9, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 0, ...
3
import EvmAsm.Evm64.DivMod.Spec.UnifiedN1StepPath namespace EvmAsm.Evm64 open EvmAsm.Rv64 /-- Selected-path variant of `evm_div_n1_stack_spec_within_word_exact_x1_true_remainders_all_phases_uni`. -/ theorem evm_div_n1_stack_spec_within_word_exact_x1_true_path_remainders_all_phases_uni (sp base : Word) (a b :...
import EvmAsm.Evm64.DivMod.Spec.UnifiedN1StepPath namespace EvmAsm.Evm64 open EvmAsm.Rv64 /-- Selected-path variant of `evm_div_n1_stack_spec_within_word_exact_x1_true_remainders_all_phases_uni`. -/ theorem evm_div_n1_stack_spec_within_word_exact_x1_true_path_remainders_all_phases_uni (sp base : Word) (a b :...
@@ -168,6 +168,116 @@ scratch_un0 hbnz hb3z hb2z hb1z hshift_nz halign hr3_lt hr2_lt hr1_lt (N1AllTruePathEvidence.toCallback hpathFacts) +/-- All-phases overestimate-path variant of the exact-x1 all-call n=1 stack + wrapper over `divCode`. This constructs the selected evidence package + internally an...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_77c59b8526a2_0
6901224cb3d2cfce
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Spec/N4V5CallAddbackModWordLane.lean
N4V5CallAddbackModWordLane
0
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
6
3
[ { "theorem_name": "n4CallAddbackBeqQOutV5_bridge_bounds", "depth": 1, "n_commands": 0, "n_lines": 12, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n have hq := n4CallAddbackBeqQOutV5_toNat_eq_div a b hbnz hsem\n have ha_val : val256 (a.getLimbN 0) (...
[ { "name": "n4CallAddbackBeqQOutV5_toNat_eq_div", "text": "/-- From the addback semantic (`q_out = qTrue`), the corrected quotient's `toNat`\n equals `a.toNat / b.toNat`. Feeds the overestimate bridge's `hqHat_mul_le` /\n `hqHat_ge` bounds for the MOD addback getLimbN composition. -/\ntheorem n4CallAd...
[ { "name": "n4CallAddbackBeqQOutV5_bridge_bounds", "fan_in": 2, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 28, "n_chars": 1773, "n_subproofs": 3, "n_tactics": 12, "cyclomatic": 1, "n_automation": 2, "n_rewrites": 1, "n_structural": 3, "automation_only":...
1
/- EvmAsm.Evm64.DivMod.Spec.N4V5CallAddbackModWordLane n=4 MOD call+addback-beq remainder getLimbN facts (route ii): the four limbs of `EvmWord.mod a b` equal the funnel-shift-down of the addback-corrected remainder `un*Out`. Uses the corrected quotient `q_out` with the complete overestimate bridge `denorm_...
/- EvmAsm.Evm64.DivMod.Spec.N4V5CallAddbackModWordLane n=4 MOD call+addback-beq remainder getLimbN facts (route ii): the four limbs of `EvmWord.mod a b` equal the funnel-shift-down of the addback-corrected remainder `un*Out`. Uses the corrected quotient `q_out` with the complete overestimate bridge `denorm_...
@@ -30,6 +30,27 @@ val256 (n4CallAddbackBeqB0Prime b) (n4CallAddbackBeqB1Prime b) (n4CallAddbackBeqB2Prime b) (n4CallAddbackBeqB3Prime b) +/-- From the addback semantic (`q_out = qTrue`), the corrected quotient's `toNat` + equals `a.toNat / b.toNat`. Feeds the overestimate bridge's `hqHat_mul_le` / + `...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_77c59b8526a2_1
615490f7d031de60
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Spec/N4V5CallAddbackModWordLane.lean
N4V5CallAddbackModWordLane
1
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
6
2
[ { "theorem_name": "n4_call_addback_beq_mod_getLimbN_v5_single", "depth": 1, "n_commands": 0, "n_lines": 200, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n intro shift antiShift ms ab\n -- (0) shift bounds (mirror the call-skip template).\n have hc...
[ { "name": "mulsub_exact_val256_low4", "text": "/-- Exact-quotient mulsub remainder: if `q = D / V` (D = val256 u + u4*2^256 the\n normalized dividend, V = val256 v the normalized divisor), `V ≠ 0`, and the\n mulsub top-borrow `c3 ≤ u4`, then `val256 (mulsub q v u).low4 = D % V`.\n Via `mulsubN4_val...
[ { "name": "n4_call_addback_beq_mod_getLimbN_v5_single", "fan_in": 0, "n_deps_direct": 5, "n_deps_transitive": 5, "n_lines": 262, "n_chars": 15249, "n_subproofs": 38, "n_tactics": 193, "cyclomatic": 2, "n_automation": 19, "n_rewrites": 12, "n_structural": 12, "auto...
5
/- EvmAsm.Evm64.DivMod.Spec.N4V5CallAddbackModWordLane n=4 MOD call+addback-beq remainder getLimbN facts (route ii): the four limbs of `EvmWord.mod a b` equal the funnel-shift-down of the addback-corrected remainder `un*Out`. Uses the corrected quotient `q_out` with the complete overestimate bridge `denorm_...
/- EvmAsm.Evm64.DivMod.Spec.N4V5CallAddbackModWordLane n=4 MOD call+addback-beq remainder getLimbN facts (route ii): the four limbs of `EvmWord.mod a b` equal the funnel-shift-down of the addback-corrected remainder `un*Out`. Uses the corrected quotient `q_out` with the complete overestimate bridge `denorm_...
@@ -30,6 +30,31 @@ refine ⟨BitVec.eq_of_toNat_eq ?_, BitVec.eq_of_toNat_eq ?_, BitVec.eq_of_toNat_eq ?_, BitVec.eq_of_toNat_eq ?_⟩ <;> omega +/-- Exact-quotient mulsub remainder: if `q = D / V` (D = val256 u + u4*2^256 the + normalized dividend, V = val256 v the normalized divisor), `V ≠ 0`, and the ...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_77c59b8526a2_2
16f7c6b31ce1b639
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Spec/N4V5CallAddbackModWordLane.lean
N4V5CallAddbackModWordLane
2
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
6
2
[ { "theorem_name": "n4_call_addback_beq_mod_getLimbN_v5_single", "depth": 1, "n_commands": 0, "n_lines": 200, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n intro shift antiShift ms ab\n -- (0) shift bounds (mirror the call-skip template).\n have hc...
[ { "name": "mulsub_exact_val256_low4", "text": "/-- Exact-quotient mulsub remainder: if `q = D / V` (D = val256 u + u4*2^256 the\n normalized dividend, V = val256 v the normalized divisor), `V ≠ 0`, and the\n mulsub top-borrow `c3 ≤ u4`, then `val256 (mulsub q v u).low4 = D % V`.\n Via `mulsubN4_val...
[ { "name": "n4_call_addback_beq_mod_getLimbN_v5_double", "fan_in": 0, "n_deps_direct": 5, "n_deps_transitive": 5, "n_lines": 348, "n_chars": 21329, "n_subproofs": 38, "n_tactics": 193, "cyclomatic": 2, "n_automation": 19, "n_rewrites": 12, "n_structural": 12, "auto...
5
/- EvmAsm.Evm64.DivMod.Spec.N4V5CallAddbackModWordLane n=4 MOD call+addback-beq remainder getLimbN facts (route ii): the four limbs of `EvmWord.mod a b` equal the funnel-shift-down of the addback-corrected remainder `un*Out`. Uses the corrected quotient `q_out` with the complete overestimate bridge `denorm_...
/- EvmAsm.Evm64.DivMod.Spec.N4V5CallAddbackModWordLane n=4 MOD call+addback-beq remainder getLimbN facts (route ii): the four limbs of `EvmWord.mod a b` equal the funnel-shift-down of the addback-corrected remainder `un*Out`. Uses the corrected quotient `q_out` with the complete overestimate bridge `denorm_...
@@ -30,6 +30,31 @@ refine ⟨BitVec.eq_of_toNat_eq ?_, BitVec.eq_of_toNat_eq ?_, BitVec.eq_of_toNat_eq ?_, BitVec.eq_of_toNat_eq ?_⟩ <;> omega +/-- Exact-quotient mulsub remainder: if `q = D / V` (D = val256 u + u4*2^256 the + normalized dividend, V = val256 v the normalized divisor), `V ≠ 0`, and the ...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_90d4a15afc4f_0
6d087e56f9c21732
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Compose/FastSetupV6.lean
FastSetupV6
0
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
7
3
[ { "theorem_name": "divK_fastSetup_body_spec_within", "depth": 1, "n_commands": 0, "n_lines": 10, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n intro antiShift b0Prime cr\n rw [divKFastSetupPost_unfold]\n have I0 := sd_spec_gen_within .x12 .x6 sp s...
[ { "name": "divKFastSetupPost_unfold", "text": "theorem divKFastSetupPost_unfold\n {sp s b0 antiShift b0Prime : Word} :\n divKFastSetupPost sp s b0 antiShift b0Prime =\n ((.x12 ↦ᵣ sp) ** (.x5 ↦ᵣ b0Prime) ** (.x6 ↦ᵣ s) ** (.x0 ↦ᵣ (0 : Word)) **\n (.x2 ↦ᵣ antiShift) **\n ((sp + signExten...
[ { "name": "divK_fastSetup_body_spec_within", "fan_in": 1, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 27, "n_chars": 1370, "n_subproofs": 6, "n_tactics": 10, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 1, "n_structural": 1, "automation_only": fals...
1
/- EvmAsm.Evm64.DivMod.Compose.FastSetupV6 v6 fast-path setup brick over `divCodeV6`. Stores the CLZ shift `s`, computes `antiShift = -s`, normalizes `b0' = b0 << s`, and `BEQ x6 x0 88` to copyAU if `s = 0` (else fall through to normA). The `@[irreducible]` post wrapper (`divKFastSetupPost`) ensures downstr...
/- EvmAsm.Evm64.DivMod.Compose.FastSetupV6 v6 fast-path setup brick over `divCodeV6`. Stores the CLZ shift `s`, computes `antiShift = -s`, normalizes `b0' = b0 << s`, and `BEQ x6 x0 88` to copyAU if `s = 0` (else fall through to normA). The `@[irreducible]` post wrapper (`divKFastSetupPost`) ensures downstr...
@@ -39,6 +39,21 @@ ((sp + signExtend12 3992) ↦ₘ s) ** ((sp + signExtend12 3984) ↦ₘ b0Prime) +theorem divKFastSetupPost_unfold + {sp s b0 antiShift b0Prime : Word} : + divKFastSetupPost sp s b0 antiShift b0Prime = + ((.x12 ↦ᵣ sp) ** (.x5 ↦ᵣ b0Prime) ** (.x6 ↦ᵣ s) ** (.x0 ↦ᵣ (0 : Word)) ** + (.x2...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_90d4a15afc4f_1
6badda91c46fa4ff
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Compose/FastSetupV6.lean
FastSetupV6
1
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
7
3
[ { "theorem_name": "divK_fastSetup_body_spec_within", "depth": 1, "n_commands": 0, "n_lines": 10, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n intro antiShift b0Prime cr\n rw [divKFastSetupPost_unfold]\n have I0 := sd_spec_gen_within .x12 .x6 sp s...
[ { "name": "divKFastSetupPost_unfold", "text": "theorem divKFastSetupPost_unfold\n {sp s b0 antiShift b0Prime : Word} :\n divKFastSetupPost sp s b0 antiShift b0Prime =\n ((.x12 ↦ᵣ sp) ** (.x5 ↦ᵣ b0Prime) ** (.x6 ↦ᵣ s) ** (.x0 ↦ᵣ (0 : Word)) **\n (.x2 ↦ᵣ antiShift) **\n ((sp + signExten...
[ { "name": "divK_fastSetup_body_spec_within_v6", "fan_in": 2, "n_deps_direct": 3, "n_deps_transitive": 4, "n_lines": 26, "n_chars": 1319, "n_subproofs": 1, "n_tactics": 8, "cyclomatic": 1, "n_automation": 2, "n_rewrites": 0, "n_structural": 2, "automation_only": fa...
4
/- EvmAsm.Evm64.DivMod.Compose.FastSetupV6 v6 fast-path setup brick over `divCodeV6`. Stores the CLZ shift `s`, computes `antiShift = -s`, normalizes `b0' = b0 << s`, and `BEQ x6 x0 88` to copyAU if `s = 0` (else fall through to normA). The `@[irreducible]` post wrapper (`divKFastSetupPost`) ensures downstr...
/- EvmAsm.Evm64.DivMod.Compose.FastSetupV6 v6 fast-path setup brick over `divCodeV6`. Stores the CLZ shift `s`, computes `antiShift = -s`, normalizes `b0' = b0 << s`, and `BEQ x6 x0 88` to copyAU if `s = 0` (else fall through to normA). The `@[irreducible]` post wrapper (`divKFastSetupPost`) ensures downstr...
@@ -39,6 +39,21 @@ ((sp + signExtend12 3992) ↦ₘ s) ** ((sp + signExtend12 3984) ↦ₘ b0Prime) +theorem divKFastSetupPost_unfold + {sp s b0 antiShift b0Prime : Word} : + divKFastSetupPost sp s b0 antiShift b0Prime = + ((.x12 ↦ᵣ sp) ** (.x5 ↦ᵣ b0Prime) ** (.x6 ↦ᵣ s) ** (.x0 ↦ᵣ (0 : Word)) ** + (.x2...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_90d4a15afc4f_2
3d0cdaa626a649d9
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Compose/FastSetupV6.lean
FastSetupV6
2
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
7
3
[ { "theorem_name": "divK_fastSetup_body_spec_within_v6", "depth": 1, "n_commands": 0, "n_lines": 8, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n intro antiShift b0Prime\n have h := divK_fastSetup_body_spec_within sp v5 s b0 v2Old m3992 m3984 (base ...
[ { "name": "divK_fastSetup_code_sub_divCodeV6", "text": "private theorem divK_fastSetup_code_sub_divCodeV6 {base : Word} :\n ∀ a i, (CodeReq.ofProg (base + v6SetupOff) (divK_fastSetup 88)) a = some i →\n (divCodeV6 base) a = some i := by\n unfold divCodeV6; simp only [CodeReq.unionAll_cons]\n skipB...
[ { "name": "divK_fastSetup_shiftNz_spec_within_v6", "fan_in": 0, "n_deps_direct": 5, "n_deps_transitive": 7, "n_lines": 63, "n_chars": 3157, "n_subproofs": 10, "n_tactics": 44, "cyclomatic": 1, "n_automation": 3, "n_rewrites": 4, "n_structural": 8, "automation_only...
7
/- EvmAsm.Evm64.DivMod.Compose.FastSetupV6 v6 fast-path setup brick over `divCodeV6`. Stores the CLZ shift `s`, computes `antiShift = -s`, normalizes `b0' = b0 << s`, and `BEQ x6 x0 88` to copyAU if `s = 0` (else fall through to normA). The `@[irreducible]` post wrapper (`divKFastSetupPost`) ensures downstr...
/- EvmAsm.Evm64.DivMod.Compose.FastSetupV6 v6 fast-path setup brick over `divCodeV6`. Stores the CLZ shift `s`, computes `antiShift = -s`, normalizes `b0' = b0 << s`, and `BEQ x6 x0 88` to copyAU if `s = 0` (else fall through to normA). The `@[irreducible]` post wrapper (`divKFastSetupPost`) ensures downstr...
@@ -54,6 +54,17 @@ -- Code subsumption: fastSetup (block index 2 of divCodeV6) into divCodeV6. -- ============================================================================ +private theorem divK_fastSetup_code_sub_divCodeV6 {base : Word} : + ∀ a i, (CodeReq.ofProg (base + v6SetupOff) (divK_fastSetup 88)) a = s...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_90d4a15afc4f_3
af7c2edaa31da82c
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Compose/FastSetupV6.lean
FastSetupV6
3
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
7
3
[ { "theorem_name": "divK_fastSetup_body_spec_within_v6", "depth": 1, "n_commands": 0, "n_lines": 8, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n intro antiShift b0Prime\n have h := divK_fastSetup_body_spec_within sp v5 s b0 v2Old m3992 m3984 (base ...
[ { "name": "divK_fastSetup_code_sub_divCodeV6", "text": "private theorem divK_fastSetup_code_sub_divCodeV6 {base : Word} :\n ∀ a i, (CodeReq.ofProg (base + v6SetupOff) (divK_fastSetup 88)) a = some i →\n (divCodeV6 base) a = some i := by\n unfold divCodeV6; simp only [CodeReq.unionAll_cons]\n skipB...
[ { "name": "divK_fastSetup_shift0_spec_within_v6", "fan_in": 0, "n_deps_direct": 5, "n_deps_transitive": 7, "n_lines": 65, "n_chars": 3285, "n_subproofs": 10, "n_tactics": 44, "cyclomatic": 1, "n_automation": 3, "n_rewrites": 4, "n_structural": 8, "automation_only"...
7
/- EvmAsm.Evm64.DivMod.Compose.FastSetupV6 v6 fast-path setup brick over `divCodeV6`. Stores the CLZ shift `s`, computes `antiShift = -s`, normalizes `b0' = b0 << s`, and `BEQ x6 x0 88` to copyAU if `s = 0` (else fall through to normA). The `@[irreducible]` post wrapper (`divKFastSetupPost`) ensures downstr...
/- EvmAsm.Evm64.DivMod.Compose.FastSetupV6 v6 fast-path setup brick over `divCodeV6`. Stores the CLZ shift `s`, computes `antiShift = -s`, normalizes `b0' = b0 << s`, and `BEQ x6 x0 88` to copyAU if `s = 0` (else fall through to normA). The `@[irreducible]` post wrapper (`divKFastSetupPost`) ensures downstr...
@@ -54,6 +54,17 @@ -- Code subsumption: fastSetup (block index 2 of divCodeV6) into divCodeV6. -- ============================================================================ +private theorem divK_fastSetup_code_sub_divCodeV6 {base : Word} : + ∀ a i, (CodeReq.ofProg (base + v6SetupOff) (divK_fastSetup 88)) a = s...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_39e93f787523_0
e427d78afa32aa37
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Spec/N1ExactV4PathEvidence.lean
N1ExactV4PathEvidence
0
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
4
2
[ { "theorem_name": "FullDivN1CallMaxmaxmaxHdivs_of_selected_semantic_facts", "depth": 1, "n_commands": 0, "n_lines": 8, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n exact FullDivN1CallMaxmaxmaxHdivs_of_selected_semantic_evidence\n sp base a b\n ...
[ { "name": "FullDivN1CallMaxmaxmaxHdivs_of_selected_semantic_evidence", "text": "/-- Project the named hdiv package from selected semantic evidence. -/\ntheorem FullDivN1CallMaxmaxmaxHdivs_of_selected_semantic_evidence\n (sp base : Word) (a b : EvmWord)\n (jOld v5Old v6Old v7Old v10Old v11Old v2Old : W...
[ { "name": "FullDivN1CallMaxmaxmaxHdivs_of_selected_semantic_facts", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 28, "n_chars": 1355, "n_subproofs": 0, "n_tactics": 8, "cyclomatic": 1, "n_automation": 0, "n_rewrites": 0, "n_structural": 1, "...
1
/- EvmAsm.Evm64.DivMod.Spec.N1ExactV4PathEvidence Bridges canonical N1 v4 path evidence into the selected semantic evidence package without adding more surface area to the large N1ExactV4 file. -/ import EvmAsm.Evm64.DivMod.Spec.N1ExactV4 import EvmAsm.Evm64.DivMod.Spec.N1PathCallbacks namespace EvmAsm.Evm64 ...
/- EvmAsm.Evm64.DivMod.Spec.N1ExactV4PathEvidence Bridges canonical N1 v4 path evidence into the selected semantic evidence package without adding more surface area to the large N1ExactV4 file. -/ import EvmAsm.Evm64.DivMod.Spec.N1ExactV4 import EvmAsm.Evm64.DivMod.Spec.N1PathCallbacks namespace EvmAsm.Evm64 ...
@@ -12,6 +12,34 @@ open EvmAsm.Rv64 +/-- Project the named hdiv package from selected semantic evidence. -/ +theorem FullDivN1CallMaxmaxmaxHdivs_of_selected_semantic_evidence + (sp base : Word) (a b : EvmWord) + (jOld v5Old v6Old v7Old v10Old v11Old v2Old : Word) + (a0 a1 a2 a3 b0 b1 b2 b3 : Word) + (q...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_39e93f787523_1
2cb0a7d3f72559f2
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Spec/N1ExactV4PathEvidence.lean
N1ExactV4PathEvidence
1
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
4
2
[ { "theorem_name": "FullDivN1CallMaxmaxmaxHdivs_of_selected_semantic_facts", "depth": 1, "n_commands": 0, "n_lines": 8, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n exact FullDivN1CallMaxmaxmaxHdivs_of_selected_semantic_evidence\n sp base a b\n ...
[ { "name": "FullDivN1CallMaxmaxmaxHdivs_of_selected_semantic_evidence", "text": "/-- Project the named hdiv package from selected semantic evidence. -/\ntheorem FullDivN1CallMaxmaxmaxHdivs_of_selected_semantic_evidence\n (sp base : Word) (a b : EvmWord)\n (jOld v5Old v6Old v7Old v10Old v11Old v2Old : W...
[ { "name": "FullDivN1CallMaxmaxmaxHdivs_of_path_evidence_getLimbN", "fan_in": 1, "n_deps_direct": 2, "n_deps_transitive": 2, "n_lines": 87, "n_chars": 4294, "n_subproofs": 0, "n_tactics": 13, "cyclomatic": 1, "n_automation": 8, "n_rewrites": 0, "n_structural": 1, "...
2
/- EvmAsm.Evm64.DivMod.Spec.N1ExactV4PathEvidence Bridges canonical N1 v4 path evidence into the selected semantic evidence package without adding more surface area to the large N1ExactV4 file. -/ import EvmAsm.Evm64.DivMod.Spec.N1ExactV4 import EvmAsm.Evm64.DivMod.Spec.N1PathCallbacks namespace EvmAsm.Evm64 ...
/- EvmAsm.Evm64.DivMod.Spec.N1ExactV4PathEvidence Bridges canonical N1 v4 path evidence into the selected semantic evidence package without adding more surface area to the large N1ExactV4 file. -/ import EvmAsm.Evm64.DivMod.Spec.N1ExactV4 import EvmAsm.Evm64.DivMod.Spec.N1PathCallbacks namespace EvmAsm.Evm64 ...
@@ -96,6 +96,34 @@ (N1AllTruePathEvidence.selectedCarryFacts hpath) hfacts +/-- Project the named hdiv package from selected semantic evidence. -/ +theorem FullDivN1CallMaxmaxmaxHdivs_of_selected_semantic_evidence + (sp base : Word) (a b : EvmWord) + (jOld v5Old v6Old v7Old v10Old v11Old v2Old : W...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...
ablate_39e93f787523_2
be3f6bbc85e1fa89
lean
lean
github.com/Verified-zkEVM/evm-asm
7d5875858bc3727250adb6880c8339048365b1b6
EvmAsm/Evm64/DivMod/Spec/N1ExactV4PathEvidence.lean
N1ExactV4PathEvidence
2
lemma_delete
null
null
false
0.5
1
1
false
0
inf
0
inf
42
4
2
[ { "theorem_name": "evm_div_n1_call_maxmaxmax_stack_spec_within_word_v4_preNoX1_callableExtra_x9In_exactFrame_unified_of_selected_path_word_getLimbN", "depth": 1, "n_commands": 0, "n_lines": 14, "is_leaf": true, "centrality": 0, "method": "deleted-dep", "proof_text": " by\n exact\n ...
[ { "name": "evm_div_n1_call_maxmaxmax_stack_spec_within_word_v4_preNoX1_callableExtra_x9In_exactFrame_unified_of_selected_path_hdivs_getLimbN", "text": "/-- Full-v4 N1 stack wrapper consuming all-true N1 path evidence plus the\n named hdiv package for canonical `getLimbN` inputs. -/\ntheorem evm_div_n1_ca...
[ { "name": "evm_div_n1_call_maxmaxmax_stack_spec_within_word_v4_preNoX1_callableExtra_x9In_exactFrame_unified_of_selected_path_word_getLimbN", "fan_in": 0, "n_deps_direct": 1, "n_deps_transitive": 1, "n_lines": 118, "n_chars": 5942, "n_subproofs": 0, "n_tactics": 14, "cyclomatic":...
1
/- EvmAsm.Evm64.DivMod.Spec.N1ExactV4PathEvidence Bridges canonical N1 v4 path evidence into the selected semantic evidence package without adding more surface area to the large N1ExactV4 file. -/ import EvmAsm.Evm64.DivMod.Spec.N1ExactV4 import EvmAsm.Evm64.DivMod.Spec.N1PathCallbacks namespace EvmAsm.Evm64 ...
/- EvmAsm.Evm64.DivMod.Spec.N1ExactV4PathEvidence Bridges canonical N1 v4 path evidence into the selected semantic evidence package without adding more surface area to the large N1ExactV4 file. -/ import EvmAsm.Evm64.DivMod.Spec.N1ExactV4 import EvmAsm.Evm64.DivMod.Spec.N1PathCallbacks namespace EvmAsm.Evm64 ...
@@ -13,6 +13,132 @@ open EvmAsm.Rv64 /-- Full-v4 N1 stack wrapper consuming all-true N1 path evidence plus the + named hdiv package for canonical `getLimbN` inputs. -/ +theorem evm_div_n1_call_maxmaxmax_stack_spec_within_word_v4_preNoX1_callableExtra_x9In_exactFrame_unified_of_selected_path_hdivs_getLimbN + (...
{ "repo": "evm-asm", "git_repo": "github.com/Verified-zkEVM/evm-asm", "revision": "7d5875858bc3727250adb6880c8339048365b1b6", "lean_toolchain": "leanprover/lean4:v4.30.0-rc1", "proof_assistant": "lean", "ablator": "ablators/lean (corollary-delete-lemmas-leaves-all)", "ablator_flags": [ "--corollary-de...