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_104a01cc3908_2 | a60ab8d7689b5fbc | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/CallableV1Legacy.lean | CallableV1Legacy | 2 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 35 | 1 | [
{
"theorem_name": "evm_div_callable_code_v1_ret_sub",
"depth": 1,
"n_commands": 0,
"n_lines": 5,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n intro a i h\n apply callable_b12_div_v1\n unfold cc_ret_code cc_ret\n simpa [CodeReq.ofProg] using h",
... | [
{
"name": "callable_b12_div_v1",
"text": "private theorem callable_b12_div_v1 {b : Word} :\n ∀ a i, (cc_ret_code (b + nopOff)) a = some i →\n (evm_div_callable_code_v1 b) a = some i := by\n unfold evm_div_callable_code_v1; simp only [CodeReq.unionAll_cons]\n skipBlockCC; skipBlockCC; skipBlockCC; ... | [
{
"name": "evm_div_callable_code_v1_ret_sub",
"fan_in": 6,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 9,
"n_chars": 298,
"n_subproofs": 0,
"n_tactics": 5,
"cyclomatic": 1,
"n_automation": 1,
"n_rewrites": 1,
"n_structural": 2,
"automation_only": false,... | 1 | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | @@ -183,9 +183,20 @@
-- Legacy v1 code subsumption lemmas
-- ----------------------------------------------------------------------------
+private theorem callable_b12_div_v1 {b : Word} :
+ ∀ a i, (cc_ret_code (b + nopOff)) a = some i →
+ (evm_div_callable_code_v1 b) a = some i := by
+ unfold evm_div_calla... | {
"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_104a01cc3908_3 | 87cedf95d56cca0b | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/CallableV1Legacy.lean | CallableV1Legacy | 3 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 35 | 1 | [
{
"theorem_name": "evm_mod_callable_code_v1_ret_sub",
"depth": 1,
"n_commands": 0,
"n_lines": 5,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n intro a i h\n apply callable_b12_mod_v1\n unfold cc_ret_code cc_ret\n simpa [CodeReq.ofProg] using h",
... | [
{
"name": "callable_b12_mod_v1",
"text": "private theorem callable_b12_mod_v1 {b : Word} :\n ∀ a i, (cc_ret_code (b + nopOff)) a = some i →\n (evm_mod_callable_code_v1 b) a = some i := by\n unfold evm_mod_callable_code_v1; simp only [CodeReq.unionAll_cons]\n skipBlockCC; skipBlockCC; skipBlockCC; ... | [
{
"name": "evm_mod_callable_code_v1_ret_sub",
"fan_in": 4,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 9,
"n_chars": 298,
"n_subproofs": 0,
"n_tactics": 5,
"cyclomatic": 1,
"n_automation": 1,
"n_rewrites": 1,
"n_structural": 2,
"automation_only": false,... | 1 | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | @@ -183,9 +183,20 @@
-- Legacy v1 code subsumption lemmas
-- ----------------------------------------------------------------------------
+private theorem callable_b12_mod_v1 {b : Word} :
+ ∀ a i, (cc_ret_code (b + nopOff)) a = some i →
+ (evm_mod_callable_code_v1 b) a = some i := by
+ unfold evm_mod_calla... | {
"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_104a01cc3908_4 | fd48fbb7f99a4b89 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/CallableV1Legacy.lean | CallableV1Legacy | 4 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 35 | 6 | [
{
"theorem_name": "evm_div_callable_v1_spec_from_noNop",
"depth": 1,
"n_commands": 0,
"n_lines": 15,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n have hpcFreePost : (divStackDispatchPost sp a b).pcFree := by\n rw [divStackDispatchPost_unfold]\n ... | [
{
"name": "evm_div_callable_code_v1_ret_sub",
"text": "theorem evm_div_callable_code_v1_ret_sub {base : Word} :\n ∀ a i, (CodeReq.singleton (base + nopOff) (.JALR .x0 .x1 0)) a = some i →\n (evm_div_callable_code_v1 base) a = some i := by\n intro a i h\n apply callable_b12_div_v1\n unfold cc_ret_... | [
{
"name": "evm_div_callable_v1_spec_from_noNop",
"fan_in": 1,
"n_deps_direct": 2,
"n_deps_transitive": 16,
"n_lines": 35,
"n_chars": 1635,
"n_subproofs": 5,
"n_tactics": 15,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 2,
"n_structural": 1,
"automation_only":... | 16 | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | @@ -281,6 +281,14 @@
(CodeReq.union_split_mono callable_b13_div_v1
(fun _ _ h => by simp [CodeReq.unionAll_nil, CodeReq.empty] at h)))))))))))))
+theorem evm_div_callable_code_v1_ret_sub {base : Word} :
+ ∀ a i, (CodeReq.singleton (base + nopOff) (.JALR .x0 .x1 0)) a = some i →
+ (evm_div_callable_c... | {
"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_104a01cc3908_5 | bc93c96e10450bef | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/CallableV1Legacy.lean | CallableV1Legacy | 5 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 35 | 1 | [
{
"theorem_name": "evm_div_callable_v1_spec_from_branch_noNop",
"depth": 1,
"n_commands": 0,
"n_lines": 9,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n exact evm_div_callable_v1_spec_from_noNop\n sp base raVal a b v5 v6 v7 v10 v11\n q0 q1 q2 ... | [
{
"name": "evm_div_callable_v1_spec_from_noNop",
"text": "theorem evm_div_callable_v1_spec_from_noNop (sp base raVal : Word)\n (a b : EvmWord) (v5 v6 v7 v10 v11 : Word)\n (q0 q1 q2 q3 u0 u1 u2 u3 u4 u5 u6 u7\n nMem shiftMem jMem retMem dMem dloMem scratchUn0 : Word)\n (branch : DivStackSpecCase... | [
{
"name": "evm_div_callable_v1_spec_from_branch_noNop",
"fan_in": 0,
"n_deps_direct": 1,
"n_deps_transitive": 17,
"n_lines": 22,
"n_chars": 992,
"n_subproofs": 0,
"n_tactics": 9,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 1,
"automation_o... | 17 | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | @@ -289,6 +289,40 @@
unfold cc_ret_code cc_ret
simpa [CodeReq.ofProg] using h
+theorem evm_div_callable_v1_spec_from_noNop (sp base raVal : Word)
+ (a b : EvmWord) (v5 v6 v7 v10 v11 : Word)
+ (q0 q1 q2 q3 u0 u1 u2 u3 u4 u5 u6 u7
+ nMem shiftMem jMem retMem dMem dloMem scratchUn0 : Word)
+ (branch :... | {
"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_104a01cc3908_6 | a25adec71b0b3a71 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/CallableV1Legacy.lean | CallableV1Legacy | 6 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 35 | 6 | [
{
"theorem_name": "evm_div_callable_v1_spec_from_noNop",
"depth": 1,
"n_commands": 0,
"n_lines": 15,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n have hpcFreePost : (divStackDispatchPost sp a b).pcFree := by\n rw [divStackDispatchPost_unfold]\n ... | [
{
"name": "evm_div_callable_code_v1_ret_sub",
"text": "theorem evm_div_callable_code_v1_ret_sub {base : Word} :\n ∀ a i, (CodeReq.singleton (base + nopOff) (.JALR .x0 .x1 0)) a = some i →\n (evm_div_callable_code_v1 base) a = some i := by\n intro a i h\n apply callable_b12_div_v1\n unfold cc_ret_... | [
{
"name": "evm_div_callable_v1_spec_from_noNop_preserving_x1",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 16,
"n_lines": 33,
"n_chars": 1575,
"n_subproofs": 4,
"n_tactics": 13,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 2,
"n_structural": 1,
"aut... | 16 | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | @@ -281,6 +281,14 @@
(CodeReq.union_split_mono callable_b13_div_v1
(fun _ _ h => by simp [CodeReq.unionAll_nil, CodeReq.empty] at h)))))))))))))
+theorem evm_div_callable_code_v1_ret_sub {base : Word} :
+ ∀ a i, (CodeReq.singleton (base + nopOff) (.JALR .x0 .x1 0)) a = some i →
+ (evm_div_callable_c... | {
"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_104a01cc3908_7 | 22d06475e9512c65 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/CallableV1Legacy.lean | CallableV1Legacy | 7 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 35 | 6 | [
{
"theorem_name": "evm_div_callable_v1_spec_from_noNop",
"depth": 1,
"n_commands": 0,
"n_lines": 15,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n have hpcFreePost : (divStackDispatchPost sp a b).pcFree := by\n rw [divStackDispatchPost_unfold]\n ... | [
{
"name": "evm_div_callable_code_v1_ret_sub",
"text": "theorem evm_div_callable_code_v1_ret_sub {base : Word} :\n ∀ a i, (CodeReq.singleton (base + nopOff) (.JALR .x0 .x1 0)) a = some i →\n (evm_div_callable_code_v1 base) a = some i := by\n intro a i h\n apply callable_b12_div_v1\n unfold cc_ret_... | [
{
"name": "evm_div_callable_v1_spec_from_noNop_branch_return_x1",
"fan_in": 1,
"n_deps_direct": 2,
"n_deps_transitive": 16,
"n_lines": 33,
"n_chars": 1624,
"n_subproofs": 4,
"n_tactics": 13,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 2,
"n_structural": 1,
"... | 16 | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | @@ -281,6 +281,14 @@
(CodeReq.union_split_mono callable_b13_div_v1
(fun _ _ h => by simp [CodeReq.unionAll_nil, CodeReq.empty] at h)))))))))))))
+theorem evm_div_callable_code_v1_ret_sub {base : Word} :
+ ∀ a i, (CodeReq.singleton (base + nopOff) (.JALR .x0 .x1 0)) a = some i →
+ (evm_div_callable_c... | {
"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_104a01cc3908_8 | dbd9a0e2764f2e6e | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/CallableV1Legacy.lean | CallableV1Legacy | 8 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 35 | 1 | [
{
"theorem_name": "evm_div_callable_v1_spec_from_noNop_branch_return_x1_framed",
"depth": 1,
"n_commands": 0,
"n_lines": 7,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n exact\n cpsTripleWithin_frameR F (by pcFree)\n (evm_div_callable_v1_spe... | [
{
"name": "evm_div_callable_v1_spec_from_noNop_branch_return_x1",
"text": "theorem evm_div_callable_v1_spec_from_noNop_branch_return_x1 (sp base : Word)\n (a b : EvmWord) (v5 v6 v7 v10 v11 : Word)\n (q0 q1 q2 q3 u0 u1 u2 u3 u4 u5 u6 u7\n nMem shiftMem jMem retMem dMem dloMem scratchUn0 : Word)\n ... | [
{
"name": "evm_div_callable_v1_spec_from_noNop_branch_return_x1_framed",
"fan_in": 0,
"n_deps_direct": 1,
"n_deps_transitive": 17,
"n_lines": 28,
"n_chars": 1340,
"n_subproofs": 0,
"n_tactics": 7,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 1,... | 17 | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | @@ -289,6 +289,38 @@
unfold cc_ret_code cc_ret
simpa [CodeReq.ofProg] using h
+theorem evm_div_callable_v1_spec_from_noNop_branch_return_x1 (sp base : Word)
+ (a b : EvmWord) (v5 v6 v7 v10 v11 : Word)
+ (q0 q1 q2 q3 u0 u1 u2 u3 u4 u5 u6 u7
+ nMem shiftMem jMem retMem dMem dloMem scratchUn0 : 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_104a01cc3908_9 | 00b01ca21e83c1f8 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/CallableV1Legacy.lean | CallableV1Legacy | 9 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 35 | 6 | [
{
"theorem_name": "evm_div_callable_v1_spec_from_noNop",
"depth": 1,
"n_commands": 0,
"n_lines": 15,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n have hpcFreePost : (divStackDispatchPost sp a b).pcFree := by\n rw [divStackDispatchPost_unfold]\n ... | [
{
"name": "evm_div_callable_code_v1_ret_sub",
"text": "theorem evm_div_callable_code_v1_ret_sub {base : Word} :\n ∀ a i, (CodeReq.singleton (base + nopOff) (.JALR .x0 .x1 0)) a = some i →\n (evm_div_callable_code_v1 base) a = some i := by\n intro a i h\n apply callable_b12_div_v1\n unfold cc_ret_... | [
{
"name": "evm_div_callable_v1_spec_from_noNop_concrete_preserving_x1_x9",
"fan_in": 1,
"n_deps_direct": 2,
"n_deps_transitive": 16,
"n_lines": 61,
"n_chars": 2798,
"n_subproofs": 4,
"n_tactics": 37,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 3,
"n_structural":... | 16 | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | @@ -281,6 +281,14 @@
(CodeReq.union_split_mono callable_b13_div_v1
(fun _ _ h => by simp [CodeReq.unionAll_nil, CodeReq.empty] at h)))))))))))))
+theorem evm_div_callable_code_v1_ret_sub {base : Word} :
+ ∀ a i, (CodeReq.singleton (base + nopOff) (.JALR .x0 .x1 0)) a = some i →
+ (evm_div_callable_c... | {
"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_104a01cc3908_10 | 6803a19672dbe5b3 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/CallableV1Legacy.lean | CallableV1Legacy | 10 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 35 | 6 | [
{
"theorem_name": "evm_div_callable_v1_spec_from_noNop",
"depth": 1,
"n_commands": 0,
"n_lines": 15,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n have hpcFreePost : (divStackDispatchPost sp a b).pcFree := by\n rw [divStackDispatchPost_unfold]\n ... | [
{
"name": "evm_div_callable_code_v1_ret_sub",
"text": "theorem evm_div_callable_code_v1_ret_sub {base : Word} :\n ∀ a i, (CodeReq.singleton (base + nopOff) (.JALR .x0 .x1 0)) a = some i →\n (evm_div_callable_code_v1 base) a = some i := by\n intro a i h\n apply callable_b12_div_v1\n unfold cc_ret_... | [
{
"name": "evm_div_callable_v1_spec_from_noNop_preserving_x1_x9",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 16,
"n_lines": 46,
"n_chars": 2175,
"n_subproofs": 4,
"n_tactics": 24,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 1,
"n_structural": 1,
"... | 16 | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | @@ -281,6 +281,14 @@
(CodeReq.union_split_mono callable_b13_div_v1
(fun _ _ h => by simp [CodeReq.unionAll_nil, CodeReq.empty] at h)))))))))))))
+theorem evm_div_callable_code_v1_ret_sub {base : Word} :
+ ∀ a i, (CodeReq.singleton (base + nopOff) (.JALR .x0 .x1 0)) a = some i →
+ (evm_div_callable_c... | {
"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_104a01cc3908_11 | 063313d363133463 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/CallableV1Legacy.lean | CallableV1Legacy | 11 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 35 | 1 | [
{
"theorem_name": "evm_div_callable_bzero_v1_concrete_preserving_x1_spec",
"depth": 1,
"n_commands": 0,
"n_lines": 10,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n exact\n evm_div_callable_v1_spec_from_noNop_concrete_preserving_x1_x9\n sp b... | [
{
"name": "evm_div_callable_v1_spec_from_noNop_concrete_preserving_x1_x9",
"text": "theorem evm_div_callable_v1_spec_from_noNop_concrete_preserving_x1_x9\n (sp base x9Val raVal : Word) (a b : EvmWord)\n (v2 v5 v6 v7 v10 v11 : Word)\n (q0 q1 q2 q3 u0 u1 u2 u3 u4 u5 u6 u7\n nMem shiftMem jMem ret... | [
{
"name": "evm_div_callable_bzero_v1_concrete_preserving_x1_spec",
"fan_in": 0,
"n_deps_direct": 1,
"n_deps_transitive": 17,
"n_lines": 26,
"n_chars": 1180,
"n_subproofs": 0,
"n_tactics": 10,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 1,
... | 17 | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | @@ -289,6 +289,66 @@
unfold cc_ret_code cc_ret
simpa [CodeReq.ofProg] using h
+theorem evm_div_callable_v1_spec_from_noNop_concrete_preserving_x1_x9
+ (sp base x9Val raVal : Word) (a b : EvmWord)
+ (v2 v5 v6 v7 v10 v11 : Word)
+ (q0 q1 q2 q3 u0 u1 u2 u3 u4 u5 u6 u7
+ nMem shiftMem jMem retMem dMem ... | {
"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_104a01cc3908_12 | 15873752ab8e6dcd | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/CallableV1Legacy.lean | CallableV1Legacy | 12 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 35 | 6 | [
{
"theorem_name": "evm_div_callable_v1_spec_from_noNop",
"depth": 1,
"n_commands": 0,
"n_lines": 15,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n have hpcFreePost : (divStackDispatchPost sp a b).pcFree := by\n rw [divStackDispatchPost_unfold]\n ... | [
{
"name": "evm_div_callable_code_v1_ret_sub",
"text": "theorem evm_div_callable_code_v1_ret_sub {base : Word} :\n ∀ a i, (CodeReq.singleton (base + nopOff) (.JALR .x0 .x1 0)) a = some i →\n (evm_div_callable_code_v1 base) a = some i := by\n intro a i h\n apply callable_b12_div_v1\n unfold cc_ret_... | [
{
"name": "evm_div_callable_bzero_v1_preserving_x1_spec",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 16,
"n_lines": 40,
"n_chars": 2002,
"n_subproofs": 5,
"n_tactics": 27,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 1,
"n_structural": 1,
"automati... | 16 | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | @@ -281,6 +281,14 @@
(CodeReq.union_split_mono callable_b13_div_v1
(fun _ _ h => by simp [CodeReq.unionAll_nil, CodeReq.empty] at h)))))))))))))
+theorem evm_div_callable_code_v1_ret_sub {base : Word} :
+ ∀ a i, (CodeReq.singleton (base + nopOff) (.JALR .x0 .x1 0)) a = some i →
+ (evm_div_callable_c... | {
"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_104a01cc3908_13 | 40b1ad14ef721092 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/CallableV1Legacy.lean | CallableV1Legacy | 13 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 35 | 4 | [
{
"theorem_name": "evm_mod_callable_v1_spec_from_noNop_preserving_x1",
"depth": 1,
"n_commands": 0,
"n_lines": 11,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n have hpcFreePost : (modStackDispatchPostNoX1 sp a b).pcFree :=\n modStackDispatchPost... | [
{
"name": "evm_mod_callable_code_v1_ret_sub",
"text": "theorem evm_mod_callable_code_v1_ret_sub {base : Word} :\n ∀ a i, (CodeReq.singleton (base + nopOff) (.JALR .x0 .x1 0)) a = some i →\n (evm_mod_callable_code_v1 base) a = some i := by\n intro a i h\n apply callable_b12_mod_v1\n unfold cc_ret_... | [
{
"name": "evm_mod_callable_v1_spec_from_noNop_preserving_x1",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 16,
"n_lines": 31,
"n_chars": 1507,
"n_subproofs": 4,
"n_tactics": 11,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 1,
"aut... | 16 | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | @@ -281,6 +281,14 @@
(CodeReq.union_split_mono callable_b13_mod_v1
(fun _ _ h => by simp [CodeReq.unionAll_nil, CodeReq.empty] at h)))))))))))))
+theorem evm_mod_callable_code_v1_ret_sub {base : Word} :
+ ∀ a i, (CodeReq.singleton (base + nopOff) (.JALR .x0 .x1 0)) a = some i →
+ (evm_mod_callable_c... | {
"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_104a01cc3908_14 | 5d10b822d854def1 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/CallableV1Legacy.lean | CallableV1Legacy | 14 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 35 | 4 | [
{
"theorem_name": "evm_mod_callable_v1_spec_from_noNop_preserving_x1",
"depth": 1,
"n_commands": 0,
"n_lines": 11,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n have hpcFreePost : (modStackDispatchPostNoX1 sp a b).pcFree :=\n modStackDispatchPost... | [
{
"name": "evm_mod_callable_code_v1_ret_sub",
"text": "theorem evm_mod_callable_code_v1_ret_sub {base : Word} :\n ∀ a i, (CodeReq.singleton (base + nopOff) (.JALR .x0 .x1 0)) a = some i →\n (evm_mod_callable_code_v1 base) a = some i := by\n intro a i h\n apply callable_b12_mod_v1\n unfold cc_ret_... | [
{
"name": "evm_mod_callable_v1_spec_from_noNop",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 16,
"n_lines": 35,
"n_chars": 1635,
"n_subproofs": 5,
"n_tactics": 15,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 2,
"n_structural": 1,
"automation_only":... | 16 | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | @@ -281,6 +281,14 @@
(CodeReq.union_split_mono callable_b13_mod_v1
(fun _ _ h => by simp [CodeReq.unionAll_nil, CodeReq.empty] at h)))))))))))))
+theorem evm_mod_callable_code_v1_ret_sub {base : Word} :
+ ∀ a i, (CodeReq.singleton (base + nopOff) (.JALR .x0 .x1 0)) a = some i →
+ (evm_mod_callable_c... | {
"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_104a01cc3908_15 | 1476089d5eb5ab58 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/CallableV1Legacy.lean | CallableV1Legacy | 15 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 35 | 4 | [
{
"theorem_name": "evm_mod_callable_v1_spec_from_noNop_preserving_x1",
"depth": 1,
"n_commands": 0,
"n_lines": 11,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n have hpcFreePost : (modStackDispatchPostNoX1 sp a b).pcFree :=\n modStackDispatchPost... | [
{
"name": "evm_mod_callable_code_v1_ret_sub",
"text": "theorem evm_mod_callable_code_v1_ret_sub {base : Word} :\n ∀ a i, (CodeReq.singleton (base + nopOff) (.JALR .x0 .x1 0)) a = some i →\n (evm_mod_callable_code_v1 base) a = some i := by\n intro a i h\n apply callable_b12_mod_v1\n unfold cc_ret_... | [
{
"name": "evm_mod_callable_v1_spec_from_noNop_preserving_x1_noX9",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 16,
"n_lines": 34,
"n_chars": 1623,
"n_subproofs": 3,
"n_tactics": 10,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 1,
... | 16 | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | @@ -281,6 +281,14 @@
(CodeReq.union_split_mono callable_b13_mod_v1
(fun _ _ h => by simp [CodeReq.unionAll_nil, CodeReq.empty] at h)))))))))))))
+theorem evm_mod_callable_code_v1_ret_sub {base : Word} :
+ ∀ a i, (CodeReq.singleton (base + nopOff) (.JALR .x0 .x1 0)) a = some i →
+ (evm_mod_callable_c... | {
"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_104a01cc3908_16 | e89a4e2bb13a4c8f | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/CallableV1Legacy.lean | CallableV1Legacy | 16 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 35 | 4 | [
{
"theorem_name": "evm_mod_callable_v1_spec_from_noNop_preserving_x1",
"depth": 1,
"n_commands": 0,
"n_lines": 11,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n have hpcFreePost : (modStackDispatchPostNoX1 sp a b).pcFree :=\n modStackDispatchPost... | [
{
"name": "evm_mod_callable_code_v1_ret_sub",
"text": "theorem evm_mod_callable_code_v1_ret_sub {base : Word} :\n ∀ a i, (CodeReq.singleton (base + nopOff) (.JALR .x0 .x1 0)) a = some i →\n (evm_mod_callable_code_v1 base) a = some i := by\n intro a i h\n apply callable_b12_mod_v1\n unfold cc_ret_... | [
{
"name": "evm_mod_callable_bzero_v1_preserving_x1_noX9_spec",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 16,
"n_lines": 29,
"n_chars": 1387,
"n_subproofs": 4,
"n_tactics": 15,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 1,
"aut... | 16 | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | import EvmAsm.Evm64.DivMod.Callable
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- Legacy LP64-callable DIV wrapper pinned to the original one-correction
`divK_div128` subroutine. This gives existing v1 no-NOP specs a stable
target when the default callable name migrates to v4. -/
def evm_div_callable_v1 : Prog... | @@ -281,6 +281,14 @@
(CodeReq.union_split_mono callable_b13_mod_v1
(fun _ _ h => by simp [CodeReq.unionAll_nil, CodeReq.empty] at h)))))))))))))
+theorem evm_mod_callable_code_v1_ret_sub {base : Word} :
+ ∀ a i, (CodeReq.singleton (base + nopOff) (.JALR .x0 .x1 0)) a = some i →
+ (evm_mod_callable_c... | {
"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_3a2a08dff46a_0 | 4bd5884ef61e035b | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/EvmWordArith/Div128QuotientBounds.lean | Div128QuotientBounds | 0 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 6 | 1 | [
{
"theorem_name": "div128Quot_phase1b_quotient_bound",
"depth": 1,
"n_commands": 0,
"n_lines": 20,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n intro q1 hi1 q1c q1'\n -- Extract KB-1 bounds at the right types (matching our local let-chain).\n hav... | [
{
"name": "div128Quot_phase1a_quotient_bound",
"text": "/-- **KB-1: Phase 1a quotient bound.** The post-correction quotient `q1c`\n is within 1 below the true 64/32 quotient `uHi / dHi`:\n\n ```\n uHi.toNat / dHi.toNat - 1 ≤ q1c.toNat ≤ uHi.toNat / dHi.toNat\n ```\n\n Derived from the Euclide... | [
{
"name": "div128Quot_phase1b_quotient_bound",
"fan_in": 0,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 48,
"n_chars": 2276,
"n_subproofs": 8,
"n_tactics": 20,
"cyclomatic": 1,
"n_automation": 6,
"n_rewrites": 7,
"n_structural": 3,
"automation_only": fa... | 1 | /-
EvmAsm.Evm64.EvmWordArith.Div128QuotientBounds
Top-down quotient-bound analysis for the `div128Quot` algorithm,
tightening `q1` and `q1'` bounds through Phase 1a and Phase 1b.
Split from `KnuthTheoremB.lean` (issue #61) to keep that file under
the 1500-line size cap as Piece B grows.
Phase 1 bounds (K... | /-
EvmAsm.Evm64.EvmWordArith.Div128QuotientBounds
Top-down quotient-bound analysis for the `div128Quot` algorithm,
tightening `q1` and `q1'` bounds through Phase 1a and Phase 1b.
Split from `KnuthTheoremB.lean` (issue #61) to keep that file under
the 1500-line size cap as Piece B grows.
Phase 1 bounds (K... | @@ -41,6 +41,46 @@
-- Piece B: Phase 1a quotient bound (KB-1)
-- ============================================================================
+/-- **KB-1: Phase 1a quotient bound.** The post-correction quotient `q1c`
+ is within 1 below the true 64/32 quotient `uHi / dHi`:
+
+ ```
+ uHi.toNat / dHi.toNat -... | {
"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_3a2a08dff46a_1 | a9bd02cd3452adce | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/EvmWordArith/Div128QuotientBounds.lean | Div128QuotientBounds | 1 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 6 | 4 | [
{
"theorem_name": "div128Quot_q1_prime_le_pow32_plus_one",
"depth": 1,
"n_commands": 0,
"n_lines": 7,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n intro q1 hi1 q1c q1'\n have h_q1_le : q1.toNat ≤ 2^32 + 1 :=\n div128Quot_q1_le_pow32_plus_one uH... | [
{
"name": "div128Quot_q1_prime_le_q1c",
"text": "/-- **KB-3d2: Phase 1b monotonicity.** The post-Phase-1b quotient `q1'`\n is never larger than the pre-Phase-1b `q1c`:\n\n ```\n q1'.toNat ≤ q1c.toNat\n ```\n\n - Check doesn't fire: `q1' = q1c`.\n - Check fires: `q1' = q1c - 1 < q1c` (using... | [
{
"name": "div128Quot_q1_prime_le_pow32_plus_one",
"fan_in": 0,
"n_deps_direct": 3,
"n_deps_transitive": 3,
"n_lines": 33,
"n_chars": 1397,
"n_subproofs": 3,
"n_tactics": 7,
"cyclomatic": 1,
"n_automation": 1,
"n_rewrites": 0,
"n_structural": 1,
"automation_only":... | 3 | /-
EvmAsm.Evm64.EvmWordArith.Div128QuotientBounds
Top-down quotient-bound analysis for the `div128Quot` algorithm,
tightening `q1` and `q1'` bounds through Phase 1a and Phase 1b.
Split from `KnuthTheoremB.lean` (issue #61) to keep that file under
the 1500-line size cap as Piece B grows.
Phase 1 bounds (K... | /-
EvmAsm.Evm64.EvmWordArith.Div128QuotientBounds
Top-down quotient-bound analysis for the `div128Quot` algorithm,
tightening `q1` and `q1'` bounds through Phase 1a and Phase 1b.
Split from `KnuthTheoremB.lean` (issue #61) to keep that file under
the 1500-line size cap as Piece B grows.
Phase 1 bounds (K... | @@ -115,6 +115,33 @@
Nat.add_mod_right, Nat.mod_eq_of_lt hq1_lt_word]
omega
+/-- **KB-3d2: Phase 1b monotonicity.** The post-Phase-1b quotient `q1'`
+ is never larger than the pre-Phase-1b `q1c`:
+
+ ```
+ q1'.toNat ≤ q1c.toNat
+ ```
+
+ - Check doesn't fire: `q1' = q1c`.
+ - Check fir... | {
"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_3a2a08dff46a_2 | 6566f094a9f89343 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/EvmWordArith/Div128QuotientBounds.lean | Div128QuotientBounds | 2 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 6 | 2 | [
{
"theorem_name": "div128Quot_q1_prime_le_pow32_plus_one",
"depth": 1,
"n_commands": 0,
"n_lines": 7,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n intro q1 hi1 q1c q1'\n have h_q1_le : q1.toNat ≤ 2^32 + 1 :=\n div128Quot_q1_le_pow32_plus_one uH... | [
{
"name": "div128Quot_q1_le_pow32_plus_one",
"text": "/-- **KB-3c: Tighter q1 bound under `uHi < vTop`.** With the call-trial\n precondition (normalized dividend strictly less than the divisor at\n the 64-bit level), the first-round trial quotient satisfies\n\n ```\n (rv64_divu uHi dHi).toNat ≤ ... | [
{
"name": "div128Quot_q1c_le_pow32",
"fan_in": 3,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 57,
"n_chars": 2358,
"n_subproofs": 9,
"n_tactics": 36,
"cyclomatic": 1,
"n_automation": 8,
"n_rewrites": 12,
"n_structural": 4,
"automation_only": false,
... | 1 | /-
EvmAsm.Evm64.EvmWordArith.Div128QuotientBounds
Top-down quotient-bound analysis for the `div128Quot` algorithm,
tightening `q1` and `q1'` bounds through Phase 1a and Phase 1b.
Split from `KnuthTheoremB.lean` (issue #61) to keep that file under
the 1500-line size cap as Piece B grows.
Phase 1 bounds (K... | /-
EvmAsm.Evm64.EvmWordArith.Div128QuotientBounds
Top-down quotient-bound analysis for the `div128Quot` algorithm,
tightening `q1` and `q1'` bounds through Phase 1a and Phase 1b.
Split from `KnuthTheoremB.lean` (issue #61) to keep that file under
the 1500-line size cap as Piece B grows.
Phase 1 bounds (K... | @@ -41,6 +41,44 @@
-- Piece B: Phase 1a quotient bound (KB-1)
-- ============================================================================
+/-- **KB-3c: Tighter q1 bound under `uHi < vTop`.** With the call-trial
+ precondition (normalized dividend strictly less than the divisor at
+ the 64-bit level), 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_3a2a08dff46a_3 | 73e3aa5da094bc6c | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/EvmWordArith/Div128QuotientBounds.lean | Div128QuotientBounds | 3 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 6 | 3 | [
{
"theorem_name": "div128Quot_q1_prime_le_pow32",
"depth": 1,
"n_commands": 0,
"n_lines": 7,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n intro q1 hi1 q1c q1'\n have h_q1c_le : q1c.toNat ≤ 2^32 :=\n div128Quot_q1c_le_pow32 uHi dHi dLo hdHi_ge h... | [
{
"name": "div128Quot_q1c_le_pow32",
"text": "/-- **KB-3e': Tighter post-Phase-1a bound on q1c under hcall.** Phase 1a's\n `hi1` correction absorbs one overshoot beyond `2^32`:\n\n ```\n q1c.toNat ≤ 2^32\n ```\n\n - hi1 = 0 branch: `q1 < 2^32` (by definition of hi1), so q1c = q1 < 2^32.\n ... | [
{
"name": "div128Quot_q1_prime_le_pow32",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 3,
"n_lines": 30,
"n_chars": 1138,
"n_subproofs": 2,
"n_tactics": 7,
"cyclomatic": 1,
"n_automation": 1,
"n_rewrites": 0,
"n_structural": 1,
"automation_only": false,
... | 3 | /-
EvmAsm.Evm64.EvmWordArith.Div128QuotientBounds
Top-down quotient-bound analysis for the `div128Quot` algorithm,
tightening `q1` and `q1'` bounds through Phase 1a and Phase 1b.
Split from `KnuthTheoremB.lean` (issue #61) to keep that file under
the 1500-line size cap as Piece B grows.
Phase 1 bounds (K... | /-
EvmAsm.Evm64.EvmWordArith.Div128QuotientBounds
Top-down quotient-bound analysis for the `div128Quot` algorithm,
tightening `q1` and `q1'` bounds through Phase 1a and Phase 1b.
Split from `KnuthTheoremB.lean` (issue #61) to keep that file under
the 1500-line size cap as Piece B grows.
Phase 1 bounds (K... | @@ -106,6 +106,62 @@
· show (if BitVec.ult rhatUn1 (q1c * dLo) then q1c + signExtend12 4095 else q1c).toNat ≤ _
rw [if_neg h_check]
+/-- **KB-3e': Tighter post-Phase-1a bound on q1c under hcall.** Phase 1a's
+ `hi1` correction absorbs one overshoot beyond `2^32`:
+
+ ```
+ q1c.toNat ≤ 2^32
+ ```
+... | {
"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_3a2a08dff46a_4 | 06150975fc31b634 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/EvmWordArith/Div128QuotientBounds.lean | Div128QuotientBounds | 4 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 6 | 3 | [
{
"theorem_name": "div128Quot_q1_prime_le_pow32",
"depth": 1,
"n_commands": 0,
"n_lines": 7,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n intro q1 hi1 q1c q1'\n have h_q1c_le : q1c.toNat ≤ 2^32 :=\n div128Quot_q1c_le_pow32 uHi dHi dLo hdHi_ge h... | [
{
"name": "div128Quot_q1c_le_pow32",
"text": "/-- **KB-3e': Tighter post-Phase-1a bound on q1c under hcall.** Phase 1a's\n `hi1` correction absorbs one overshoot beyond `2^32`:\n\n ```\n q1c.toNat ≤ 2^32\n ```\n\n - hi1 = 0 branch: `q1 < 2^32` (by definition of hi1), so q1c = q1 < 2^32.\n ... | [
{
"name": "div128Quot_q1_prime_lt_pow32",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 3,
"n_lines": 100,
"n_chars": 4648,
"n_subproofs": 16,
"n_tactics": 59,
"cyclomatic": 1,
"n_automation": 17,
"n_rewrites": 16,
"n_structural": 9,
"automation_only": fal... | 3 | /-
EvmAsm.Evm64.EvmWordArith.Div128QuotientBounds
Top-down quotient-bound analysis for the `div128Quot` algorithm,
tightening `q1` and `q1'` bounds through Phase 1a and Phase 1b.
Split from `KnuthTheoremB.lean` (issue #61) to keep that file under
the 1500-line size cap as Piece B grows.
Phase 1 bounds (K... | /-
EvmAsm.Evm64.EvmWordArith.Div128QuotientBounds
Top-down quotient-bound analysis for the `div128Quot` algorithm,
tightening `q1` and `q1'` bounds through Phase 1a and Phase 1b.
Split from `KnuthTheoremB.lean` (issue #61) to keep that file under
the 1500-line size cap as Piece B grows.
Phase 1 bounds (K... | @@ -106,6 +106,62 @@
· show (if BitVec.ult rhatUn1 (q1c * dLo) then q1c + signExtend12 4095 else q1c).toNat ≤ _
rw [if_neg h_check]
+/-- **KB-3e': Tighter post-Phase-1a bound on q1c under hcall.** Phase 1a's
+ `hi1` correction absorbs one overshoot beyond `2^32`:
+
+ ```
+ q1c.toNat ≤ 2^32
+ ```
+... | {
"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_3a2a08dff46a_5 | 3132c9393cdb2891 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/EvmWordArith/Div128QuotientBounds.lean | Div128QuotientBounds | 5 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 6 | 4 | [
{
"theorem_name": "div128Quot_q1_prime_le_pow32_plus_one",
"depth": 1,
"n_commands": 0,
"n_lines": 7,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n intro q1 hi1 q1c q1'\n have h_q1_le : q1.toNat ≤ 2^32 + 1 :=\n div128Quot_q1_le_pow32_plus_one uH... | [
{
"name": "div128Quot_q1_prime_le_q1c",
"text": "/-- **KB-3d2: Phase 1b monotonicity.** The post-Phase-1b quotient `q1'`\n is never larger than the pre-Phase-1b `q1c`:\n\n ```\n q1'.toNat ≤ q1c.toNat\n ```\n\n - Check doesn't fire: `q1' = q1c`.\n - Check fires: `q1' = q1c - 1 < q1c` (using... | [
{
"name": "div128Quot_phase2b_q0'_le_self",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 8,
"n_chars": 283,
"n_subproofs": 0,
"n_tactics": 5,
"cyclomatic": 2,
"n_automation": 0,
"n_rewrites": 1,
"n_structural": 2,
"automation_only": false,
... | 1 | /-
EvmAsm.Evm64.EvmWordArith.Div128QuotientBounds
Top-down quotient-bound analysis for the `div128Quot` algorithm,
tightening `q1` and `q1'` bounds through Phase 1a and Phase 1b.
Split from `KnuthTheoremB.lean` (issue #61) to keep that file under
the 1500-line size cap as Piece B grows.
Phase 1 bounds (K... | /-
EvmAsm.Evm64.EvmWordArith.Div128QuotientBounds
Top-down quotient-bound analysis for the `div128Quot` algorithm,
tightening `q1` and `q1'` bounds through Phase 1a and Phase 1b.
Split from `KnuthTheoremB.lean` (issue #61) to keep that file under
the 1500-line size cap as Piece B grows.
Phase 1 bounds (K... | @@ -41,11 +41,38 @@
-- Piece B: Phase 1a quotient bound (KB-1)
-- ============================================================================
+/-- **KB-3d2: Phase 1b monotonicity.** The post-Phase-1b quotient `q1'`
+ is never larger than the pre-Phase-1b `q1c`:
+
+ ```
+ q1'.toNat ≤ q1c.toNat
+ ```
+
+... | {
"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_3a2a08dff46a_6 | 62dded13e7fdc914 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/EvmWordArith/Div128QuotientBounds.lean | Div128QuotientBounds | 6 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 6 | 3 | [
{
"theorem_name": "div128Quot_q1_prime_le_pow32",
"depth": 1,
"n_commands": 0,
"n_lines": 7,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n intro q1 hi1 q1c q1'\n have h_q1c_le : q1c.toNat ≤ 2^32 :=\n div128Quot_q1c_le_pow32 uHi dHi dLo hdHi_ge h... | [
{
"name": "div128Quot_q1c_le_pow32",
"text": "/-- **KB-3e': Tighter post-Phase-1a bound on q1c under hcall.** Phase 1a's\n `hi1` correction absorbs one overshoot beyond `2^32`:\n\n ```\n q1c.toNat ≤ 2^32\n ```\n\n - hi1 = 0 branch: `q1 < 2^32` (by definition of hi1), so q1c = q1 < 2^32.\n ... | [
{
"name": "div128Quot_q0_prime_lt_pow32",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 4,
"n_lines": 112,
"n_chars": 5405,
"n_subproofs": 17,
"n_tactics": 68,
"cyclomatic": 1,
"n_automation": 17,
"n_rewrites": 21,
"n_structural": 12,
"automation_only": fa... | 4 | /-
EvmAsm.Evm64.EvmWordArith.Div128QuotientBounds
Top-down quotient-bound analysis for the `div128Quot` algorithm,
tightening `q1` and `q1'` bounds through Phase 1a and Phase 1b.
Split from `KnuthTheoremB.lean` (issue #61) to keep that file under
the 1500-line size cap as Piece B grows.
Phase 1 bounds (K... | /-
EvmAsm.Evm64.EvmWordArith.Div128QuotientBounds
Top-down quotient-bound analysis for the `div128Quot` algorithm,
tightening `q1` and `q1'` bounds through Phase 1a and Phase 1b.
Split from `KnuthTheoremB.lean` (issue #61) to keep that file under
the 1500-line size cap as Piece B grows.
Phase 1 bounds (K... | @@ -106,6 +106,62 @@
· show (if BitVec.ult rhatUn1 (q1c * dLo) then q1c + signExtend12 4095 else q1c).toNat ≤ _
rw [if_neg h_check]
+/-- **KB-3e': Tighter post-Phase-1a bound on q1c under hcall.** Phase 1a's
+ `hi1` correction absorbs one overshoot beyond `2^32`:
+
+ ```
+ q1c.toNat ≤ 2^32
+ ```
+... | {
"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_c560b51e7dd5_0 | 1ea12c190d85b091 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/EvmWordArith/ModBridgeAssemble.lean | ModBridgeAssemble | 0 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 4 | 1 | [
{
"theorem_name": "denorm_limbs_eq_evmWord_mod_max_skip",
"depth": 1,
"n_commands": 0,
"n_lines": 3,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": "\n mod_of_val256_eq_mod hbnz\n (val256_denorm_eq_val256_mod_max_skip hbnz hb3nz hs0 hs hb3_bound hc3_un_z... | [
{
"name": "val256_denorm_eq_val256_mod_max_skip",
"text": "/-- Assembly theorem: under max+skip conditions + CLZ bound, the\n denormalized remainder limbs equal `val256(a) % val256(b)` at val256\n level. Combines Lemmas A, C, and the un-normalized modulus extraction. -/\ntheorem val256_denorm_eq_val25... | [
{
"name": "denorm_limbs_eq_evmWord_mod_max_skip",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 46,
"n_chars": 2050,
"n_subproofs": 0,
"n_tactics": 2,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 0,
"automation_only": ... | 1 | /-
EvmAsm.Evm64.EvmWordArith.ModBridgeAssemble
Assembly of the MOD denormalization bridge (Lemmas D-F from
`project_mod_denorm_bridge_blocker.md`). Composes:
- `u_top_eq_c3_n_max_skip` (Lemma C)
- `val256_ms_un_eq_val256_mod_max_skip` (Val256ModBridge)
- `val256_ms_un_lt_val256_b_max_skip` (Val256ModBridg... | /-
EvmAsm.Evm64.EvmWordArith.ModBridgeAssemble
Assembly of the MOD denormalization bridge (Lemmas D-F from
`project_mod_denorm_bridge_blocker.md`). Composes:
- `u_top_eq_c3_n_max_skip` (Lemma C)
- `val256_ms_un_eq_val256_mod_max_skip` (Val256ModBridge)
- `val256_ms_un_lt_val256_b_max_skip` (Val256ModBridg... | @@ -33,6 +33,106 @@
namespace EvmWord
+/-- Assembly theorem: under max+skip conditions + CLZ bound, the
+ denormalized remainder limbs equal `val256(a) % val256(b)` at val256
+ level. Combines Lemmas A, C, and the un-normalized modulus extraction. -/
+theorem val256_denorm_eq_val256_mod_max_skip
+ {a0 a1 ... | {
"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_c560b51e7dd5_1 | bd9ca9d09b77d7ee | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/EvmWordArith/ModBridgeAssemble.lean | ModBridgeAssemble | 1 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 4 | 1 | [
{
"theorem_name": "denorm_limbs_eq_evmWord_mod_max_skip",
"depth": 1,
"n_commands": 0,
"n_lines": 3,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": "\n mod_of_val256_eq_mod hbnz\n (val256_denorm_eq_val256_mod_max_skip hbnz hb3nz hs0 hs hb3_bound hc3_un_z... | [
{
"name": "val256_denorm_eq_val256_mod_max_skip",
"text": "/-- Assembly theorem: under max+skip conditions + CLZ bound, the\n denormalized remainder limbs equal `val256(a) % val256(b)` at val256\n level. Combines Lemmas A, C, and the un-normalized modulus extraction. -/\ntheorem val256_denorm_eq_val25... | [
{
"name": "denorm_limbN_eq_mod_max_skip",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 2,
"n_lines": 48,
"n_chars": 2257,
"n_subproofs": 1,
"n_tactics": 13,
"cyclomatic": 1,
"n_automation": 1,
"n_rewrites": 4,
"n_structural": 6,
"automation_only": false,
... | 2 | /-
EvmAsm.Evm64.EvmWordArith.ModBridgeAssemble
Assembly of the MOD denormalization bridge (Lemmas D-F from
`project_mod_denorm_bridge_blocker.md`). Composes:
- `u_top_eq_c3_n_max_skip` (Lemma C)
- `val256_ms_un_eq_val256_mod_max_skip` (Val256ModBridge)
- `val256_ms_un_lt_val256_b_max_skip` (Val256ModBridg... | /-
EvmAsm.Evm64.EvmWordArith.ModBridgeAssemble
Assembly of the MOD denormalization bridge (Lemmas D-F from
`project_mod_denorm_bridge_blocker.md`). Composes:
- `u_top_eq_c3_n_max_skip` (Lemma C)
- `val256_ms_un_eq_val256_mod_max_skip` (Val256ModBridge)
- `val256_ms_un_lt_val256_b_max_skip` (Val256ModBridg... | @@ -33,6 +33,106 @@
namespace EvmWord
+/-- Assembly theorem: under max+skip conditions + CLZ bound, the
+ denormalized remainder limbs equal `val256(a) % val256(b)` at val256
+ level. Combines Lemmas A, C, and the un-normalized modulus extraction. -/
+theorem val256_denorm_eq_val256_mod_max_skip
+ {a0 a1 ... | {
"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_c560b51e7dd5_2 | eaac30546b9c0786 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/EvmWordArith/ModBridgeAssemble.lean | ModBridgeAssemble | 2 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 4 | 1 | [
{
"theorem_name": "denorm_limbs_eq_evmWord_mod_max_skip",
"depth": 1,
"n_commands": 0,
"n_lines": 3,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": "\n mod_of_val256_eq_mod hbnz\n (val256_denorm_eq_val256_mod_max_skip hbnz hb3nz hs0 hs hb3_bound hc3_un_z... | [
{
"name": "val256_denorm_eq_val256_mod_max_skip",
"text": "/-- Assembly theorem: under max+skip conditions + CLZ bound, the\n denormalized remainder limbs equal `val256(a) % val256(b)` at val256\n level. Combines Lemmas A, C, and the un-normalized modulus extraction. -/\ntheorem val256_denorm_eq_val25... | [
{
"name": "denorm_limbN_eq_mod_max_skip_getLimbN",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 3,
"n_lines": 56,
"n_chars": 3127,
"n_subproofs": 2,
"n_tactics": 18,
"cyclomatic": 3,
"n_automation": 1,
"n_rewrites": 2,
"n_structural": 4,
"automation_only"... | 3 | /-
EvmAsm.Evm64.EvmWordArith.ModBridgeAssemble
Assembly of the MOD denormalization bridge (Lemmas D-F from
`project_mod_denorm_bridge_blocker.md`). Composes:
- `u_top_eq_c3_n_max_skip` (Lemma C)
- `val256_ms_un_eq_val256_mod_max_skip` (Val256ModBridge)
- `val256_ms_un_lt_val256_b_max_skip` (Val256ModBridg... | /-
EvmAsm.Evm64.EvmWordArith.ModBridgeAssemble
Assembly of the MOD denormalization bridge (Lemmas D-F from
`project_mod_denorm_bridge_blocker.md`). Composes:
- `u_top_eq_c3_n_max_skip` (Lemma C)
- `val256_ms_un_eq_val256_mod_max_skip` (Val256ModBridge)
- `val256_ms_un_lt_val256_b_max_skip` (Val256ModBridg... | @@ -33,6 +33,106 @@
namespace EvmWord
+/-- Assembly theorem: under max+skip conditions + CLZ bound, the
+ denormalized remainder limbs equal `val256(a) % val256(b)` at val256
+ level. Combines Lemmas A, C, and the un-normalized modulus extraction. -/
+theorem val256_denorm_eq_val256_mod_max_skip
+ {a0 a1 ... | {
"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_c560b51e7dd5_3 | a88fb9609bcca5da | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/EvmWordArith/ModBridgeAssemble.lean | ModBridgeAssemble | 3 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 4 | 1 | [
{
"theorem_name": "denorm_limbN_eq_mod_max_skip",
"depth": 1,
"n_commands": 0,
"n_lines": 9,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n intro b0' b1' b2' b3' u0 u1 u2 u3 msN a b\n have hr := denorm_limbs_eq_evmWord_mod_max_skip hbnz hb3nz hs0 hs... | [
{
"name": "denorm_limbs_eq_evmWord_mod_max_skip",
"text": "/-- Lemma F — lift from val256-level to `EvmWord.mod a b`: under the\n max+skip conditions + CLZ top-limb bound, the denormalized remainder\n limbs `u0', u1', u2', u3'` assembled via `fromLimbs` equal\n `EvmWord.mod a b`. -/\ntheorem denorm... | [
{
"name": "output_slot_to_evmWordIs_mod_n4_max_skip_denorm",
"fan_in": 0,
"n_deps_direct": 1,
"n_deps_transitive": 4,
"n_lines": 44,
"n_chars": 2256,
"n_subproofs": 1,
"n_tactics": 6,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 1,
"n_structural": 2,
"automat... | 4 | /-
EvmAsm.Evm64.EvmWordArith.ModBridgeAssemble
Assembly of the MOD denormalization bridge (Lemmas D-F from
`project_mod_denorm_bridge_blocker.md`). Composes:
- `u_top_eq_c3_n_max_skip` (Lemma C)
- `val256_ms_un_eq_val256_mod_max_skip` (Val256ModBridge)
- `val256_ms_un_lt_val256_b_max_skip` (Val256ModBridg... | /-
EvmAsm.Evm64.EvmWordArith.ModBridgeAssemble
Assembly of the MOD denormalization bridge (Lemmas D-F from
`project_mod_denorm_bridge_blocker.md`). Composes:
- `u_top_eq_c3_n_max_skip` (Lemma C)
- `val256_ms_un_eq_val256_mod_max_skip` (Val256ModBridge)
- `val256_ms_un_lt_val256_b_max_skip` (Val256ModBridg... | @@ -133,6 +133,51 @@
rw [h_denorm, h_ms_n_scaled, Nat.mul_div_cancel _ (by positivity : 0 < 2^s)]
exact h_ms_un_eq_mod
+/-- Lemma F — lift from val256-level to `EvmWord.mod a b`: under the
+ max+skip conditions + CLZ top-limb bound, the denormalized remainder
+ limbs `u0', u1', u2', u3'` assembled via `fr... | {
"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_645a45a7279a_0 | 8b729d3d6f343fca | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/EL/Secp256r1VerifyPrecompileDispatch.lean | Secp256r1VerifyPrecompileDispatch | 0 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 1 | 1 | [
{
"theorem_name": "dispatch_success_output_length",
"depth": 1,
"n_commands": 0,
"n_lines": 3,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n rw [dispatch_success accelerator h_target h_gas h_len h_status h_verified]\n simp [Secp256r1VerifyPrecompil... | [
{
"name": "dispatch_success",
"text": "theorem dispatch_success\n (accelerator : AcceleratorInput -> AcceleratorResult)\n {input : EvmAsm.Evm64.PrecompileInput}\n (h_target : input.target = .p256Verify)\n (h_gas : gasCost input.input <= input.gas)\n (h_len : validInputLength input.input = tru... | [
{
"name": "dispatch_success_output_length",
"fan_in": 0,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 14,
"n_chars": 690,
"n_subproofs": 0,
"n_tactics": 3,
"cyclomatic": 1,
"n_automation": 1,
"n_rewrites": 1,
"n_structural": 0,
"automation_only": false,
... | 1 | /-
EvmAsm.EL.Secp256r1VerifyPrecompileDispatch
Pure EVM P256VERIFY precompile framing. The secp256r1 scalar, public-key,
curve-membership, and signature checks are supplied by the accelerator
boundary; this module fixes the execution-specs-visible target, gas,
length, field slicing, and common precompile res... | /-
EvmAsm.EL.Secp256r1VerifyPrecompileDispatch
Pure EVM P256VERIFY precompile framing. The secp256r1 scalar, public-key,
curve-membership, and signature checks are supplied by the accelerator
boundary; this module fixes the execution-specs-visible target, gas,
length, field slicing, and common precompile res... | @@ -97,6 +97,26 @@
else
EvmAsm.Evm64.PrecompileResult.fail input.gas
+theorem dispatch_success
+ (accelerator : AcceleratorInput -> AcceleratorResult)
+ {input : EvmAsm.Evm64.PrecompileInput}
+ (h_target : input.target = .p256Verify)
+ (h_gas : gasCost input.input <= input.gas)
+ (h_len : valid... | {
"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_25fd3b9426b8_0 | c673422becac0364 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/EvmWordArith/Arithmetic.lean | Arithmetic | 0 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 5 | 1 | [
{
"theorem_name": "combined_carry_toNat",
"depth": 1,
"n_commands": 0,
"n_lines": 9,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n intro psum ca res cb\n have := x.isLt; have := y.isLt\n have hca : ca.toNat = (x.toNat + y.toNat) / 2^64 := carry_to... | [
{
"name": "or_01_toNat",
"text": "theorem or_01_toNat (x y : Word) (hx : x = 0 ∨ x = 1) (hy : y = 0 ∨ y = 1) :\n (x ||| y).toNat = min 1 (x.toNat + y.toNat) := by\n rcases hx with rfl | rfl <;> rcases hy with rfl | rfl <;> decide\n\n-- {0,1} fact for if-then-else\n",
"fan_in": 1,
"n_lines": 6,
... | [
{
"name": "combined_carry_toNat",
"fan_in": 1,
"n_deps_direct": 3,
"n_deps_transitive": 3,
"n_lines": 16,
"n_chars": 732,
"n_subproofs": 6,
"n_tactics": 10,
"cyclomatic": 1,
"n_automation": 2,
"n_rewrites": 1,
"n_structural": 1,
"automation_only": false,
"max_... | 3 | /-
EvmAsm.Evm64.EvmWordArith.Arithmetic
ADD and SUB correctness: carry/borrow chains produce correct limbs.
-/
import EvmAsm.Evm64.EvmWordArith.Common
import Mathlib.Tactic.NormNum
import Mathlib.Tactic.Ring
import Mathlib.Tactic.Positivity
namespace EvmAsm.Evm64
open EvmAsm.Rv64
namespace EvmWord
-- ========... | /-
EvmAsm.Evm64.EvmWordArith.Arithmetic
ADD and SUB correctness: carry/borrow chains produce correct limbs.
-/
import EvmAsm.Evm64.EvmWordArith.Common
import Mathlib.Tactic.NormNum
import Mathlib.Tactic.Ring
import Mathlib.Tactic.Positivity
namespace EvmAsm.Evm64
open EvmAsm.Rv64
namespace EvmWord
-- ========... | @@ -32,6 +32,11 @@
simp [BitVec.toNat_ofNat]; omega
-- OR of two {0,1}-valued Words
+theorem or_01_toNat (x y : Word) (hx : x = 0 ∨ x = 1) (hy : y = 0 ∨ y = 1) :
+ (x ||| y).toNat = min 1 (x.toNat + y.toNat) := by
+ rcases hx with rfl | rfl <;> rcases hy with rfl | rfl <;> decide
+
+-- {0,1} fact for if-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_25fd3b9426b8_1 | 8022ef0c440dfcb2 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/EvmWordArith/Arithmetic.lean | Arithmetic | 1 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 5 | 1 | [
{
"theorem_name": "combined_carry_toNat",
"depth": 1,
"n_commands": 0,
"n_lines": 9,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n intro psum ca res cb\n have := x.isLt; have := y.isLt\n have hca : ca.toNat = (x.toNat + y.toNat) / 2^64 := carry_to... | [
{
"name": "ite_word_01",
"text": "theorem ite_word_01 (c : Prop) [Decidable c] :\n (if c then (1 : Word) else 0) = 0 ∨ (if c then (1 : Word) else 0) = 1 := by\n split <;> simp\n\n-- Combined carry: (carry_a ||| carry_b).toNat = (a + b + cin) / 2^64\n",
"fan_in": 1,
"n_lines": 6,
"n_chars": 2... | [
{
"name": "add_carry_chain_correct",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 4,
"n_lines": 171,
"n_chars": 8854,
"n_subproofs": 42,
"n_tactics": 137,
"cyclomatic": 4,
"n_automation": 39,
"n_rewrites": 52,
"n_structural": 13,
"automation_only": false,... | 4 | /-
EvmAsm.Evm64.EvmWordArith.Arithmetic
ADD and SUB correctness: carry/borrow chains produce correct limbs.
-/
import EvmAsm.Evm64.EvmWordArith.Common
import Mathlib.Tactic.NormNum
import Mathlib.Tactic.Ring
import Mathlib.Tactic.Positivity
namespace EvmAsm.Evm64
open EvmAsm.Rv64
namespace EvmWord
-- ========... | /-
EvmAsm.Evm64.EvmWordArith.Arithmetic
ADD and SUB correctness: carry/borrow chains produce correct limbs.
-/
import EvmAsm.Evm64.EvmWordArith.Common
import Mathlib.Tactic.NormNum
import Mathlib.Tactic.Ring
import Mathlib.Tactic.Positivity
namespace EvmAsm.Evm64
open EvmAsm.Rv64
namespace EvmWord
-- ========... | @@ -37,12 +37,25 @@
rcases hx with rfl | rfl <;> rcases hy with rfl | rfl <;> decide
-- {0,1} fact for if-then-else
+theorem ite_word_01 (c : Prop) [Decidable c] :
+ (if c then (1 : Word) else 0) = 0 ∨ (if c then (1 : Word) else 0) = 1 := by
+ split <;> simp
+
+-- Combined carry: (carry_a ||| carry_b).toNat =... | {
"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_25fd3b9426b8_2 | f86322dbae12c858 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/EvmWordArith/Arithmetic.lean | Arithmetic | 2 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 5 | 1 | [
{
"theorem_name": "sub_borrow_chain_correct",
"depth": 1,
"n_commands": 0,
"n_lines": 215,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n intro a0 b0 a1 b1 a2 b2 a3 b3 borrow0 diff0 borrow1a temp1 borrow1b result1 borrow1 borrow2a temp2 borrow2b resu... | [
{
"name": "sub_limb_toNat",
"text": "/-- Helper: subtraction of a single limb with borrow produces the right toNat value. -/\nprivate theorem sub_limb_toNat {aLimb bLimb borrow : Word}\n (hborrow : borrow.toNat = 0 ∨ borrow.toNat = 1) :\n (aLimb - bLimb - borrow).toNat =\n (aLimb.toNat + 2^64 - bLi... | [
{
"name": "sub_borrow_chain_correct",
"fan_in": 0,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 242,
"n_chars": 13280,
"n_subproofs": 51,
"n_tactics": 250,
"cyclomatic": 25,
"n_automation": 74,
"n_rewrites": 86,
"n_structural": 24,
"automation_only": fal... | 1 | /-
EvmAsm.Evm64.EvmWordArith.Arithmetic
ADD and SUB correctness: carry/borrow chains produce correct limbs.
-/
import EvmAsm.Evm64.EvmWordArith.Common
import Mathlib.Tactic.NormNum
import Mathlib.Tactic.Ring
import Mathlib.Tactic.Positivity
namespace EvmAsm.Evm64
open EvmAsm.Rv64
namespace EvmWord
-- ========... | /-
EvmAsm.Evm64.EvmWordArith.Arithmetic
ADD and SUB correctness: carry/borrow chains produce correct limbs.
-/
import EvmAsm.Evm64.EvmWordArith.Common
import Mathlib.Tactic.NormNum
import Mathlib.Tactic.Ring
import Mathlib.Tactic.Positivity
namespace EvmAsm.Evm64
open EvmAsm.Rv64
namespace EvmWord
-- ========... | @@ -20,6 +20,16 @@
-- ============================================================================
-- Carry from 64-bit addition: (if ult (a+b) b then 1 else 0).toNat = (a.toNat + b.toNat) / 2^64
+/-- Helper: subtraction of a single limb with borrow produces the right toNat value. -/
+private theorem sub_limb_toNat... | {
"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_c1404b1eff61_0 | 54240685afc6963a | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Compose/FullPathN4V5CallableExactMod.lean | FullPathN4V5CallableExactMod | 0 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 2 | 1 | [
{
"theorem_name": "evm_mod_n4_stack_spec_noNop_v5_preNoX1_callableExactFrame_of_shape",
"depth": 1,
"n_commands": 0,
"n_lines": 10,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n by_cases hsh : (clzResult (b.getLimbN 3)).1 = 0\n · exact evm_mod_n4_s... | [
{
"name": "evm_mod_n4_stack_spec_noNop_v5_preNoX1_callableExactFrame_shiftNz",
"text": "/-- n=4 v5 MOD callable-exact lane, shift≠0 arm, from the native runtime cert. -/\ntheorem evm_mod_n4_stack_spec_noNop_v5_preNoX1_callableExactFrame_shiftNz\n (sp base : Word) (a b : EvmWord)\n (raVal v5 v6 v7 v10 ... | [
{
"name": "evm_mod_n4_stack_spec_noNop_v5_preNoX1_callableExactFrame_of_shape",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 2,
"n_lines": 30,
"n_chars": 1670,
"n_subproofs": 0,
"n_tactics": 10,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structur... | 2 | /-
EvmAsm.Evm64.DivMod.Compose.FullPathN4V5CallableExactMod
The v5 n=4 MOD callable exact-frame lane (shift≠0 arm): from
`divModStackDispatchPreNoX1` (caller return address `raVal` concrete in `x1`) to
`modStackDispatchPostCallableExactFrame` over `modCode_noNop_v5`. MOD mirror of
the DIV `FullPathN4V5Calla... | /-
EvmAsm.Evm64.DivMod.Compose.FullPathN4V5CallableExactMod
The v5 n=4 MOD callable exact-frame lane (shift≠0 arm): from
`divModStackDispatchPreNoX1` (caller return address `raVal` concrete in `x1`) to
`modStackDispatchPostCallableExactFrame` over `modCode_noNop_v5`. MOD mirror of
the DIV `FullPathN4V5Calla... | @@ -28,6 +28,92 @@
set_option maxRecDepth 8000
+/-- n=4 v5 MOD callable-exact lane, shift≠0 arm, from the native runtime cert. -/
+theorem evm_mod_n4_stack_spec_noNop_v5_preNoX1_callableExactFrame_shiftNz
+ (sp base : Word) (a b : EvmWord)
+ (raVal v5 v6 v7 v10 v11Old x9In x2In : Word)
+ (q0 q1 q2 q3 u0Ol... | {
"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_772329534757_0 | 55767403feac63e6 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/LoopBody/MulsubCorrectionAddback.lean | MulsubCorrectionAddback | 0 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 6 | 4 | [
{
"theorem_name": "divK_beq_passthrough_spec_within",
"depth": 1,
"n_commands": 0,
"n_lines": 13,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n have hbeq := beq_spec_gen_within .x7 .x0 (8044 : BitVec 13) carry 0 (base + addbackBeqOff)\n rw [lb_beq_... | [
{
"name": "lb_beq_back_ntaken_local",
"text": "theorem lb_beq_back_ntaken_local {base : Word} :\n (base + addbackBeqOff : Word) + 4 = base + storeLoopOff := by\n bv_addr\n\n",
"fan_in": 4,
"n_lines": 5,
"n_chars": 126,
"n_subproofs": 0,
"n_tactics": 2,
"cyclomatic": 1,
"n_aut... | [
{
"name": "divK_beq_passthrough_spec_within",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 20,
"n_chars": 982,
"n_subproofs": 4,
"n_tactics": 13,
"cyclomatic": 1,
"n_automation": 2,
"n_rewrites": 1,
"n_structural": 3,
"automation_only": fals... | 1 | /-
EvmAsm.Evm64.DivMod.LoopBody.MulsubCorrectionAddback
Extracted from `LoopBody.lean` (Section 10b).
Mulsub + correction_addback composition (borrow ≠ 0 path):
combines `divK_mulsub_full_spec_within` with `divK_correction_addback_spec_within`,
with optional BEQ passthrough for the single-addback case.
P... | /-
EvmAsm.Evm64.DivMod.LoopBody.MulsubCorrectionAddback
Extracted from `LoopBody.lean` (Section 10b).
Mulsub + correction_addback composition (borrow ≠ 0 path):
combines `divK_mulsub_full_spec_within` with `divK_correction_addback_spec_within`,
with optional BEQ passthrough for the single-addback case.
P... | @@ -31,12 +31,28 @@
-- Section 10b: Mulsub + correction_addback composition (borrow ≠ 0 path)
-- ============================================================================
+theorem lb_beq_back_ntaken_local {base : Word} :
+ (base + addbackBeqOff : Word) + 4 = base + storeLoopOff := by
+ bv_addr
+
/-- BEQ pas... | {
"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_772329534757_1 | 59b42ed341c03219 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/LoopBody/MulsubCorrectionAddback.lean | MulsubCorrectionAddback | 1 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 6 | 4 | [
{
"theorem_name": "divK_beq_passthrough_spec_within",
"depth": 1,
"n_commands": 0,
"n_lines": 13,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n have hbeq := beq_spec_gen_within .x7 .x0 (8044 : BitVec 13) carry 0 (base + addbackBeqOff)\n rw [lb_beq_... | [
{
"name": "lb_beq_back_ntaken_local",
"text": "theorem lb_beq_back_ntaken_local {base : Word} :\n (base + addbackBeqOff : Word) + 4 = base + storeLoopOff := by\n bv_addr\n\n",
"fan_in": 4,
"n_lines": 5,
"n_chars": 126,
"n_subproofs": 0,
"n_tactics": 2,
"cyclomatic": 1,
"n_aut... | [
{
"name": "divK_beq_passthrough_v4_spec_within",
"fan_in": 0,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 19,
"n_chars": 944,
"n_subproofs": 4,
"n_tactics": 13,
"cyclomatic": 1,
"n_automation": 2,
"n_rewrites": 1,
"n_structural": 3,
"automation_only": f... | 1 | /-
EvmAsm.Evm64.DivMod.LoopBody.MulsubCorrectionAddback
Extracted from `LoopBody.lean` (Section 10b).
Mulsub + correction_addback composition (borrow ≠ 0 path):
combines `divK_mulsub_full_spec_within` with `divK_correction_addback_spec_within`,
with optional BEQ passthrough for the single-addback case.
P... | /-
EvmAsm.Evm64.DivMod.LoopBody.MulsubCorrectionAddback
Extracted from `LoopBody.lean` (Section 10b).
Mulsub + correction_addback composition (borrow ≠ 0 path):
combines `divK_mulsub_full_spec_within` with `divK_correction_addback_spec_within`,
with optional BEQ passthrough for the single-addback case.
P... | @@ -31,11 +31,27 @@
-- Section 10b: Mulsub + correction_addback composition (borrow ≠ 0 path)
-- ============================================================================
+theorem lb_beq_back_ntaken_local {base : Word} :
+ (base + addbackBeqOff : Word) + 4 = base + storeLoopOff := by
+ bv_addr
+
/-- v4 vari... | {
"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_772329534757_2 | 7816e23f92429806 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/LoopBody/MulsubCorrectionAddback.lean | MulsubCorrectionAddback | 2 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 6 | 4 | [
{
"theorem_name": "divK_beq_passthrough_spec_within",
"depth": 1,
"n_commands": 0,
"n_lines": 13,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n have hbeq := beq_spec_gen_within .x7 .x0 (8044 : BitVec 13) carry 0 (base + addbackBeqOff)\n rw [lb_beq_... | [
{
"name": "lb_beq_back_ntaken_local",
"text": "theorem lb_beq_back_ntaken_local {base : Word} :\n (base + addbackBeqOff : Word) + 4 = base + storeLoopOff := by\n bv_addr\n\n",
"fan_in": 4,
"n_lines": 5,
"n_chars": 126,
"n_subproofs": 0,
"n_tactics": 2,
"cyclomatic": 1,
"n_aut... | [
{
"name": "divK_beq_passthrough_spec_within_noNop",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 19,
"n_chars": 948,
"n_subproofs": 4,
"n_tactics": 13,
"cyclomatic": 1,
"n_automation": 2,
"n_rewrites": 1,
"n_structural": 3,
"automation_only"... | 1 | /-
EvmAsm.Evm64.DivMod.LoopBody.MulsubCorrectionAddback
Extracted from `LoopBody.lean` (Section 10b).
Mulsub + correction_addback composition (borrow ≠ 0 path):
combines `divK_mulsub_full_spec_within` with `divK_correction_addback_spec_within`,
with optional BEQ passthrough for the single-addback case.
P... | /-
EvmAsm.Evm64.DivMod.LoopBody.MulsubCorrectionAddback
Extracted from `LoopBody.lean` (Section 10b).
Mulsub + correction_addback composition (borrow ≠ 0 path):
combines `divK_mulsub_full_spec_within` with `divK_correction_addback_spec_within`,
with optional BEQ passthrough for the single-addback case.
P... | @@ -31,11 +31,27 @@
-- Section 10b: Mulsub + correction_addback composition (borrow ≠ 0 path)
-- ============================================================================
+theorem lb_beq_back_ntaken_local {base : Word} :
+ (base + addbackBeqOff : Word) + 4 = base + storeLoopOff := by
+ bv_addr
+
/-- No-NOP ... | {
"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_772329534757_3 | 6208fcbe02b240da | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/LoopBody/MulsubCorrectionAddback.lean | MulsubCorrectionAddback | 3 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 6 | 4 | [
{
"theorem_name": "divK_beq_passthrough_spec_within",
"depth": 1,
"n_commands": 0,
"n_lines": 13,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n have hbeq := beq_spec_gen_within .x7 .x0 (8044 : BitVec 13) carry 0 (base + addbackBeqOff)\n rw [lb_beq_... | [
{
"name": "lb_beq_back_ntaken_local",
"text": "theorem lb_beq_back_ntaken_local {base : Word} :\n (base + addbackBeqOff : Word) + 4 = base + storeLoopOff := by\n bv_addr\n\n",
"fan_in": 4,
"n_lines": 5,
"n_chars": 126,
"n_subproofs": 0,
"n_tactics": 2,
"cyclomatic": 1,
"n_aut... | [
{
"name": "divK_beq_passthrough_v4_spec_within_noNop",
"fan_in": 0,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 19,
"n_chars": 968,
"n_subproofs": 4,
"n_tactics": 13,
"cyclomatic": 1,
"n_automation": 2,
"n_rewrites": 1,
"n_structural": 3,
"automation_on... | 1 | /-
EvmAsm.Evm64.DivMod.LoopBody.MulsubCorrectionAddback
Extracted from `LoopBody.lean` (Section 10b).
Mulsub + correction_addback composition (borrow ≠ 0 path):
combines `divK_mulsub_full_spec_within` with `divK_correction_addback_spec_within`,
with optional BEQ passthrough for the single-addback case.
P... | /-
EvmAsm.Evm64.DivMod.LoopBody.MulsubCorrectionAddback
Extracted from `LoopBody.lean` (Section 10b).
Mulsub + correction_addback composition (borrow ≠ 0 path):
combines `divK_mulsub_full_spec_within` with `divK_correction_addback_spec_within`,
with optional BEQ passthrough for the single-addback case.
P... | @@ -31,11 +31,27 @@
-- Section 10b: Mulsub + correction_addback composition (borrow ≠ 0 path)
-- ============================================================================
+theorem lb_beq_back_ntaken_local {base : Word} :
+ (base + addbackBeqOff : Word) + 4 = base + storeLoopOff := by
+ bv_addr
+
/-- v4 no-N... | {
"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_772329534757_4 | 985e619d8472608a | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/LoopBody/MulsubCorrectionAddback.lean | MulsubCorrectionAddback | 4 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 6 | 3 | [
{
"theorem_name": "divK_mulsub_correction_addback_named_880_spec_within",
"depth": 1,
"n_commands": 0,
"n_lines": 7,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n intro uBase hborrow\n exact cpsTripleWithin_weaken\n (fun h hp => hp)\n (fun h ... | [
{
"name": "n4McaNamed880Post_unfold",
"text": "theorem n4McaNamed880Post_unfold\n {sp qHat j v0 v1 v2 v3 u0 u1 u2 u3 uTop : Word} :\n n4McaNamed880Post sp qHat j v0 v1 v2 v3 u0 u1 u2 u3 uTop =\n (let uBase := sp + signExtend12 4056 - j <<< (3 : BitVec 6).toNat\n let ms := mulsubN4 qHat v... | [
{
"name": "divK_mulsub_correction_addback_named_880_spec_within",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 2,
"n_lines": 30,
"n_chars": 1676,
"n_subproofs": 0,
"n_tactics": 8,
"cyclomatic": 1,
"n_automation": 1,
"n_rewrites": 0,
"n_structural": 3,
"au... | 2 | /-
EvmAsm.Evm64.DivMod.LoopBody.MulsubCorrectionAddback
Extracted from `LoopBody.lean` (Section 10b).
Mulsub + correction_addback composition (borrow ≠ 0 path):
combines `divK_mulsub_full_spec_within` with `divK_correction_addback_spec_within`,
with optional BEQ passthrough for the single-addback case.
P... | /-
EvmAsm.Evm64.DivMod.LoopBody.MulsubCorrectionAddback
Extracted from `LoopBody.lean` (Section 10b).
Mulsub + correction_addback composition (borrow ≠ 0 path):
combines `divK_mulsub_full_spec_within` with `divK_correction_addback_spec_within`,
with optional BEQ passthrough for the single-addback case.
P... | @@ -157,6 +157,27 @@
((sp + signExtend12 56) ↦ₘ v3) ** ((uBase + signExtend12 4072) ↦ₘ ab.2.2.2.1) **
((uBase + signExtend12 4064) ↦ₘ ab.2.2.2.2)
+theorem n4McaNamed880Post_unfold
+ {sp qHat j v0 v1 v2 v3 u0 u1 u2 u3 uTop : Word} :
+ n4McaNamed880Post sp qHat j v0 v1 v2 v3 u0 u1 u2 u3 uTop =
+ (let u... | {
"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_772329534757_5 | bf113ccb297a0e12 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/LoopBody/MulsubCorrectionAddback.lean | MulsubCorrectionAddback | 5 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 6 | 3 | [
{
"theorem_name": "divK_mulsub_correction_addback_named_880_spec_within",
"depth": 1,
"n_commands": 0,
"n_lines": 7,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n intro uBase hborrow\n exact cpsTripleWithin_weaken\n (fun h hp => hp)\n (fun h ... | [
{
"name": "n4McaNamed880Post_unfold",
"text": "theorem n4McaNamed880Post_unfold\n {sp qHat j v0 v1 v2 v3 u0 u1 u2 u3 uTop : Word} :\n n4McaNamed880Post sp qHat j v0 v1 v2 v3 u0 u1 u2 u3 uTop =\n (let uBase := sp + signExtend12 4056 - j <<< (3 : BitVec 6).toNat\n let ms := mulsubN4 qHat v... | [
{
"name": "divK_mulsub_correction_addback_named_880_spec_within_noNop",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 2,
"n_lines": 31,
"n_chars": 1772,
"n_subproofs": 0,
"n_tactics": 8,
"cyclomatic": 1,
"n_automation": 1,
"n_rewrites": 0,
"n_structural": 3,
... | 2 | /-
EvmAsm.Evm64.DivMod.LoopBody.MulsubCorrectionAddback
Extracted from `LoopBody.lean` (Section 10b).
Mulsub + correction_addback composition (borrow ≠ 0 path):
combines `divK_mulsub_full_spec_within` with `divK_correction_addback_spec_within`,
with optional BEQ passthrough for the single-addback case.
P... | /-
EvmAsm.Evm64.DivMod.LoopBody.MulsubCorrectionAddback
Extracted from `LoopBody.lean` (Section 10b).
Mulsub + correction_addback composition (borrow ≠ 0 path):
combines `divK_mulsub_full_spec_within` with `divK_correction_addback_spec_within`,
with optional BEQ passthrough for the single-addback case.
P... | @@ -158,6 +158,27 @@
((sp + signExtend12 56) ↦ₘ v3) ** ((uBase + signExtend12 4072) ↦ₘ ab.2.2.2.1) **
((uBase + signExtend12 4064) ↦ₘ ab.2.2.2.2)
+theorem n4McaNamed880Post_unfold
+ {sp qHat j v0 v1 v2 v3 u0 u1 u2 u3 uTop : Word} :
+ n4McaNamed880Post sp qHat j v0 v1 v2 v3 u0 u1 u2 u3 uTop =
+ (let u... | {
"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_772329534757_6 | dc6911569b74daeb | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/LoopBody/MulsubCorrectionAddback.lean | MulsubCorrectionAddback | 6 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 6 | 3 | [
{
"theorem_name": "divK_mulsub_correction_addback_named_880_spec_within",
"depth": 1,
"n_commands": 0,
"n_lines": 7,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n intro uBase hborrow\n exact cpsTripleWithin_weaken\n (fun h hp => hp)\n (fun h ... | [
{
"name": "n4McaNamed880Post_unfold",
"text": "theorem n4McaNamed880Post_unfold\n {sp qHat j v0 v1 v2 v3 u0 u1 u2 u3 uTop : Word} :\n n4McaNamed880Post sp qHat j v0 v1 v2 v3 u0 u1 u2 u3 uTop =\n (let uBase := sp + signExtend12 4056 - j <<< (3 : BitVec 6).toNat\n let ms := mulsubN4 qHat v... | [
{
"name": "divK_mulsub_correction_addback_named_880_v4_spec_within_noNop",
"fan_in": 0,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 75,
"n_chars": 3198,
"n_subproofs": 2,
"n_tactics": 53,
"cyclomatic": 1,
"n_automation": 1,
"n_rewrites": 4,
"n_structural": ... | 1 | /-
EvmAsm.Evm64.DivMod.LoopBody.MulsubCorrectionAddback
Extracted from `LoopBody.lean` (Section 10b).
Mulsub + correction_addback composition (borrow ≠ 0 path):
combines `divK_mulsub_full_spec_within` with `divK_correction_addback_spec_within`,
with optional BEQ passthrough for the single-addback case.
P... | /-
EvmAsm.Evm64.DivMod.LoopBody.MulsubCorrectionAddback
Extracted from `LoopBody.lean` (Section 10b).
Mulsub + correction_addback composition (borrow ≠ 0 path):
combines `divK_mulsub_full_spec_within` with `divK_correction_addback_spec_within`,
with optional BEQ passthrough for the single-addback case.
P... | @@ -54,6 +54,27 @@
((sp + signExtend12 56) ↦ₘ v3) ** ((uBase + signExtend12 4072) ↦ₘ ab.2.2.2.1) **
((uBase + signExtend12 4064) ↦ₘ ab.2.2.2.2)
+theorem n4McaNamed880Post_unfold
+ {sp qHat j v0 v1 v2 v3 u0 u1 u2 u3 uTop : Word} :
+ n4McaNamed880Post sp qHat j v0 v1 v2 v3 u0 u1 u2 u3 uTop =
+ (let uBa... | {
"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_772329534757_7 | a78e9431297be15f | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/LoopBody/MulsubCorrectionAddback.lean | MulsubCorrectionAddback | 7 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 6 | 2 | [
{
"theorem_name": "divK_mulsub_correction_addback_named_880_spec_within",
"depth": 1,
"n_commands": 0,
"n_lines": 7,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n intro uBase hborrow\n exact cpsTripleWithin_weaken\n (fun h hp => hp)\n (fun h ... | [
{
"name": "divK_mulsub_correction_addback_880_spec_within",
"text": "private theorem divK_mulsub_correction_addback_880_spec_within\n (sp qHat j v0 v1 v2 v3 u0 u1 u2 u3 uTop : Word)\n (v1Old v5Old v6Old v7Old v10Old v2Old : Word)\n (base : Word) :\n let uBase := sp + signExtend12 4056 - j <<< (3... | [
{
"name": "divK_mulsub_correction_addback_spec_within",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 3,
"n_lines": 116,
"n_chars": 5891,
"n_subproofs": 4,
"n_tactics": 30,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 2,
"automation... | 3 | /-
EvmAsm.Evm64.DivMod.LoopBody.MulsubCorrectionAddback
Extracted from `LoopBody.lean` (Section 10b).
Mulsub + correction_addback composition (borrow ≠ 0 path):
combines `divK_mulsub_full_spec_within` with `divK_correction_addback_spec_within`,
with optional BEQ passthrough for the single-addback case.
P... | /-
EvmAsm.Evm64.DivMod.LoopBody.MulsubCorrectionAddback
Extracted from `LoopBody.lean` (Section 10b).
Mulsub + correction_addback composition (borrow ≠ 0 path):
combines `divK_mulsub_full_spec_within` with `divK_correction_addback_spec_within`,
with optional BEQ passthrough for the single-addback case.
P... | @@ -54,6 +54,109 @@
(fun h' hp' => ((sepConj_pure_right h').1 hp').1) h hp)
ntaken
+private theorem divK_mulsub_correction_addback_880_spec_within
+ (sp qHat j v0 v1 v2 v3 u0 u1 u2 u3 uTop : Word)
+ (v1Old v5Old v6Old v7Old v10Old v2Old : Word)
+ (base : Word) :
+ let uBase := sp + signExtend1... | {
"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_772329534757_8 | a3312e9bc76b8754 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/LoopBody/MulsubCorrectionAddback.lean | MulsubCorrectionAddback | 8 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 6 | 2 | [
{
"theorem_name": "divK_mulsub_correction_addback_named_880_spec_within_noNop",
"depth": 1,
"n_commands": 0,
"n_lines": 7,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n intro uBase hborrow\n exact cpsTripleWithin_weaken\n (fun h hp => hp)\n (... | [
{
"name": "divK_mulsub_correction_addback_880_spec_within_noNop",
"text": "/-- No-NOP variant of `divK_mulsub_correction_addback_880_spec_within`. -/\nprivate theorem divK_mulsub_correction_addback_880_spec_within_noNop\n (sp qHat j v0 v1 v2 v3 u0 u1 u2 u3 uTop : Word)\n (v1Old v5Old v6Old v7Old v10Ol... | [
{
"name": "divK_mulsub_correction_addback_spec_within_noNop",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 3,
"n_lines": 115,
"n_chars": 5767,
"n_subproofs": 4,
"n_tactics": 30,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 2,
"auto... | 3 | /-
EvmAsm.Evm64.DivMod.LoopBody.MulsubCorrectionAddback
Extracted from `LoopBody.lean` (Section 10b).
Mulsub + correction_addback composition (borrow ≠ 0 path):
combines `divK_mulsub_full_spec_within` with `divK_correction_addback_spec_within`,
with optional BEQ passthrough for the single-addback case.
P... | /-
EvmAsm.Evm64.DivMod.LoopBody.MulsubCorrectionAddback
Extracted from `LoopBody.lean` (Section 10b).
Mulsub + correction_addback composition (borrow ≠ 0 path):
combines `divK_mulsub_full_spec_within` with `divK_correction_addback_spec_within`,
with optional BEQ passthrough for the single-addback case.
P... | @@ -53,6 +53,110 @@
(fun h' hp' => ((sepConj_pure_right h').1 hp').1) h hp)
ntaken
+/-- No-NOP variant of `divK_mulsub_correction_addback_880_spec_within`. -/
+private theorem divK_mulsub_correction_addback_880_spec_within_noNop
+ (sp qHat j v0 v1 v2 v3 u0 u1 u2 u3 uTop : Word)
+ (v1Old v5Old v6Old ... | {
"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_cf8cf5674145_0 | a83aa1003e81a440 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/Swap/Spec.lean | Spec | 0 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 1 | 1 | [
{
"theorem_name": "evm_swap_stack_spec_within",
"depth": 1,
"n_commands": 0,
"n_lines": 35,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n intro top nth\n -- Split evmStackIs sp stack at position 0 to extract top\n have hk0 : 0 < stack.length := by... | [
{
"name": "evm_swap_evmword_spec_within",
"text": "/-- SWAPn spec at evmWordIs level: swaps the top and nth stack elements. -/\ntheorem evm_swap_evmword_spec_within (sp base : Word)\n (n : Nat) (hn1 : 1 ≤ n) (hn16 : n ≤ 16)\n (top nth : EvmWord) (v7 v6 : Word) :\n cpsTripleWithin 16 base (base + 64... | [
{
"name": "evm_swap_stack_spec_within",
"fan_in": 0,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 55,
"n_chars": 2751,
"n_subproofs": 9,
"n_tactics": 37,
"cyclomatic": 1,
"n_automation": 12,
"n_rewrites": 5,
"n_structural": 4,
"automation_only": false,
... | 1 | /-
EvmAsm.Evm64.Swap.Spec
256-bit EVM SWAP1-16 specs.
-/
import EvmAsm.Evm64.Swap.Program
import EvmAsm.Evm64.Stack
import EvmAsm.Rv64.SyscallSpecs
import EvmAsm.Rv64.Tactics.XSimp
import EvmAsm.Rv64.Tactics.RunBlock
open EvmAsm.Rv64.Tactics
namespace EvmAsm.Evm64
open EvmAsm.Rv64
-- =========================... | /-
EvmAsm.Evm64.Swap.Spec
256-bit EVM SWAP1-16 specs.
-/
import EvmAsm.Evm64.Swap.Program
import EvmAsm.Evm64.Stack
import EvmAsm.Rv64.SyscallSpecs
import EvmAsm.Rv64.Tactics.XSimp
import EvmAsm.Rv64.Tactics.RunBlock
open EvmAsm.Rv64.Tactics
namespace EvmAsm.Evm64
open EvmAsm.Rv64
-- =========================... | @@ -108,6 +108,40 @@
-- EvmWord-level SWAP spec
-- ============================================================================
+/-- SWAPn spec at evmWordIs level: swaps the top and nth stack elements. -/
+theorem evm_swap_evmword_spec_within (sp base : Word)
+ (n : Nat) (hn1 : 1 ≤ n) (hn16 : n ≤ 16)
+ (top n... | {
"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_b7c7cbf178f5_0 | 937393b030962434 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Codegen/Programs/RlpListEncodedSizeSAsm.lean | RlpListEncodedSizeSAsm | 0 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 8 | 2 | [
{
"theorem_name": "u64ByteLen_shift_zero",
"depth": 1,
"n_commands": 0,
"n_lines": 5,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n rw [shift_zero_iff]\n have hlt := v.isLt\n unfold u64ByteLen\n split_ifs <;> (simp only [Nat.reduceMul]; omega)",
... | [
{
"name": "shift_zero_iff",
"text": "/-- A right shift vanishes exactly when the value fits below it. -/\nprivate theorem shift_zero_iff (v : Word) (k : Nat) :\n v >>> k = (0 : Word) ↔ v.toNat < 2 ^ k := by\n constructor\n · intro h\n have hdiv := congrArg BitVec.toNat h\n rw [BitVec.toNat_ushift... | [
{
"name": "u64ByteLen_shift_zero",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 10,
"n_chars": 334,
"n_subproofs": 1,
"n_tactics": 7,
"cyclomatic": 2,
"n_automation": 2,
"n_rewrites": 2,
"n_structural": 0,
"automation_only": false,
"max_... | 1 | /-
EvmAsm.Codegen.Programs.RlpListEncodedSizeSAsm
`rlp_list_encoded_size` — the **payload-dependent return-terminating
routine** (bead evm-asm-8tw0t), ported WITHOUT new `retSound` split
lemmas: at `cpsTripleWithin` level the "payload-dependent loop count"
difficulty dissolves, because `twoBreakRetLoop_spec`... | /-
EvmAsm.Codegen.Programs.RlpListEncodedSizeSAsm
`rlp_list_encoded_size` — the **payload-dependent return-terminating
routine** (bead evm-asm-8tw0t), ported WITHOUT new `retSound` split
lemmas: at `cpsTripleWithin` level the "payload-dependent loop count"
difficulty dissolves, because `twoBreakRetLoop_spec`... | @@ -82,10 +82,35 @@
unfold u64ByteLen
split_ifs <;> omega
+/-- A right shift vanishes exactly when the value fits below it. -/
+private theorem shift_zero_iff (v : Word) (k : Nat) :
+ v >>> k = (0 : Word) ↔ v.toNat < 2 ^ k := by
+ constructor
+ · intro h
+ have hdiv := congrArg BitVec.toNat h
+ rw [B... | {
"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_b7c7cbf178f5_1 | 9416f77a2cf48b09 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Codegen/Programs/RlpListEncodedSizeSAsm.lean | RlpListEncodedSizeSAsm | 1 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 8 | 1 | [
{
"theorem_name": "rlsIter_spec",
"depth": 1,
"n_commands": 0,
"n_lines": 81,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n set CR := CodeReq.ofProg (GuestAddrs.rlp_list_encoded_size : Word) rlpListEncodedSize_prog with hCR\n have hN8 := u64ByteLen... | [
{
"name": "shift_step",
"text": "/-- One `SRLI 8` advances the shift count by one byte. -/\nprivate theorem shift_step (v : Word) (i : Nat) :\n (v >>> (8 * i)) >>> ((8 : BitVec 6)).toNat = v >>> (8 * (i + 1)) := by\n rw [show ((8 : BitVec 6)).toNat = 8 from rfl]\n apply BitVec.eq_of_toNat_eq\n rw [Bit... | [
{
"name": "rlpListEncodedSize_spec",
"fan_in": 0,
"n_deps_direct": 4,
"n_deps_transitive": 10,
"n_lines": 177,
"n_chars": 8918,
"n_subproofs": 25,
"n_tactics": 161,
"cyclomatic": 1,
"n_automation": 15,
"n_rewrites": 25,
"n_structural": 9,
"automation_only": false,... | 8 | /-
EvmAsm.Codegen.Programs.RlpListEncodedSizeSAsm
`rlp_list_encoded_size` — the **payload-dependent return-terminating
routine** (bead evm-asm-8tw0t), ported WITHOUT new `retSound` split
lemmas: at `cpsTripleWithin` level the "payload-dependent loop count"
difficulty dissolves, because `twoBreakRetLoop_spec`... | /-
EvmAsm.Codegen.Programs.RlpListEncodedSizeSAsm
`rlp_list_encoded_size` — the **payload-dependent return-terminating
routine** (bead evm-asm-8tw0t), ported WITHOUT new `retSound` split
lemmas: at `cpsTripleWithin` level the "payload-dependent loop count"
difficulty dissolves, because `twoBreakRetLoop_spec`... | @@ -129,6 +129,15 @@
have := u64ByteLen_ge v i hi
omega
+/-- One `SRLI 8` advances the shift count by one byte. -/
+private theorem shift_step (v : Word) (i : Nat) :
+ (v >>> (8 * i)) >>> ((8 : BitVec 6)).toNat = v >>> (8 * (i + 1)) := by
+ rw [show ((8 : BitVec 6)).toNat = 8 from rfl]
+ apply BitVec.eq_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_a6fa78e32adf_0 | 68008ffbe614a22a | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Compose/FullPathN4V5NoNopPreloopMod.lean | FullPathN4V5NoNopPreloopMod | 0 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 3 | 1 | [
{
"theorem_name": "evm_mod_phaseAB_n4_clz_spec_within_v5_noNop",
"depth": 1,
"n_commands": 0,
"n_lines": 32,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n have hA := evm_mod_phaseA_ntaken_spec_within_v5_noNop sp base b0 b1 b2 b3 v5 v10 hbnz\n have ... | [
{
"name": "evm_mod_phaseB_n4_spec_within_v5_noNop",
"text": "/-- PhaseB(n=4) over `modCode_noNop_v5`: the `b3 ≠ 0` dispatch branch (n = 4). -/\ntheorem evm_mod_phaseB_n4_spec_within_v5_noNop (sp base : Word)\n (b1 b2 b3 : Word) (v5 v6 v7 : Word)\n (q0 q1 q2 q3 u5 u6 u7 nMem : Word)\n (hb3nz : b3 ≠ ... | [
{
"name": "evm_mod_phaseAB_n4_clz_spec_within_v5_noNop",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 58,
"n_chars": 3587,
"n_subproofs": 8,
"n_tactics": 32,
"cyclomatic": 1,
"n_automation": 1,
"n_rewrites": 0,
"n_structural": 1,
"automation... | 1 | /-
EvmAsm.Evm64.DivMod.Compose.FullPathN4V5NoNopPreloopMod
The n=4 MOD preloop pieces over `modCode_noNop_v5`, the MOD mirror of the DIV
n=4 preloop (`FullPathN4V5NoNopPreloop`): PhaseB(n=4) `b3 ≠ 0` dispatch +
AB/CLZ/PhaseC2/NormB/NormA/LoopSetup over `modCode_noNop_v5`. Div→mod swaps:
code surface `divCod... | /-
EvmAsm.Evm64.DivMod.Compose.FullPathN4V5NoNopPreloopMod
The n=4 MOD preloop pieces over `modCode_noNop_v5`, the MOD mirror of the DIV
n=4 preloop (`FullPathN4V5NoNopPreloop`): PhaseB(n=4) `b3 ≠ 0` dispatch +
AB/CLZ/PhaseC2/NormB/NormA/LoopSetup over `modCode_noNop_v5`. Div→mod swaps:
code surface `divCod... | @@ -19,6 +19,72 @@
open EvmAsm.Rv64
+/-- PhaseB(n=4) over `modCode_noNop_v5`: the `b3 ≠ 0` dispatch branch (n = 4). -/
+theorem evm_mod_phaseB_n4_spec_within_v5_noNop (sp base : Word)
+ (b1 b2 b3 : Word) (v5 v6 v7 : Word)
+ (q0 q1 q2 q3 u5 u6 u7 nMem : Word)
+ (hb3nz : b3 ≠ 0) :
+ cpsTripleWithin 21 (b... | {
"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_a6fa78e32adf_1 | ef170cd88f5f7451 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Compose/FullPathN4V5NoNopPreloopMod.lean | FullPathN4V5NoNopPreloopMod | 1 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 3 | 1 | [
{
"theorem_name": "evm_mod_phaseAB_n4_clz_spec_within_v5_noNop",
"depth": 1,
"n_commands": 0,
"n_lines": 32,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n have hA := evm_mod_phaseA_ntaken_spec_within_v5_noNop sp base b0 b1 b2 b3 v5 v10 hbnz\n have ... | [
{
"name": "evm_mod_phaseB_n4_spec_within_v5_noNop",
"text": "/-- PhaseB(n=4) over `modCode_noNop_v5`: the `b3 ≠ 0` dispatch branch (n = 4). -/\ntheorem evm_mod_phaseB_n4_spec_within_v5_noNop (sp base : Word)\n (b1 b2 b3 : Word) (v5 v6 v7 : Word)\n (q0 q1 q2 q3 u5 u6 u7 nMem : Word)\n (hb3nz : b3 ≠ ... | [
{
"name": "evm_mod_n4_to_normB_spec_within_v5_noNop",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 2,
"n_lines": 62,
"n_chars": 3544,
"n_subproofs": 8,
"n_tactics": 42,
"cyclomatic": 1,
"n_automation": 2,
"n_rewrites": 1,
"n_structural": 1,
"automation_on... | 2 | /-
EvmAsm.Evm64.DivMod.Compose.FullPathN4V5NoNopPreloopMod
The n=4 MOD preloop pieces over `modCode_noNop_v5`, the MOD mirror of the DIV
n=4 preloop (`FullPathN4V5NoNopPreloop`): PhaseB(n=4) `b3 ≠ 0` dispatch +
AB/CLZ/PhaseC2/NormB/NormA/LoopSetup over `modCode_noNop_v5`. Div→mod swaps:
code surface `divCod... | /-
EvmAsm.Evm64.DivMod.Compose.FullPathN4V5NoNopPreloopMod
The n=4 MOD preloop pieces over `modCode_noNop_v5`, the MOD mirror of the DIV
n=4 preloop (`FullPathN4V5NoNopPreloop`): PhaseB(n=4) `b3 ≠ 0` dispatch +
AB/CLZ/PhaseC2/NormB/NormA/LoopSetup over `modCode_noNop_v5`. Div→mod swaps:
code surface `divCod... | @@ -19,6 +19,72 @@
open EvmAsm.Rv64
+/-- PhaseB(n=4) over `modCode_noNop_v5`: the `b3 ≠ 0` dispatch branch (n = 4). -/
+theorem evm_mod_phaseB_n4_spec_within_v5_noNop (sp base : Word)
+ (b1 b2 b3 : Word) (v5 v6 v7 : Word)
+ (q0 q1 q2 q3 u5 u6 u7 nMem : Word)
+ (hb3nz : b3 ≠ 0) :
+ cpsTripleWithin 21 (b... | {
"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_a6fa78e32adf_2 | 6beb5c25b85ec4fa | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Compose/FullPathN4V5NoNopPreloopMod.lean | FullPathN4V5NoNopPreloopMod | 2 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 3 | 1 | [
{
"theorem_name": "evm_mod_phaseAB_n4_clz_spec_within_v5_noNop",
"depth": 1,
"n_commands": 0,
"n_lines": 32,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n have hA := evm_mod_phaseA_ntaken_spec_within_v5_noNop sp base b0 b1 b2 b3 v5 v10 hbnz\n have ... | [
{
"name": "evm_mod_phaseB_n4_spec_within_v5_noNop",
"text": "/-- PhaseB(n=4) over `modCode_noNop_v5`: the `b3 ≠ 0` dispatch branch (n = 4). -/\ntheorem evm_mod_phaseB_n4_spec_within_v5_noNop (sp base : Word)\n (b1 b2 b3 : Word) (v5 v6 v7 : Word)\n (q0 q1 q2 q3 u5 u6 u7 nMem : Word)\n (hb3nz : b3 ≠ ... | [
{
"name": "evm_mod_n4_to_loopSetup_spec_within_v5_noNop",
"fan_in": 0,
"n_deps_direct": 1,
"n_deps_transitive": 3,
"n_lines": 92,
"n_chars": 5588,
"n_subproofs": 8,
"n_tactics": 68,
"cyclomatic": 1,
"n_automation": 4,
"n_rewrites": 3,
"n_structural": 1,
"automatio... | 3 | /-
EvmAsm.Evm64.DivMod.Compose.FullPathN4V5NoNopPreloopMod
The n=4 MOD preloop pieces over `modCode_noNop_v5`, the MOD mirror of the DIV
n=4 preloop (`FullPathN4V5NoNopPreloop`): PhaseB(n=4) `b3 ≠ 0` dispatch +
AB/CLZ/PhaseC2/NormB/NormA/LoopSetup over `modCode_noNop_v5`. Div→mod swaps:
code surface `divCod... | /-
EvmAsm.Evm64.DivMod.Compose.FullPathN4V5NoNopPreloopMod
The n=4 MOD preloop pieces over `modCode_noNop_v5`, the MOD mirror of the DIV
n=4 preloop (`FullPathN4V5NoNopPreloop`): PhaseB(n=4) `b3 ≠ 0` dispatch +
AB/CLZ/PhaseC2/NormB/NormA/LoopSetup over `modCode_noNop_v5`. Div→mod swaps:
code surface `divCod... | @@ -19,6 +19,72 @@
open EvmAsm.Rv64
+/-- PhaseB(n=4) over `modCode_noNop_v5`: the `b3 ≠ 0` dispatch branch (n = 4). -/
+theorem evm_mod_phaseB_n4_spec_within_v5_noNop (sp base : Word)
+ (b1 b2 b3 : Word) (v5 v6 v7 : Word)
+ (q0 q1 q2 q3 u5 u6 u7 nMem : Word)
+ (hb3nz : b3 ≠ 0) :
+ cpsTripleWithin 21 (b... | {
"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_eccdfc515c42_0 | 59e4de251a76e83e | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/MulMod/ReduceShift.lean | ReduceShift | 0 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 6 | 1 | [
{
"theorem_name": "mulModReduceShiftInBit_getLimbN_zero",
"depth": 1,
"n_commands": 0,
"n_lines": 8,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n unfold mulModReduceShiftInBit\n rw [EvmWord.getLimbN_or, mulModReduceRemWord_shiftLeft_one_getLimbN_z... | [
{
"name": "mulModReduceRemWord_shiftLeft_one_getLimbN_zero",
"text": "theorem mulModReduceRemWord_shiftLeft_one_getLimbN_zero (r0 r1 r2 r3 : Word) :\n EvmWord.getLimbN (mulModReduceRemWord r0 r1 r2 r3 <<< 1) 0 = r0 <<< 1 := by\n rw [show EvmWord.getLimbN (mulModReduceRemWord r0 r1 r2 r3 <<< 1) 0 =\n ... | [
{
"name": "mulModReduceShiftInBit_getLimbN_zero",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 12,
"n_chars": 479,
"n_subproofs": 0,
"n_tactics": 8,
"cyclomatic": 2,
"n_automation": 2,
"n_rewrites": 4,
"n_structural": 1,
"automation_only": f... | 1 | /-
EvmAsm.Evm64.MulMod.ReduceShift
Pure limb bridges for the shift-and-insert half of the bit-serial MULMOD
reducer inner step.
-/
import EvmAsm.Evm64.MulMod.ReduceSemantics
namespace EvmAsm.Evm64
open EvmAsm.Rv64
theorem mulModReduceShiftInBit_getLimbN_zero (r0 r1 r2 r3 : Word) (bit : Bool) :
EvmWord.ge... | /-
EvmAsm.Evm64.MulMod.ReduceShift
Pure limb bridges for the shift-and-insert half of the bit-serial MULMOD
reducer inner step.
-/
import EvmAsm.Evm64.MulMod.ReduceSemantics
namespace EvmAsm.Evm64
open EvmAsm.Rv64
theorem mulModReduceRemWord_shiftLeft_one_getLimbN_zero (r0 r1 r2 r3 : Word) :
EvmWord.getL... | @@ -11,9 +11,25 @@
open EvmAsm.Rv64
+theorem mulModReduceRemWord_shiftLeft_one_getLimbN_zero (r0 r1 r2 r3 : Word) :
+ EvmWord.getLimbN (mulModReduceRemWord r0 r1 r2 r3 <<< 1) 0 = r0 <<< 1 := by
+ rw [show EvmWord.getLimbN (mulModReduceRemWord r0 r1 r2 r3 <<< 1) 0 =
+ EvmWord.getLimb (mulModReduceRemWord 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_eccdfc515c42_1 | 352a9a90289cc4a8 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/MulMod/ReduceShift.lean | ReduceShift | 1 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 6 | 1 | [
{
"theorem_name": "mulModReduceShiftInBit_getLimbN_zero",
"depth": 1,
"n_commands": 0,
"n_lines": 8,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n unfold mulModReduceShiftInBit\n rw [EvmWord.getLimbN_or, mulModReduceRemWord_shiftLeft_one_getLimbN_z... | [
{
"name": "mulModReduceRemWord_shiftLeft_one_getLimbN_zero",
"text": "theorem mulModReduceRemWord_shiftLeft_one_getLimbN_zero (r0 r1 r2 r3 : Word) :\n EvmWord.getLimbN (mulModReduceRemWord r0 r1 r2 r3 <<< 1) 0 = r0 <<< 1 := by\n rw [show EvmWord.getLimbN (mulModReduceRemWord r0 r1 r2 r3 <<< 1) 0 =\n ... | [
{
"name": "mulModReduceShiftInBit_getLimbN_zero_input",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 3,
"n_lines": 8,
"n_chars": 323,
"n_subproofs": 0,
"n_tactics": 3,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 2,
"n_structural": 0,
"automation_onl... | 3 | /-
EvmAsm.Evm64.MulMod.ReduceShift
Pure limb bridges for the shift-and-insert half of the bit-serial MULMOD
reducer inner step.
-/
import EvmAsm.Evm64.MulMod.ReduceSemantics
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- The consumed high bit of `x17` as the one-bit word produced by `SRLI x17, 63`. -/
theorem m... | /-
EvmAsm.Evm64.MulMod.ReduceShift
Pure limb bridges for the shift-and-insert half of the bit-serial MULMOD
reducer inner step.
-/
import EvmAsm.Evm64.MulMod.ReduceSemantics
namespace EvmAsm.Evm64
open EvmAsm.Rv64
/-- The consumed high bit of `x17` as the one-bit word produced by `SRLI x17, 63`. -/
theorem m... | @@ -28,9 +28,25 @@
by_cases hbit : x17.toNat.testBit 63 = true <;>
simp [BitVec.getElem_ushiftRight, BitVec.getLsbD, hbit, hj, htest]
+theorem mulModReduceRemWord_shiftLeft_one_getLimbN_zero (r0 r1 r2 r3 : Word) :
+ EvmWord.getLimbN (mulModReduceRemWord r0 r1 r2 r3 <<< 1) 0 = r0 <<< 1 := by
+ rw [show... | {
"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_eccdfc515c42_2 | b7bc12f856c9e34f | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/MulMod/ReduceShift.lean | ReduceShift | 2 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 6 | 1 | [
{
"theorem_name": "mulModReduceShiftInBit_getLimbN_one",
"depth": 1,
"n_commands": 0,
"n_lines": 8,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n unfold mulModReduceShiftInBit\n rw [EvmWord.getLimbN_or, mulModReduceRemWord_shiftLeft_one_getLimbN_on... | [
{
"name": "mulModReduceRemWord_shiftLeft_one_getLimbN_one",
"text": "theorem mulModReduceRemWord_shiftLeft_one_getLimbN_one (r0 r1 r2 r3 : Word) :\n EvmWord.getLimbN (mulModReduceRemWord r0 r1 r2 r3 <<< 1) 1 =\n (r1 <<< 1) ||| (r0 >>> 63) := by\n rw [show EvmWord.getLimbN (mulModReduceRemWord r0 r1... | [
{
"name": "mulModReduceShiftInBit_getLimbN_one",
"fan_in": 0,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 12,
"n_chars": 465,
"n_subproofs": 0,
"n_tactics": 8,
"cyclomatic": 2,
"n_automation": 2,
"n_rewrites": 4,
"n_structural": 1,
"automation_only": fa... | 1 | /-
EvmAsm.Evm64.MulMod.ReduceShift
Pure limb bridges for the shift-and-insert half of the bit-serial MULMOD
reducer inner step.
-/
import EvmAsm.Evm64.MulMod.ReduceSemantics
namespace EvmAsm.Evm64
open EvmAsm.Rv64
theorem mulModReduceShiftInBit_getLimbN_one (r0 r1 r2 r3 : Word) (bit : Bool) :
EvmWord.get... | /-
EvmAsm.Evm64.MulMod.ReduceShift
Pure limb bridges for the shift-and-insert half of the bit-serial MULMOD
reducer inner step.
-/
import EvmAsm.Evm64.MulMod.ReduceSemantics
namespace EvmAsm.Evm64
open EvmAsm.Rv64
theorem mulModReduceRemWord_shiftLeft_one_getLimbN_one (r0 r1 r2 r3 : Word) :
EvmWord.getLi... | @@ -11,9 +11,28 @@
open EvmAsm.Rv64
+theorem mulModReduceRemWord_shiftLeft_one_getLimbN_one (r0 r1 r2 r3 : Word) :
+ EvmWord.getLimbN (mulModReduceRemWord r0 r1 r2 r3 <<< 1) 1 =
+ (r1 <<< 1) ||| (r0 >>> 63) := by
+ rw [show EvmWord.getLimbN (mulModReduceRemWord r0 r1 r2 r3 <<< 1) 1 =
+ EvmWord.getLim... | {
"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_eccdfc515c42_3 | bafe749370e916e3 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/MulMod/ReduceShift.lean | ReduceShift | 3 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 6 | 1 | [
{
"theorem_name": "mulModReduceShiftInBit_getLimbN_two",
"depth": 1,
"n_commands": 0,
"n_lines": 8,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n unfold mulModReduceShiftInBit\n rw [EvmWord.getLimbN_or, mulModReduceRemWord_shiftLeft_one_getLimbN_tw... | [
{
"name": "mulModReduceRemWord_shiftLeft_one_getLimbN_two",
"text": "theorem mulModReduceRemWord_shiftLeft_one_getLimbN_two (r0 r1 r2 r3 : Word) :\n EvmWord.getLimbN (mulModReduceRemWord r0 r1 r2 r3 <<< 1) 2 =\n (r2 <<< 1) ||| (r1 >>> 63) := by\n rw [show EvmWord.getLimbN (mulModReduceRemWord r0 r1... | [
{
"name": "mulModReduceShiftInBit_getLimbN_two",
"fan_in": 0,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 12,
"n_chars": 465,
"n_subproofs": 0,
"n_tactics": 8,
"cyclomatic": 2,
"n_automation": 2,
"n_rewrites": 4,
"n_structural": 1,
"automation_only": fa... | 1 | /-
EvmAsm.Evm64.MulMod.ReduceShift
Pure limb bridges for the shift-and-insert half of the bit-serial MULMOD
reducer inner step.
-/
import EvmAsm.Evm64.MulMod.ReduceSemantics
namespace EvmAsm.Evm64
open EvmAsm.Rv64
theorem mulModReduceShiftInBit_getLimbN_two (r0 r1 r2 r3 : Word) (bit : Bool) :
EvmWord.get... | /-
EvmAsm.Evm64.MulMod.ReduceShift
Pure limb bridges for the shift-and-insert half of the bit-serial MULMOD
reducer inner step.
-/
import EvmAsm.Evm64.MulMod.ReduceSemantics
namespace EvmAsm.Evm64
open EvmAsm.Rv64
theorem mulModReduceRemWord_shiftLeft_one_getLimbN_two (r0 r1 r2 r3 : Word) :
EvmWord.getLi... | @@ -11,9 +11,28 @@
open EvmAsm.Rv64
+theorem mulModReduceRemWord_shiftLeft_one_getLimbN_two (r0 r1 r2 r3 : Word) :
+ EvmWord.getLimbN (mulModReduceRemWord r0 r1 r2 r3 <<< 1) 2 =
+ (r2 <<< 1) ||| (r1 >>> 63) := by
+ rw [show EvmWord.getLimbN (mulModReduceRemWord r0 r1 r2 r3 <<< 1) 2 =
+ EvmWord.getLim... | {
"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_eccdfc515c42_4 | 86fd03e56330c9ea | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/MulMod/ReduceShift.lean | ReduceShift | 4 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 6 | 1 | [
{
"theorem_name": "mulModReduceShiftInBit_getLimbN_three",
"depth": 1,
"n_commands": 0,
"n_lines": 8,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n unfold mulModReduceShiftInBit\n rw [EvmWord.getLimbN_or, mulModReduceRemWord_shiftLeft_one_getLimbN_... | [
{
"name": "mulModReduceRemWord_shiftLeft_one_getLimbN_three",
"text": "theorem mulModReduceRemWord_shiftLeft_one_getLimbN_three (r0 r1 r2 r3 : Word) :\n EvmWord.getLimbN (mulModReduceRemWord r0 r1 r2 r3 <<< 1) 3 =\n (r3 <<< 1) ||| (r2 >>> 63) := by\n rw [show EvmWord.getLimbN (mulModReduceRemWord r... | [
{
"name": "mulModReduceShiftInBit_getLimbN_three",
"fan_in": 0,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 12,
"n_chars": 471,
"n_subproofs": 0,
"n_tactics": 8,
"cyclomatic": 2,
"n_automation": 2,
"n_rewrites": 4,
"n_structural": 1,
"automation_only": ... | 1 | /-
EvmAsm.Evm64.MulMod.ReduceShift
Pure limb bridges for the shift-and-insert half of the bit-serial MULMOD
reducer inner step.
-/
import EvmAsm.Evm64.MulMod.ReduceSemantics
namespace EvmAsm.Evm64
open EvmAsm.Rv64
theorem mulModReduceShiftInBit_getLimbN_three (r0 r1 r2 r3 : Word) (bit : Bool) :
EvmWord.g... | /-
EvmAsm.Evm64.MulMod.ReduceShift
Pure limb bridges for the shift-and-insert half of the bit-serial MULMOD
reducer inner step.
-/
import EvmAsm.Evm64.MulMod.ReduceSemantics
namespace EvmAsm.Evm64
open EvmAsm.Rv64
theorem mulModReduceRemWord_shiftLeft_one_getLimbN_three (r0 r1 r2 r3 : Word) :
EvmWord.get... | @@ -11,9 +11,28 @@
open EvmAsm.Rv64
+theorem mulModReduceRemWord_shiftLeft_one_getLimbN_three (r0 r1 r2 r3 : Word) :
+ EvmWord.getLimbN (mulModReduceRemWord r0 r1 r2 r3 <<< 1) 3 =
+ (r3 <<< 1) ||| (r2 >>> 63) := by
+ rw [show EvmWord.getLimbN (mulModReduceRemWord r0 r1 r2 r3 <<< 1) 3 =
+ EvmWord.getL... | {
"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_283f8d8c6911_0 | 1a2a3d1a93858b94 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/EL/Bn254G1AddResultBridge.lean | Bn254G1AddResultBridge | 0 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 1 | 1 | [
{
"theorem_name": "outputBytesList_length",
"depth": 1,
"n_commands": 0,
"n_lines": 2,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n simp [outputBytesList, pointBytesList_length]",
"n_chars": 51,
"n_subproofs": 0,
"n_tactics": 2,
"cy... | [
{
"name": "pointBytesList_length",
"text": "theorem pointBytesList_length (point : PointBytes) :\n (pointBytesList point).length = 64 := by\n simp [pointBytesList]\n\n",
"fan_in": 1,
"n_lines": 5,
"n_chars": 123,
"n_subproofs": 0,
"n_tactics": 2,
"cyclomatic": 1,
"n_automatio... | [
{
"name": "outputBytesList_length",
"fan_in": 0,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 5,
"n_chars": 158,
"n_subproofs": 0,
"n_tactics": 2,
"cyclomatic": 1,
"n_automation": 1,
"n_rewrites": 0,
"n_structural": 0,
"automation_only": true,
"max_n... | 1 | /-
EvmAsm.EL.Bn254G1AddResultBridge
Bridge from the zkVM `zkvm_bn254_g1_add` accelerator output buffer (a single
64-byte `zkvm_bn254_g1_point` written through the `result` pointer) to the
byte-list view consumed by EL precompile return-data assembly. Mirrors the
SHA256/RIPEMD160 result-bridge skeleton; we do... | /-
EvmAsm.EL.Bn254G1AddResultBridge
Bridge from the zkVM `zkvm_bn254_g1_add` accelerator output buffer (a single
64-byte `zkvm_bn254_g1_point` written through the `result` pointer) to the
byte-list view consumed by EL precompile return-data assembly. Mirrors the
SHA256/RIPEMD160 result-bridge skeleton; we do... | @@ -30,8 +30,13 @@
def outputBytesList (output : AcceleratorOutput) : List Byte :=
pointBytesList output.result
+theorem pointBytesList_length (point : PointBytes) :
+ (pointBytesList point).length = 64 := by
+ simp [pointBytesList]
+
theorem outputBytesList_length (output : AcceleratorOutput) :
- (output... | {
"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_eddabbd48e16_0 | ed7b7052ef415207 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/Exp/Compose/SavedBitIterPosts.lean | SavedBitIterPosts | 0 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 7 | 1 | [
{
"theorem_name": "exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_loop_exit_spec_within",
"depth": 1,
"n_commands": 0,
"n_lines": 17,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n exact cpsBranchWithin_weaken\n (fun _ hp => hp)\n ... | [
{
"name": "exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_posts_spec_within",
"text": "theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_posts_spec_within\n (e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3\n e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : Word)\n (s... | [
{
"name": "exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_loop_exit_spec_within",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 64,
"n_chars": 3165,
"n_subproofs": 0,
"n_tactics": 17,
"cyclomatic": 1,
"n_automation": 1,
"n_rewrites": ... | 1 | import EvmAsm.Evm64.Exp.Compose.SavedBitIterPostDefs
namespace EvmAsm.Evm64.Exp.Compose
open EvmAsm.Rv64
theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_loop_exit_spec_within
(e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3
e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : Word)
(squarin... | import EvmAsm.Evm64.Exp.Compose.SavedBitIterPostDefs
namespace EvmAsm.Evm64.Exp.Compose
open EvmAsm.Rv64
theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_posts_spec_within
(e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3
e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : Word)
(squaringMul... | @@ -4,6 +4,93 @@
open EvmAsm.Rv64
+theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_posts_spec_within
+ (e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3
+ e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : Word)
+ (squaringMulOff condMulOff : BitVec 21) (skipOff backOff : BitVec 13)
+ (b... | {
"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_eddabbd48e16_1 | 4d4a4a987bc4b0fc | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/Exp/Compose/SavedBitIterPosts.lean | SavedBitIterPosts | 1 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 7 | 1 | [
{
"theorem_name": "exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_loop_exit_spec_within",
"depth": 1,
"n_commands": 0,
"n_lines": 17,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n exact cpsBranchWithin_weaken\n (fun _ hp => hp)\n ... | [
{
"name": "exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_posts_spec_within",
"text": "theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_posts_spec_within\n (e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3\n e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : Word)\n (s... | [
{
"name": "exp_msb_saved_bit_two_mul_full_iter_named_pre_loop_exit_spec_within",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 2,
"n_lines": 44,
"n_chars": 2027,
"n_subproofs": 0,
"n_tactics": 12,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 1,
"n_structu... | 2 | import EvmAsm.Evm64.Exp.Compose.SavedBitIterPostDefs
namespace EvmAsm.Evm64.Exp.Compose
open EvmAsm.Rv64
theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_loop_exit_spec_within
(e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3
e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : Word)
(squarin... | import EvmAsm.Evm64.Exp.Compose.SavedBitIterPostDefs
namespace EvmAsm.Evm64.Exp.Compose
open EvmAsm.Rv64
theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_posts_spec_within
(e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3
e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : Word)
(squaringMul... | @@ -4,6 +4,93 @@
open EvmAsm.Rv64
+theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_posts_spec_within
+ (e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3
+ e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : Word)
+ (squaringMulOff condMulOff : BitVec 21) (skipOff backOff : BitVec 13)
+ (b... | {
"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_eddabbd48e16_2 | ebcba2234334592e | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/Exp/Compose/SavedBitIterPosts.lean | SavedBitIterPosts | 2 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 7 | 1 | [
{
"theorem_name": "exp_msb_saved_bit_two_mul_full_iter_named_pre_loop_exit_spec_within",
"depth": 1,
"n_commands": 0,
"n_lines": 12,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n exact cpsBranchWithin_weaken\n (fun _ hp => by\n rw [expTwoMul... | [
{
"name": "exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_loop_exit_spec_within",
"text": "theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_loop_exit_spec_within\n (e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3\n e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : Word)... | [
{
"name": "exp_msb_saved_bit_two_mul_full_iter_named_pre_loopback_spec_within",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 3,
"n_lines": 39,
"n_chars": 1855,
"n_subproofs": 0,
"n_tactics": 7,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structura... | 3 | import EvmAsm.Evm64.Exp.Compose.SavedBitIterPostDefs
namespace EvmAsm.Evm64.Exp.Compose
open EvmAsm.Rv64
theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_posts_spec_within
(e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3
e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : Word)
(squaringMul... | import EvmAsm.Evm64.Exp.Compose.SavedBitIterPostDefs
namespace EvmAsm.Evm64.Exp.Compose
open EvmAsm.Rv64
theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_posts_spec_within
(e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3
e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : Word)
(squaringMul... | @@ -91,6 +91,69 @@
squaringMulOff condMulOff skipOff backOff base loopTarget
hbase hsqmt hcondmt hd hskip hback)
+theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_loop_exit_spec_within
+ (e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3
+ e0 e1 e2 e3 a0 a1 a2 a3 mulTar... | {
"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_eddabbd48e16_3 | 2fa48b43eb09fd80 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/Exp/Compose/SavedBitIterPosts.lean | SavedBitIterPosts | 3 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 7 | 1 | [
{
"theorem_name": "exp_msb_saved_bit_two_mul_full_iter_named_pre_loop_exit_spec_within",
"depth": 1,
"n_commands": 0,
"n_lines": 12,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n exact cpsBranchWithin_weaken\n (fun _ hp => by\n rw [expTwoMul... | [
{
"name": "exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_loop_exit_spec_within",
"text": "theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_loop_exit_spec_within\n (e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3\n e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : Word)... | [
{
"name": "exp_msb_saved_bit_two_mul_full_iter_named_pre_canonical_branches_spec_within",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 4,
"n_lines": 51,
"n_chars": 2334,
"n_subproofs": 2,
"n_tactics": 17,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"... | 4 | import EvmAsm.Evm64.Exp.Compose.SavedBitIterPostDefs
namespace EvmAsm.Evm64.Exp.Compose
open EvmAsm.Rv64
theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_posts_spec_within
(e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3
e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : Word)
(squaringMul... | import EvmAsm.Evm64.Exp.Compose.SavedBitIterPostDefs
namespace EvmAsm.Evm64.Exp.Compose
open EvmAsm.Rv64
theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_posts_spec_within
(e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3
e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : Word)
(squaringMul... | @@ -91,6 +91,69 @@
squaringMulOff condMulOff skipOff backOff base loopTarget
hbase hsqmt hcondmt hd hskip hback)
+theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_loop_exit_spec_within
+ (e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3
+ e0 e1 e2 e3 a0 a1 a2 a3 mulTar... | {
"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_eddabbd48e16_4 | 9314a856219584e8 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/Exp/Compose/SavedBitIterPosts.lean | SavedBitIterPosts | 4 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 7 | 1 | [
{
"theorem_name": "exp_msb_saved_bit_two_mul_full_iter_named_pre_loop_exit_spec_within",
"depth": 1,
"n_commands": 0,
"n_lines": 12,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n exact cpsBranchWithin_weaken\n (fun _ hp => by\n rw [expTwoMul... | [
{
"name": "exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_loop_exit_spec_within",
"text": "theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_loop_exit_spec_within\n (e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3\n e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : Word)... | [
{
"name": "exp_msb_saved_bit_two_mul_full_iter_named_pre_canonical_code_spec_within",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 5,
"n_lines": 41,
"n_chars": 1963,
"n_subproofs": 0,
"n_tactics": 6,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_str... | 5 | import EvmAsm.Evm64.Exp.Compose.SavedBitIterPostDefs
namespace EvmAsm.Evm64.Exp.Compose
open EvmAsm.Rv64
theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_posts_spec_within
(e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3
e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : Word)
(squaringMul... | import EvmAsm.Evm64.Exp.Compose.SavedBitIterPostDefs
namespace EvmAsm.Evm64.Exp.Compose
open EvmAsm.Rv64
theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_posts_spec_within
(e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3
e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : Word)
(squaringMul... | @@ -91,6 +91,69 @@
squaringMulOff condMulOff skipOff backOff base loopTarget
hbase hsqmt hcondmt hd hskip hback)
+theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_loop_exit_spec_within
+ (e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3
+ e0 e1 e2 e3 a0 a1 a2 a3 mulTar... | {
"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_eddabbd48e16_5 | 5594555243a4a135 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/Exp/Compose/SavedBitIterPosts.lean | SavedBitIterPosts | 5 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 7 | 1 | [
{
"theorem_name": "exp_msb_saved_bit_two_mul_full_iter_named_pre_loopback_spec_within",
"depth": 1,
"n_commands": 0,
"n_lines": 7,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n exact\n exp_msb_saved_bit_two_mul_full_iter_named_pre_loop_exit_spec_... | [
{
"name": "exp_msb_saved_bit_two_mul_full_iter_named_pre_loop_exit_spec_within",
"text": "theorem exp_msb_saved_bit_two_mul_full_iter_named_pre_loop_exit_spec_within\n (e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3\n e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : Word)\n (squaringMulOff condMulOff :... | [
{
"name": "exp_msb_saved_bit_two_mul_full_iter_named_pre_canonical_with_mul_spec_within",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 6,
"n_lines": 39,
"n_chars": 1799,
"n_subproofs": 0,
"n_tactics": 6,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n... | 6 | import EvmAsm.Evm64.Exp.Compose.SavedBitIterPostDefs
namespace EvmAsm.Evm64.Exp.Compose
open EvmAsm.Rv64
theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_posts_spec_within
(e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3
e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : Word)
(squaringMul... | import EvmAsm.Evm64.Exp.Compose.SavedBitIterPostDefs
namespace EvmAsm.Evm64.Exp.Compose
open EvmAsm.Rv64
theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_posts_spec_within
(e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3
e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : Word)
(squaringMul... | @@ -154,6 +154,49 @@
squaringMulOff condMulOff skipOff backOff base loopTarget
hbase hsqmt hcondmt hd hskip hback))
+theorem exp_msb_saved_bit_two_mul_full_iter_named_pre_loop_exit_spec_within
+ (e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3
+ e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : ... | {
"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_eddabbd48e16_6 | 076edaac959f0551 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/Exp/Compose/SavedBitIterPosts.lean | SavedBitIterPosts | 6 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 7 | 1 | [
{
"theorem_name": "exp_msb_saved_bit_two_mul_full_iter_named_pre_loopback_spec_within",
"depth": 1,
"n_commands": 0,
"n_lines": 7,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n exact\n exp_msb_saved_bit_two_mul_full_iter_named_pre_loop_exit_spec_... | [
{
"name": "exp_msb_saved_bit_two_mul_full_iter_named_pre_loop_exit_spec_within",
"text": "theorem exp_msb_saved_bit_two_mul_full_iter_named_pre_loop_exit_spec_within\n (e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3\n e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : Word)\n (squaringMulOff condMulOff :... | [
{
"name": "exp_msb_saved_bit_two_mul_full_iter_named_pre_canonical_appended_mul_spec_within",
"fan_in": 0,
"n_deps_direct": 1,
"n_deps_transitive": 7,
"n_lines": 35,
"n_chars": 1627,
"n_subproofs": 0,
"n_tactics": 11,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
... | 7 | import EvmAsm.Evm64.Exp.Compose.SavedBitIterPostDefs
namespace EvmAsm.Evm64.Exp.Compose
open EvmAsm.Rv64
theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_posts_spec_within
(e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3
e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : Word)
(squaringMul... | import EvmAsm.Evm64.Exp.Compose.SavedBitIterPostDefs
namespace EvmAsm.Evm64.Exp.Compose
open EvmAsm.Rv64
theorem exp_msb_saved_bit_two_mul_full_iter_owned_scratch_branch_named_posts_spec_within
(e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3
e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : Word)
(squaringMul... | @@ -154,6 +154,49 @@
squaringMulOff condMulOff skipOff backOff base loopTarget
hbase hsqmt hcondmt hd hskip hback))
+theorem exp_msb_saved_bit_two_mul_full_iter_named_pre_loop_exit_spec_within
+ (e iterCount v18 sp evmSp vOld r0 r1 r2 r3 d0 d1 d2 d3
+ e0 e1 e2 e3 a0 a1 a2 a3 mulTarget : ... | {
"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_9d2ffda9cf91_0 | 0b3839b217cde981 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3DivStackSpec.lean | N3DivStackSpec | 0 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 4 | 1 | [
{
"theorem_name": "fullDivN3UnifiedPostNoX1_frame_to_divStackDispatchPostCallableExact",
"depth": 1,
"n_commands": 0,
"n_lines": 7,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n intro h hp\n exact divConcretePostNoX1ExactRegs_weaken_callable_frame ... | [
{
"name": "fullDivN3UnifiedPostNoX1_frame_to_divConcretePostNoX1ExactRegsFrame",
"text": "/-- Convert the split n=3 full-path post plus exact caller `x1` to the\n exact-register concrete callable post surface. -/\ntheorem fullDivN3UnifiedPostNoX1_frame_to_divConcretePostNoX1ExactRegsFrame\n (bltu_1 bl... | [
{
"name": "fullDivN3UnifiedPostNoX1_frame_to_divStackDispatchPostCallableExact",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 29,
"n_chars": 1404,
"n_subproofs": 0,
"n_tactics": 7,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structur... | 1 | /-
EvmAsm.Evm64.DivMod.Spec.N3DivStackSpec
EvmWord-level n=3 DIV stack-spec wrapper. The per-limb form
`evm_div_n3_stack_spec_within` already exists in
`Spec/Dispatcher.lean`; this file adds the `_word` variant that takes a
single `EvmWord`-valued equality `fullDivN3QuotientWord ... = EvmWord.div a b`
and ... | /-
EvmAsm.Evm64.DivMod.Spec.N3DivStackSpec
EvmWord-level n=3 DIV stack-spec wrapper. The per-limb form
`evm_div_n3_stack_spec_within` already exists in
`Spec/Dispatcher.lean`; this file adds the `_word` variant that takes a
single `EvmWord`-valued equality `fullDivN3QuotientWord ... = EvmWord.div a b`
and ... | @@ -32,6 +32,118 @@
open EvmAsm.Rv64
open EvmAsm.Rv64.AddrNorm (word_add_zero)
+/-- Convert the split n=3 full-path post plus exact caller `x1` to the
+ exact-register concrete callable post surface. -/
+theorem fullDivN3UnifiedPostNoX1_frame_to_divConcretePostNoX1ExactRegsFrame
+ (bltu_1 bltu_0 : Bool)
+ ... | {
"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_9d2ffda9cf91_1 | 0ffb973d76409fd7 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3DivStackSpec.lean | N3DivStackSpec | 1 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 4 | 1 | [
{
"theorem_name": "fullDivN3UnifiedPostNoX1_frame_to_divStackDispatchPostCallableExact",
"depth": 1,
"n_commands": 0,
"n_lines": 7,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n intro h hp\n exact divConcretePostNoX1ExactRegs_weaken_callable_frame ... | [
{
"name": "fullDivN3UnifiedPostNoX1_frame_to_divConcretePostNoX1ExactRegsFrame",
"text": "/-- Convert the split n=3 full-path post plus exact caller `x1` to the\n exact-register concrete callable post surface. -/\ntheorem fullDivN3UnifiedPostNoX1_frame_to_divConcretePostNoX1ExactRegsFrame\n (bltu_1 bl... | [
{
"name": "fullDivN3UnifiedPostNoX1_frame_to_divStackDispatchPostCallableExactFrame",
"fan_in": 0,
"n_deps_direct": 1,
"n_deps_transitive": 2,
"n_lines": 29,
"n_chars": 1318,
"n_subproofs": 0,
"n_tactics": 7,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 1,
"n_str... | 2 | /-
EvmAsm.Evm64.DivMod.Spec.N3DivStackSpec
EvmWord-level n=3 DIV stack-spec wrapper. The per-limb form
`evm_div_n3_stack_spec_within` already exists in
`Spec/Dispatcher.lean`; this file adds the `_word` variant that takes a
single `EvmWord`-valued equality `fullDivN3QuotientWord ... = EvmWord.div a b`
and ... | /-
EvmAsm.Evm64.DivMod.Spec.N3DivStackSpec
EvmWord-level n=3 DIV stack-spec wrapper. The per-limb form
`evm_div_n3_stack_spec_within` already exists in
`Spec/Dispatcher.lean`; this file adds the `_word` variant that takes a
single `EvmWord`-valued equality `fullDivN3QuotientWord ... = EvmWord.div a b`
and ... | @@ -32,6 +32,118 @@
open EvmAsm.Rv64
open EvmAsm.Rv64.AddrNorm (word_add_zero)
+/-- Convert the split n=3 full-path post plus exact caller `x1` to the
+ exact-register concrete callable post surface. -/
+theorem fullDivN3UnifiedPostNoX1_frame_to_divConcretePostNoX1ExactRegsFrame
+ (bltu_1 bltu_0 : Bool)
+ ... | {
"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_9d2ffda9cf91_2 | a42035f7fe9e421e | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3DivStackSpec.lean | N3DivStackSpec | 2 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 4 | 1 | [
{
"theorem_name": "evm_div_n3_stack_spec_within_word_noNop_callableOwnPost",
"depth": 1,
"n_commands": 0,
"n_lines": 13,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n exact cpsTripleWithin_weaken\n (fun _ hp => hp)\n (fun h hp =>\n divSta... | [
{
"name": "evm_div_n3_stack_spec_within_word_exact_x1_noNop",
"text": "/-- No-NOP exact-x1 variant of `evm_div_n3_stack_spec_within_word`. -/\ntheorem evm_div_n3_stack_spec_within_word_exact_x1_noNop\n (bltu_1 bltu_0 : Bool) (sp base : Word)\n (a b : EvmWord)\n (a0 a1 a2 a3 b0 b1 b2 b3 v5 v6 v7 v10... | [
{
"name": "evm_div_n3_stack_spec_within_word_noNop_callableOwnPost",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 51,
"n_chars": 2723,
"n_subproofs": 0,
"n_tactics": 13,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 1,
... | 1 | /-
EvmAsm.Evm64.DivMod.Spec.N3DivStackSpec
EvmWord-level n=3 DIV stack-spec wrapper. The per-limb form
`evm_div_n3_stack_spec_within` already exists in
`Spec/Dispatcher.lean`; this file adds the `_word` variant that takes a
single `EvmWord`-valued equality `fullDivN3QuotientWord ... = EvmWord.div a b`
and ... | /-
EvmAsm.Evm64.DivMod.Spec.N3DivStackSpec
EvmWord-level n=3 DIV stack-spec wrapper. The per-limb form
`evm_div_n3_stack_spec_within` already exists in
`Spec/Dispatcher.lean`; this file adds the `_word` variant that takes a
single `EvmWord`-valued equality `fullDivN3QuotientWord ... = EvmWord.div a b`
and ... | @@ -32,6 +32,62 @@
open EvmAsm.Rv64
open EvmAsm.Rv64.AddrNorm (word_add_zero)
+/-- No-NOP exact-x1 variant of `evm_div_n3_stack_spec_within_word`. -/
+theorem evm_div_n3_stack_spec_within_word_exact_x1_noNop
+ (bltu_1 bltu_0 : Bool) (sp base : Word)
+ (a b : EvmWord)
+ (a0 a1 a2 a3 b0 b1 b2 b3 v5 v6 v7 v10... | {
"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_9d2ffda9cf91_3 | 7b8322abb95c1ed9 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3DivStackSpec.lean | N3DivStackSpec | 3 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 4 | 1 | [
{
"theorem_name": "evm_div_n3_stack_spec_within_word_noNop_callableOwnPost",
"depth": 1,
"n_commands": 0,
"n_lines": 13,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n exact cpsTripleWithin_weaken\n (fun _ hp => hp)\n (fun h hp =>\n divSta... | [
{
"name": "evm_div_n3_stack_spec_within_word_exact_x1_noNop",
"text": "/-- No-NOP exact-x1 variant of `evm_div_n3_stack_spec_within_word`. -/\ntheorem evm_div_n3_stack_spec_within_word_exact_x1_noNop\n (bltu_1 bltu_0 : Bool) (sp base : Word)\n (a b : EvmWord)\n (a0 a1 a2 a3 b0 b1 b2 b3 v5 v6 v7 v10... | [
{
"name": "evm_div_n3_stack_spec_within_word_noNop_preNoX1_callableOwnPost",
"fan_in": 0,
"n_deps_direct": 1,
"n_deps_transitive": 2,
"n_lines": 70,
"n_chars": 3789,
"n_subproofs": 1,
"n_tactics": 31,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 2,
"n_structural"... | 2 | /-
EvmAsm.Evm64.DivMod.Spec.N3DivStackSpec
EvmWord-level n=3 DIV stack-spec wrapper. The per-limb form
`evm_div_n3_stack_spec_within` already exists in
`Spec/Dispatcher.lean`; this file adds the `_word` variant that takes a
single `EvmWord`-valued equality `fullDivN3QuotientWord ... = EvmWord.div a b`
and ... | /-
EvmAsm.Evm64.DivMod.Spec.N3DivStackSpec
EvmWord-level n=3 DIV stack-spec wrapper. The per-limb form
`evm_div_n3_stack_spec_within` already exists in
`Spec/Dispatcher.lean`; this file adds the `_word` variant that takes a
single `EvmWord`-valued equality `fullDivN3QuotientWord ... = EvmWord.div a b`
and ... | @@ -32,6 +32,62 @@
open EvmAsm.Rv64
open EvmAsm.Rv64.AddrNorm (word_add_zero)
+/-- No-NOP exact-x1 variant of `evm_div_n3_stack_spec_within_word`. -/
+theorem evm_div_n3_stack_spec_within_word_exact_x1_noNop
+ (bltu_1 bltu_0 : Bool) (sp base : Word)
+ (a b : EvmWord)
+ (a0 a1 a2 a3 b0 b1 b2 b3 v5 v6 v7 v10... | {
"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_dac67f0c188a_0 | b17777a88da645dd | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3TrialWitnesses.lean | N3TrialWitnesses | 0 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 17 | 1 | [
{
"theorem_name": "n3TrialWitnesses_of_getLimbN_shape_shift_nz",
"depth": 1,
"n_commands": 0,
"n_lines": 6,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n obtain ⟨bltu_1, bltu_0, hbltu_1, hbltu_0⟩ :=\n n3_trial_witnesses\n (a.getLimbN 0) (a.g... | [
{
"name": "n3_trial_witnesses",
"text": "/-- The two n=3 trial-branch booleans always have canonical witnesses.\n\n This packages the mechanical branch-enumeration part needed by\n unconditional n=3 stack wrappers. The remaining non-mechanical\n obligations are the carry/addback and semantic divisi... | [
{
"name": "n3TrialWitnesses_of_getLimbN_shape_shift_nz",
"fan_in": 0,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 16,
"n_chars": 668,
"n_subproofs": 1,
"n_tactics": 6,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 2,
"automation_o... | 1 | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | @@ -31,6 +31,33 @@
(a.getLimbN 0) (a.getLimbN 1) (a.getLimbN 2) (a.getLimbN 3)
(b.getLimbN 0) (b.getLimbN 1) (b.getLimbN 2) (b.getLimbN 3))
+/-- The two n=3 trial-branch booleans always have canonical witnesses.
+
+ This packages the mechanical branch-enumeration part needed by
+ unconditional... | {
"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_dac67f0c188a_1 | b7fec4068f30ba75 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3TrialWitnesses.lean | N3TrialWitnesses | 1 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 17 | 1 | [
{
"theorem_name": "n3V4TrialWitnesses_of_getLimbN",
"depth": 1,
"n_commands": 0,
"n_lines": 6,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n obtain ⟨bltu_1, bltu_0, hbltu_1, hbltu_0⟩ :=\n n3_v4_trial_witnesses\n (a.getLimbN 0) (a.getLimbN 1)... | [
{
"name": "n3_v4_trial_witnesses",
"text": "/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/\ntheorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :\n ∃ bltu_1 bltu_0,\n isTrialN3V4_j1 bltu_1 a0 a1 a2 a3 b0 b1 b2 b3 ∧\n isTrialN3V4_j0 bltu_1 bltu_0 a0 a1 a2... | [
{
"name": "n3V4TrialWitnesses_of_getLimbN",
"fan_in": 6,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 11,
"n_chars": 419,
"n_subproofs": 1,
"n_tactics": 6,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 2,
"automation_only": false,
... | 1 | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | @@ -46,10 +46,60 @@
(a.getLimbN 0) (a.getLimbN 1) (a.getLimbN 2) (a.getLimbN 3)
(b.getLimbN 0) (b.getLimbN 1) (b.getLimbN 2) (b.getLimbN 3))
+/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/
+theorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :
+ ∃ bltu_1 b... | {
"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_dac67f0c188a_2 | 3189ea78306c1c29 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3TrialWitnesses.lean | N3TrialWitnesses | 2 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 17 | 3 | [
{
"theorem_name": "N3V4TrialWitnesses.exists_quotient_word_of_path_conditions",
"depth": 1,
"n_commands": 0,
"n_lines": 8,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n obtain ⟨bltu_1, bltu_0, hpath⟩ :=\n N3V4TrialWitnesses.exists_path_conditions... | [
{
"name": "N3V4TrialWitnesses.exists_path_conditions",
"text": "/-- Legacy: assemble an existential bundled N3 V4 path predicate from the mechanical\n trial witness bundle plus the remaining carry/arithmetic obligations.\n\n The arithmetic continuation receives the concrete branch booleans and\n th... | [
{
"name": "N3V4TrialWitnesses.exists_quotient_word_of_path_conditions",
"fan_in": 2,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 45,
"n_chars": 2278,
"n_subproofs": 1,
"n_tactics": 8,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 2,
... | 1 | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | @@ -46,6 +46,37 @@
(a.getLimbN 0) (a.getLimbN 1) (a.getLimbN 2) (a.getLimbN 3)
(b.getLimbN 0) (b.getLimbN 1) (b.getLimbN 2) (b.getLimbN 3))
+/-- Legacy: assemble an existential bundled N3 V4 path predicate from the mechanical
+ trial witness bundle plus the remaining carry/arithmetic obligations.... | {
"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_dac67f0c188a_3 | 7339277049cf789f | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3TrialWitnesses.lean | N3TrialWitnesses | 3 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 17 | 1 | [
{
"theorem_name": "N3V4TrialWitnesses.exists_quotient_word_of_selected_path_conditions",
"depth": 1,
"n_commands": 0,
"n_lines": 8,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n obtain ⟨bltu_1, bltu_0, hpath⟩ :=\n N3V4TrialWitnesses.exists_select... | [
{
"name": "N3V4TrialWitnesses.exists_selected_path_conditions",
"text": "/-- Assemble an existential selected-carry N3 V4 path predicate from the\n mechanical trial witness bundle plus selected carry/arithmetic obligations.\n\n Unlike `N3V4TrialWitnesses.exists_path_conditions`, this does not require\... | [
{
"name": "N3V4TrialWitnesses.exists_quotient_word_of_selected_path_conditions",
"fan_in": 3,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 51,
"n_chars": 2706,
"n_subproofs": 1,
"n_tactics": 8,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structur... | 1 | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | @@ -46,6 +46,44 @@
(a.getLimbN 0) (a.getLimbN 1) (a.getLimbN 2) (a.getLimbN 3)
(b.getLimbN 0) (b.getLimbN 1) (b.getLimbN 2) (b.getLimbN 3))
+/-- Assemble an existential selected-carry N3 V4 path predicate from the
+ mechanical trial witness bundle plus selected carry/arithmetic obligations.
+
+ ... | {
"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_dac67f0c188a_4 | d7ec4a49b32012cb | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3TrialWitnesses.lean | N3TrialWitnesses | 4 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 17 | 3 | [
{
"theorem_name": "N3V4TrialWitnesses.exists_quotient_word_of_path_conditions",
"depth": 1,
"n_commands": 0,
"n_lines": 8,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n obtain ⟨bltu_1, bltu_0, hpath⟩ :=\n N3V4TrialWitnesses.exists_path_conditions... | [
{
"name": "N3V4TrialWitnesses.exists_path_conditions",
"text": "/-- Legacy: assemble an existential bundled N3 V4 path predicate from the mechanical\n trial witness bundle plus the remaining carry/arithmetic obligations.\n\n The arithmetic continuation receives the concrete branch booleans and\n th... | [
{
"name": "N3V4TrialWitnesses.exists_hdivs_of_path_conditions",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 2,
"n_lines": 51,
"n_chars": 2525,
"n_subproofs": 1,
"n_tactics": 11,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 2,
"aut... | 2 | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | @@ -46,6 +46,37 @@
(a.getLimbN 0) (a.getLimbN 1) (a.getLimbN 2) (a.getLimbN 3)
(b.getLimbN 0) (b.getLimbN 1) (b.getLimbN 2) (b.getLimbN 3))
+/-- Legacy: assemble an existential bundled N3 V4 path predicate from the mechanical
+ trial witness bundle plus the remaining carry/arithmetic obligations.... | {
"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_dac67f0c188a_5 | 8ba18f301cc371ed | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3TrialWitnesses.lean | N3TrialWitnesses | 5 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 17 | 1 | [
{
"theorem_name": "N3V4TrialWitnesses.exists_quotient_word_of_selected_path_conditions",
"depth": 1,
"n_commands": 0,
"n_lines": 8,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n obtain ⟨bltu_1, bltu_0, hpath⟩ :=\n N3V4TrialWitnesses.exists_select... | [
{
"name": "N3V4TrialWitnesses.exists_selected_path_conditions",
"text": "/-- Assemble an existential selected-carry N3 V4 path predicate from the\n mechanical trial witness bundle plus selected carry/arithmetic obligations.\n\n Unlike `N3V4TrialWitnesses.exists_path_conditions`, this does not require\... | [
{
"name": "N3V4TrialWitnesses.exists_hdivs_of_selected_path_conditions",
"fan_in": 2,
"n_deps_direct": 1,
"n_deps_transitive": 2,
"n_lines": 60,
"n_chars": 3053,
"n_subproofs": 1,
"n_tactics": 11,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 2,... | 2 | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | @@ -46,6 +46,44 @@
(a.getLimbN 0) (a.getLimbN 1) (a.getLimbN 2) (a.getLimbN 3)
(b.getLimbN 0) (b.getLimbN 1) (b.getLimbN 2) (b.getLimbN 3))
+/-- Assemble an existential selected-carry N3 V4 path predicate from the
+ mechanical trial witness bundle plus selected carry/arithmetic obligations.
+
+ ... | {
"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_dac67f0c188a_6 | 81dfe3bba130fe19 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3TrialWitnesses.lean | N3TrialWitnesses | 6 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 17 | 1 | [
{
"theorem_name": "N3V4TrialWitnesses.exists_quotient_word_of_selected_path_conditions",
"depth": 1,
"n_commands": 0,
"n_lines": 8,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n obtain ⟨bltu_1, bltu_0, hpath⟩ :=\n N3V4TrialWitnesses.exists_select... | [
{
"name": "N3V4TrialWitnesses.exists_selected_path_conditions",
"text": "/-- Assemble an existential selected-carry N3 V4 path predicate from the\n mechanical trial witness bundle plus selected carry/arithmetic obligations.\n\n Unlike `N3V4TrialWitnesses.exists_path_conditions`, this does not require\... | [
{
"name": "N3V4TrialWitnesses.exists_quotient_word_of_selected_path_conditions_ne_zero",
"fan_in": 0,
"n_deps_direct": 1,
"n_deps_transitive": 2,
"n_lines": 44,
"n_chars": 2329,
"n_subproofs": 0,
"n_tactics": 3,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_... | 2 | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | @@ -46,6 +46,44 @@
(a.getLimbN 0) (a.getLimbN 1) (a.getLimbN 2) (a.getLimbN 3)
(b.getLimbN 0) (b.getLimbN 1) (b.getLimbN 2) (b.getLimbN 3))
+/-- Assemble an existential selected-carry N3 V4 path predicate from the
+ mechanical trial witness bundle plus selected carry/arithmetic obligations.
+
+ ... | {
"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_dac67f0c188a_7 | 3524bb2bf625bc16 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3TrialWitnesses.lean | N3TrialWitnesses | 7 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 17 | 1 | [
{
"theorem_name": "N3V4TrialWitnesses.exists_quotient_word_of_selected_path_conditions",
"depth": 1,
"n_commands": 0,
"n_lines": 8,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n obtain ⟨bltu_1, bltu_0, hpath⟩ :=\n N3V4TrialWitnesses.exists_select... | [
{
"name": "N3V4TrialWitnesses.exists_selected_path_conditions",
"text": "/-- Assemble an existential selected-carry N3 V4 path predicate from the\n mechanical trial witness bundle plus selected carry/arithmetic obligations.\n\n Unlike `N3V4TrialWitnesses.exists_path_conditions`, this does not require\... | [
{
"name": "N3V4TrialWitnesses.exists_hdivs_of_selected_path_conditions_ne_zero",
"fan_in": 0,
"n_deps_direct": 1,
"n_deps_transitive": 3,
"n_lines": 50,
"n_chars": 2640,
"n_subproofs": 0,
"n_tactics": 3,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structur... | 3 | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | @@ -46,6 +46,44 @@
(a.getLimbN 0) (a.getLimbN 1) (a.getLimbN 2) (a.getLimbN 3)
(b.getLimbN 0) (b.getLimbN 1) (b.getLimbN 2) (b.getLimbN 3))
+/-- Assemble an existential selected-carry N3 V4 path predicate from the
+ mechanical trial witness bundle plus selected carry/arithmetic obligations.
+
+ ... | {
"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_dac67f0c188a_8 | 5bf8fcc5ea62c838 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3TrialWitnesses.lean | N3TrialWitnesses | 8 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 17 | 3 | [
{
"theorem_name": "N3V4TrialWitnesses.exists_quotient_word_of_path_conditions",
"depth": 1,
"n_commands": 0,
"n_lines": 8,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n obtain ⟨bltu_1, bltu_0, hpath⟩ :=\n N3V4TrialWitnesses.exists_path_conditions... | [
{
"name": "N3V4TrialWitnesses.exists_path_conditions",
"text": "/-- Legacy: assemble an existential bundled N3 V4 path predicate from the mechanical\n trial witness bundle plus the remaining carry/arithmetic obligations.\n\n The arithmetic continuation receives the concrete branch booleans and\n th... | [
{
"name": "N3V4TrialWitnesses.exists_quotient_word_of_path_conditions_ne_zero",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 43,
"n_chars": 2175,
"n_subproofs": 1,
"n_tactics": 8,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structura... | 1 | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | @@ -46,6 +46,37 @@
(a.getLimbN 0) (a.getLimbN 1) (a.getLimbN 2) (a.getLimbN 3)
(b.getLimbN 0) (b.getLimbN 1) (b.getLimbN 2) (b.getLimbN 3))
+/-- Legacy: assemble an existential bundled N3 V4 path predicate from the mechanical
+ trial witness bundle plus the remaining carry/arithmetic obligations.... | {
"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_dac67f0c188a_9 | 2e37ec4ed4b8074c | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3TrialWitnesses.lean | N3TrialWitnesses | 9 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 17 | 3 | [
{
"theorem_name": "N3V4TrialWitnesses.exists_quotient_word_of_path_conditions",
"depth": 1,
"n_commands": 0,
"n_lines": 8,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n obtain ⟨bltu_1, bltu_0, hpath⟩ :=\n N3V4TrialWitnesses.exists_path_conditions... | [
{
"name": "N3V4TrialWitnesses.exists_path_conditions",
"text": "/-- Legacy: assemble an existential bundled N3 V4 path predicate from the mechanical\n trial witness bundle plus the remaining carry/arithmetic obligations.\n\n The arithmetic continuation receives the concrete branch booleans and\n th... | [
{
"name": "N3V4TrialWitnesses.exists_hdivs_of_path_conditions_ne_zero",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 2,
"n_lines": 52,
"n_chars": 2551,
"n_subproofs": 1,
"n_tactics": 10,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 2,
... | 2 | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | @@ -46,6 +46,37 @@
(a.getLimbN 0) (a.getLimbN 1) (a.getLimbN 2) (a.getLimbN 3)
(b.getLimbN 0) (b.getLimbN 1) (b.getLimbN 2) (b.getLimbN 3))
+/-- Legacy: assemble an existential bundled N3 V4 path predicate from the mechanical
+ trial witness bundle plus the remaining carry/arithmetic obligations.... | {
"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_dac67f0c188a_10 | 3e02016923a7e89e | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3TrialWitnesses.lean | N3TrialWitnesses | 10 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 17 | 1 | [
{
"theorem_name": "n3V4TrialWitnesses_of_getLimbN",
"depth": 1,
"n_commands": 0,
"n_lines": 6,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n obtain ⟨bltu_1, bltu_0, hbltu_1, hbltu_0⟩ :=\n n3_v4_trial_witnesses\n (a.getLimbN 0) (a.getLimbN 1)... | [
{
"name": "n3_v4_trial_witnesses",
"text": "/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/\ntheorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :\n ∃ bltu_1 bltu_0,\n isTrialN3V4_j1 bltu_1 a0 a1 a2 a3 b0 b1 b2 b3 ∧\n isTrialN3V4_j0 bltu_1 bltu_0 a0 a1 a2... | [
{
"name": "n3V4_exists_quotient_word_of_path_conditions",
"fan_in": 1,
"n_deps_direct": 2,
"n_deps_transitive": 4,
"n_lines": 41,
"n_chars": 2084,
"n_subproofs": 0,
"n_tactics": 2,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 0,
"automation... | 4 | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | @@ -46,10 +46,60 @@
(a.getLimbN 0) (a.getLimbN 1) (a.getLimbN 2) (a.getLimbN 3)
(b.getLimbN 0) (b.getLimbN 1) (b.getLimbN 2) (b.getLimbN 3))
+/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/
+theorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :
+ ∃ bltu_1 b... | {
"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_dac67f0c188a_11 | 48583e4c1d2801b7 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3TrialWitnesses.lean | N3TrialWitnesses | 11 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 17 | 1 | [
{
"theorem_name": "n3V4TrialWitnesses_of_getLimbN",
"depth": 1,
"n_commands": 0,
"n_lines": 6,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n obtain ⟨bltu_1, bltu_0, hbltu_1, hbltu_0⟩ :=\n n3_v4_trial_witnesses\n (a.getLimbN 0) (a.getLimbN 1)... | [
{
"name": "n3_v4_trial_witnesses",
"text": "/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/\ntheorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :\n ∃ bltu_1 bltu_0,\n isTrialN3V4_j1 bltu_1 a0 a1 a2 a3 b0 b1 b2 b3 ∧\n isTrialN3V4_j0 bltu_1 bltu_0 a0 a1 a2... | [
{
"name": "n3V4_exists_quotient_word_of_selected_path_conditions",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 4,
"n_lines": 48,
"n_chars": 2463,
"n_subproofs": 0,
"n_tactics": 2,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 0,
"a... | 4 | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | @@ -46,10 +46,60 @@
(a.getLimbN 0) (a.getLimbN 1) (a.getLimbN 2) (a.getLimbN 3)
(b.getLimbN 0) (b.getLimbN 1) (b.getLimbN 2) (b.getLimbN 3))
+/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/
+theorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :
+ ∃ bltu_1 b... | {
"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_dac67f0c188a_12 | 60d3f2d60b7cd2f6 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3TrialWitnesses.lean | N3TrialWitnesses | 12 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 17 | 1 | [
{
"theorem_name": "n3V4TrialWitnesses_of_getLimbN",
"depth": 1,
"n_commands": 0,
"n_lines": 6,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n obtain ⟨bltu_1, bltu_0, hbltu_1, hbltu_0⟩ :=\n n3_v4_trial_witnesses\n (a.getLimbN 0) (a.getLimbN 1)... | [
{
"name": "n3_v4_trial_witnesses",
"text": "/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/\ntheorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :\n ∃ bltu_1 bltu_0,\n isTrialN3V4_j1 bltu_1 a0 a1 a2 a3 b0 b1 b2 b3 ∧\n isTrialN3V4_j0 bltu_1 bltu_0 a0 a1 a2... | [
{
"name": "n3V4_quotient_word_of_path_conditions",
"fan_in": 2,
"n_deps_direct": 1,
"n_deps_transitive": 5,
"n_lines": 34,
"n_chars": 1682,
"n_subproofs": 1,
"n_tactics": 4,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 2,
"automation_only":... | 5 | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | @@ -46,10 +46,60 @@
(a.getLimbN 0) (a.getLimbN 1) (a.getLimbN 2) (a.getLimbN 3)
(b.getLimbN 0) (b.getLimbN 1) (b.getLimbN 2) (b.getLimbN 3))
+/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/
+theorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :
+ ∃ bltu_1 b... | {
"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_dac67f0c188a_13 | 9d2576b669c3d318 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3TrialWitnesses.lean | N3TrialWitnesses | 13 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 17 | 1 | [
{
"theorem_name": "n3V4TrialWitnesses_of_getLimbN",
"depth": 1,
"n_commands": 0,
"n_lines": 6,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n obtain ⟨bltu_1, bltu_0, hbltu_1, hbltu_0⟩ :=\n n3_v4_trial_witnesses\n (a.getLimbN 0) (a.getLimbN 1)... | [
{
"name": "n3_v4_trial_witnesses",
"text": "/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/\ntheorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :\n ∃ bltu_1 bltu_0,\n isTrialN3V4_j1 bltu_1 a0 a1 a2 a3 b0 b1 b2 b3 ∧\n isTrialN3V4_j0 bltu_1 bltu_0 a0 a1 a2... | [
{
"name": "n3V4_quotient_word_of_path_conditions_ne_zero",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 3,
"n_lines": 37,
"n_chars": 1776,
"n_subproofs": 1,
"n_tactics": 7,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 2,
"automatio... | 3 | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | @@ -46,10 +46,60 @@
(a.getLimbN 0) (a.getLimbN 1) (a.getLimbN 2) (a.getLimbN 3)
(b.getLimbN 0) (b.getLimbN 1) (b.getLimbN 2) (b.getLimbN 3))
+/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/
+theorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :
+ ∃ bltu_1 b... | {
"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_dac67f0c188a_14 | fda1357706a4072f | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3TrialWitnesses.lean | N3TrialWitnesses | 14 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 17 | 1 | [
{
"theorem_name": "n3V4TrialWitnesses_of_getLimbN",
"depth": 1,
"n_commands": 0,
"n_lines": 6,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n obtain ⟨bltu_1, bltu_0, hbltu_1, hbltu_0⟩ :=\n n3_v4_trial_witnesses\n (a.getLimbN 0) (a.getLimbN 1)... | [
{
"name": "n3_v4_trial_witnesses",
"text": "/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/\ntheorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :\n ∃ bltu_1 bltu_0,\n isTrialN3V4_j1 bltu_1 a0 a1 a2 a3 b0 b1 b2 b3 ∧\n isTrialN3V4_j0 bltu_1 bltu_0 a0 a1 a2... | [
{
"name": "n3V4_shape_quotient_word_of_path_conditions",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 6,
"n_lines": 34,
"n_chars": 1705,
"n_subproofs": 0,
"n_tactics": 1,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 0,
"automation_... | 6 | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | @@ -46,10 +46,60 @@
(a.getLimbN 0) (a.getLimbN 1) (a.getLimbN 2) (a.getLimbN 3)
(b.getLimbN 0) (b.getLimbN 1) (b.getLimbN 2) (b.getLimbN 3))
+/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/
+theorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :
+ ∃ bltu_1 b... | {
"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_dac67f0c188a_15 | 30ce50f34a7bba75 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3TrialWitnesses.lean | N3TrialWitnesses | 15 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 17 | 1 | [
{
"theorem_name": "n3V4TrialWitnesses_of_getLimbN",
"depth": 1,
"n_commands": 0,
"n_lines": 6,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n obtain ⟨bltu_1, bltu_0, hbltu_1, hbltu_0⟩ :=\n n3_v4_trial_witnesses\n (a.getLimbN 0) (a.getLimbN 1)... | [
{
"name": "n3_v4_trial_witnesses",
"text": "/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/\ntheorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :\n ∃ bltu_1 bltu_0,\n isTrialN3V4_j1 bltu_1 a0 a1 a2 a3 b0 b1 b2 b3 ∧\n isTrialN3V4_j0 bltu_1 bltu_0 a0 a1 a2... | [
{
"name": "n3V4_shape_quotient_word_of_path_conditions_of_hb2nz",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 8,
"n_lines": 33,
"n_chars": 1649,
"n_subproofs": 0,
"n_tactics": 3,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 0,
"au... | 8 | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | @@ -46,10 +46,60 @@
(a.getLimbN 0) (a.getLimbN 1) (a.getLimbN 2) (a.getLimbN 3)
(b.getLimbN 0) (b.getLimbN 1) (b.getLimbN 2) (b.getLimbN 3))
+/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/
+theorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :
+ ∃ bltu_1 b... | {
"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_dac67f0c188a_16 | bd25e7c7147c4b6c | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3TrialWitnesses.lean | N3TrialWitnesses | 16 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 17 | 1 | [
{
"theorem_name": "n3V4TrialWitnesses_of_getLimbN",
"depth": 1,
"n_commands": 0,
"n_lines": 6,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n obtain ⟨bltu_1, bltu_0, hbltu_1, hbltu_0⟩ :=\n n3_v4_trial_witnesses\n (a.getLimbN 0) (a.getLimbN 1)... | [
{
"name": "n3_v4_trial_witnesses",
"text": "/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/\ntheorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :\n ∃ bltu_1 bltu_0,\n isTrialN3V4_j1 bltu_1 a0 a1 a2 a3 b0 b1 b2 b3 ∧\n isTrialN3V4_j0 bltu_1 bltu_0 a0 a1 a2... | [
{
"name": "n3V4_exists_hdivs_of_path_conditions",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 5,
"n_lines": 47,
"n_chars": 2368,
"n_subproofs": 0,
"n_tactics": 2,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 0,
"automation_only": ... | 5 | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | @@ -46,10 +46,60 @@
(a.getLimbN 0) (a.getLimbN 1) (a.getLimbN 2) (a.getLimbN 3)
(b.getLimbN 0) (b.getLimbN 1) (b.getLimbN 2) (b.getLimbN 3))
+/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/
+theorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :
+ ∃ bltu_1 b... | {
"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_dac67f0c188a_17 | f820bc9a73753bdc | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3TrialWitnesses.lean | N3TrialWitnesses | 17 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 17 | 1 | [
{
"theorem_name": "n3V4TrialWitnesses_of_getLimbN",
"depth": 1,
"n_commands": 0,
"n_lines": 6,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n obtain ⟨bltu_1, bltu_0, hbltu_1, hbltu_0⟩ :=\n n3_v4_trial_witnesses\n (a.getLimbN 0) (a.getLimbN 1)... | [
{
"name": "n3_v4_trial_witnesses",
"text": "/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/\ntheorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :\n ∃ bltu_1 bltu_0,\n isTrialN3V4_j1 bltu_1 a0 a1 a2 a3 b0 b1 b2 b3 ∧\n isTrialN3V4_j0 bltu_1 bltu_0 a0 a1 a2... | [
{
"name": "n3V4_exists_hdivs_of_selected_path_conditions",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 5,
"n_lines": 54,
"n_chars": 2766,
"n_subproofs": 0,
"n_tactics": 2,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 0,
"automatio... | 5 | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | @@ -46,10 +46,60 @@
(a.getLimbN 0) (a.getLimbN 1) (a.getLimbN 2) (a.getLimbN 3)
(b.getLimbN 0) (b.getLimbN 1) (b.getLimbN 2) (b.getLimbN 3))
+/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/
+theorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :
+ ∃ bltu_1 b... | {
"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_dac67f0c188a_18 | 87e7741c7710bcd1 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3TrialWitnesses.lean | N3TrialWitnesses | 18 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 17 | 1 | [
{
"theorem_name": "n3V4TrialWitnesses_of_getLimbN",
"depth": 1,
"n_commands": 0,
"n_lines": 6,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n obtain ⟨bltu_1, bltu_0, hbltu_1, hbltu_0⟩ :=\n n3_v4_trial_witnesses\n (a.getLimbN 0) (a.getLimbN 1)... | [
{
"name": "n3_v4_trial_witnesses",
"text": "/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/\ntheorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :\n ∃ bltu_1 bltu_0,\n isTrialN3V4_j1 bltu_1 a0 a1 a2 a3 b0 b1 b2 b3 ∧\n isTrialN3V4_j0 bltu_1 bltu_0 a0 a1 a2... | [
{
"name": "n3V4_full_div_getLimbN_of_path_conditions",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 6,
"n_lines": 47,
"n_chars": 2277,
"n_subproofs": 1,
"n_tactics": 9,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 2,
"automation_on... | 6 | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | @@ -46,10 +46,60 @@
(a.getLimbN 0) (a.getLimbN 1) (a.getLimbN 2) (a.getLimbN 3)
(b.getLimbN 0) (b.getLimbN 1) (b.getLimbN 2) (b.getLimbN 3))
+/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/
+theorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :
+ ∃ bltu_1 b... | {
"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_dac67f0c188a_19 | 3369c11259864417 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3TrialWitnesses.lean | N3TrialWitnesses | 19 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 17 | 1 | [
{
"theorem_name": "n3V4TrialWitnesses_of_getLimbN",
"depth": 1,
"n_commands": 0,
"n_lines": 6,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n obtain ⟨bltu_1, bltu_0, hbltu_1, hbltu_0⟩ :=\n n3_v4_trial_witnesses\n (a.getLimbN 0) (a.getLimbN 1)... | [
{
"name": "n3_v4_trial_witnesses",
"text": "/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/\ntheorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :\n ∃ bltu_1 bltu_0,\n isTrialN3V4_j1 bltu_1 a0 a1 a2 a3 b0 b1 b2 b3 ∧\n isTrialN3V4_j0 bltu_1 bltu_0 a0 a1 a2... | [
{
"name": "n3V4_full_div_getLimbN_of_path_conditions_ne_zero",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 5,
"n_lines": 40,
"n_chars": 1916,
"n_subproofs": 1,
"n_tactics": 5,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 2,
"autom... | 5 | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | @@ -46,10 +46,60 @@
(a.getLimbN 0) (a.getLimbN 1) (a.getLimbN 2) (a.getLimbN 3)
(b.getLimbN 0) (b.getLimbN 1) (b.getLimbN 2) (b.getLimbN 3))
+/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/
+theorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :
+ ∃ bltu_1 b... | {
"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_dac67f0c188a_20 | bba9d86ae67e757e | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3TrialWitnesses.lean | N3TrialWitnesses | 20 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 17 | 1 | [
{
"theorem_name": "n3V4TrialWitnesses_of_getLimbN",
"depth": 1,
"n_commands": 0,
"n_lines": 6,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n obtain ⟨bltu_1, bltu_0, hbltu_1, hbltu_0⟩ :=\n n3_v4_trial_witnesses\n (a.getLimbN 0) (a.getLimbN 1)... | [
{
"name": "n3_v4_trial_witnesses",
"text": "/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/\ntheorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :\n ∃ bltu_1 bltu_0,\n isTrialN3V4_j1 bltu_1 a0 a1 a2 a3 b0 b1 b2 b3 ∧\n isTrialN3V4_j0 bltu_1 bltu_0 a0 a1 a2... | [
{
"name": "n3V4_shape_full_div_getLimbN_of_path_conditions",
"fan_in": 1,
"n_deps_direct": 1,
"n_deps_transitive": 7,
"n_lines": 39,
"n_chars": 1968,
"n_subproofs": 0,
"n_tactics": 1,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 0,
"automat... | 7 | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | @@ -46,10 +46,60 @@
(a.getLimbN 0) (a.getLimbN 1) (a.getLimbN 2) (a.getLimbN 3)
(b.getLimbN 0) (b.getLimbN 1) (b.getLimbN 2) (b.getLimbN 3))
+/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/
+theorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :
+ ∃ bltu_1 b... | {
"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_dac67f0c188a_21 | befbe51b80dd4cad | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/N3TrialWitnesses.lean | N3TrialWitnesses | 21 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 17 | 1 | [
{
"theorem_name": "n3V4TrialWitnesses_of_getLimbN",
"depth": 1,
"n_commands": 0,
"n_lines": 6,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n obtain ⟨bltu_1, bltu_0, hbltu_1, hbltu_0⟩ :=\n n3_v4_trial_witnesses\n (a.getLimbN 0) (a.getLimbN 1)... | [
{
"name": "n3_v4_trial_witnesses",
"text": "/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/\ntheorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :\n ∃ bltu_1 bltu_0,\n isTrialN3V4_j1 bltu_1 a0 a1 a2 a3 b0 b1 b2 b3 ∧\n isTrialN3V4_j0 bltu_1 bltu_0 a0 a1 a2... | [
{
"name": "n3V4_shape_full_div_getLimbN_of_path_conditions_of_hb2nz",
"fan_in": 0,
"n_deps_direct": 2,
"n_deps_transitive": 9,
"n_lines": 37,
"n_chars": 1873,
"n_subproofs": 0,
"n_tactics": 3,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 0,
... | 9 | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | /-
EvmAsm.Evm64.DivMod.Spec.N3TrialWitnesses
Mechanical branch-boolean witnesses for the n=3 DIV path.
Legacy note:
Helpers below whose names end in `_of_path_conditions` still consume the old
`fullDivN3Carry2NzV4` package. They are compatibility shims only. New v4
stack/callable work should use the `_of_... | @@ -46,10 +46,60 @@
(a.getLimbN 0) (a.getLimbN 1) (a.getLimbN 2) (a.getLimbN 3)
(b.getLimbN 0) (b.getLimbN 1) (b.getLimbN 2) (b.getLimbN 3))
+/-- The two n=3 V4 trial-branch booleans always have canonical witnesses. -/
+theorem n3_v4_trial_witnesses (a0 a1 a2 a3 b0 b1 b2 b3 : Word) :
+ ∃ bltu_1 b... | {
"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_4debf243a978_0 | 532d376fe7e521cb | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/EL/Bls12PairingInputBridge.lean | Bls12PairingInputBridge | 0 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 1 | 1 | [
{
"theorem_name": "bls12PairingInputFromMemory_pairs_length",
"depth": 1,
"n_commands": 0,
"n_lines": 2,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n simp [bls12PairingInputFromMemory, pairingPairsFromMemory_length]",
"n_chars": 71,
"n_subp... | [
{
"name": "pairingPairsFromMemory_length",
"text": "theorem pairingPairsFromMemory_length\n (memory : MemoryReader) (pairsStart numPairs : Nat) :\n (pairingPairsFromMemory memory pairsStart numPairs).length = numPairs := by\n simp [pairingPairsFromMemory]\n\n",
"fan_in": 1,
"n_lines": 6,
... | [
{
"name": "bls12PairingInputFromMemory_pairs_length",
"fan_in": 0,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 6,
"n_chars": 267,
"n_subproofs": 0,
"n_tactics": 2,
"cyclomatic": 1,
"n_automation": 1,
"n_rewrites": 0,
"n_structural": 0,
"automation_only"... | 1 | /-
EvmAsm.EL.Bls12PairingInputBridge
Bridge from executable memory to the input payload consumed by the
`zkvm_bls12_pairing` accelerator.
-/
import EvmAsm.EL.KeccakInputBridge
namespace EvmAsm.EL
namespace Bls12PairingInputBridge
/-- A byte-addressed executable memory reader. -/
abbrev MemoryReader := Keccak... | /-
EvmAsm.EL.Bls12PairingInputBridge
Bridge from executable memory to the input payload consumed by the
`zkvm_bls12_pairing` accelerator.
-/
import EvmAsm.EL.KeccakInputBridge
namespace EvmAsm.EL
namespace Bls12PairingInputBridge
/-- A byte-addressed executable memory reader. -/
abbrev MemoryReader := Keccak... | @@ -61,9 +61,15 @@
{ pairs := pairingPairsFromMemory memory pairsStart numPairs
numPairs := numPairs }
+theorem pairingPairsFromMemory_length
+ (memory : MemoryReader) (pairsStart numPairs : Nat) :
+ (pairingPairsFromMemory memory pairsStart numPairs).length = numPairs := by
+ simp [pairingPairsFromMem... | {
"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_754203998da8_0 | 3e9fb3f489f6930c | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Codegen/Programs/Bn254CurveCopySAsm.lean | Bn254CurveCopySAsm | 0 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 12 | 1 | [
{
"theorem_name": "copy_engine",
"depth": 1,
"n_commands": 0,
"n_lines": 36,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n have hse0 : signExtend12 (0 : BitVec 12) = (0 : Word) := by decide\n have hloadAddr : rf.get .x10 + signExtend12 (0 : BitVec ... | [
{
"name": "src_byteAt",
"text": "private theorem src_byteAt (src : Word) (srcBytes : List (BitVec 8)) (i : Nat)\n (hi : i < 64) :\n Region.byteAt ⟨src, srcBytes⟩ (src + BitVec.ofNat 64 i) = srcBytes.getD i 0 := by\n unfold Region.byteAt\n have hi64 : i < 2 ^ 64 := by omega\n rw [show (src + BitVec.... | [
{
"name": "copy_engine",
"fan_in": 1,
"n_deps_direct": 3,
"n_deps_transitive": 3,
"n_lines": 44,
"n_chars": 2147,
"n_subproofs": 5,
"n_tactics": 36,
"cyclomatic": 1,
"n_automation": 11,
"n_rewrites": 13,
"n_structural": 1,
"automation_only": false,
"max_nestin... | 3 | /-
EvmAsm.Codegen.Programs.Bn254CurveCopySAsm
Verified SAsm port of `bnc_copy64`: copy a 64-byte BN254 affine point
buffer from `a0` to `a1` using the emitted alignment-free byte loop.
-/
import EvmAsm.Rv64.SAsm.MultiDword
import EvmAsm.Rv64.SAsm.MultiRw
import EvmAsm.Rv64.SAsm.Tactic
import EvmAsm.Codegen.Prog... | /-
EvmAsm.Codegen.Programs.Bn254CurveCopySAsm
Verified SAsm port of `bnc_copy64`: copy a 64-byte BN254 affine point
buffer from `a0` to `a1` using the emitted alignment-free byte loop.
-/
import EvmAsm.Rv64.SAsm.MultiDword
import EvmAsm.Rv64.SAsm.MultiRw
import EvmAsm.Rv64.SAsm.Tactic
import EvmAsm.Codegen.Prog... | @@ -40,6 +40,15 @@
rw [hws]
rcases hdisj with h | h <;> bv_omega
+private theorem src_byteAt (src : Word) (srcBytes : List (BitVec 8)) (i : Nat)
+ (hi : i < 64) :
+ Region.byteAt ⟨src, srcBytes⟩ (src + BitVec.ofNat 64 i) = srcBytes.getD i 0 := by
+ unfold Region.byteAt
+ have hi64 : i < 2 ^ 64 := by ome... | {
"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_754203998da8_1 | 79fae87879ce2433 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Codegen/Programs/Bn254CurveCopySAsm.lean | Bn254CurveCopySAsm | 1 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 12 | 2 | [
{
"theorem_name": "copy_engine",
"depth": 1,
"n_commands": 0,
"n_lines": 36,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n have hse0 : signExtend12 (0 : BitVec 12) = (0 : Word) := by decide\n have hloadAddr : rf.get .x10 + signExtend12 (0 : BitVec ... | [
{
"name": "src_miss1",
"text": "private theorem src_miss1 (src dst : Word) (ws : List (BitVec 8)) (i : Nat)\n (hi : i < 64) (hws : ws.length = 64) (hfr : frameOk64 src dst) :\n ¬ inRw dst ws (src + BitVec.ofNat 64 i) 1 := by\n obtain ⟨hnws, hnwd, hdisj⟩ := hfr\n unfold inRw\n rw [hws]\n rcases hdi... | [
{
"name": "copy_blockVCs",
"fan_in": 1,
"n_deps_direct": 2,
"n_deps_transitive": 2,
"n_lines": 44,
"n_chars": 1973,
"n_subproofs": 6,
"n_tactics": 37,
"cyclomatic": 2,
"n_automation": 12,
"n_rewrites": 15,
"n_structural": 5,
"automation_only": false,
"max_nest... | 2 | /-
EvmAsm.Codegen.Programs.Bn254CurveCopySAsm
Verified SAsm port of `bnc_copy64`: copy a 64-byte BN254 affine point
buffer from `a0` to `a1` using the emitted alignment-free byte loop.
-/
import EvmAsm.Rv64.SAsm.MultiDword
import EvmAsm.Rv64.SAsm.MultiRw
import EvmAsm.Rv64.SAsm.Tactic
import EvmAsm.Codegen.Prog... | /-
EvmAsm.Codegen.Programs.Bn254CurveCopySAsm
Verified SAsm port of `bnc_copy64`: copy a 64-byte BN254 affine point
buffer from `a0` to `a1` using the emitted alignment-free byte loop.
-/
import EvmAsm.Rv64.SAsm.MultiDword
import EvmAsm.Rv64.SAsm.MultiRw
import EvmAsm.Rv64.SAsm.Tactic
import EvmAsm.Codegen.Prog... | @@ -32,6 +32,14 @@
dsimp only [aluSem, loadSem]
rw [if_neg h]
+private theorem src_miss1 (src dst : Word) (ws : List (BitVec 8)) (i : Nat)
+ (hi : i < 64) (hws : ws.length = 64) (hfr : frameOk64 src dst) :
+ ¬ inRw dst ws (src + BitVec.ofNat 64 i) 1 := by
+ obtain ⟨hnws, hnwd, hdisj⟩ := hfr
+ unfold inR... | {
"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_754203998da8_2 | b9ce95a5489844a8 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Codegen/Programs/Bn254CurveCopySAsm.lean | Bn254CurveCopySAsm | 2 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 12 | 1 | [
{
"theorem_name": "bncCopy64Fn_spec",
"depth": 1,
"n_commands": 0,
"n_lines": 65,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n have hbase : (bncCopy64Fn src dst srcBytes orig).rw.base = dst := rfl\n vcgen\n case region => exact ⟨hwf, hrww⟩\n cas... | [
{
"name": "copy_blockVCs",
"text": "private theorem copy_blockVCs (src dst : Word) (srcBytes : List (BitVec 8))\n (rf : RegFile) (ws : List (BitVec 8)) (i : Nat) (hi : i < 64)\n (hx10 : rf.get .x10 = src + BitVec.ofNat 64 i)\n (hx11 : rf.get .x11 = dst + BitVec.ofNat 64 i)\n (hws : ws.length = 6... | [
{
"name": "bncCopy64Fn_spec",
"fan_in": 0,
"n_deps_direct": 9,
"n_deps_transitive": 12,
"n_lines": 69,
"n_chars": 3271,
"n_subproofs": 8,
"n_tactics": 67,
"cyclomatic": 9,
"n_automation": 33,
"n_rewrites": 18,
"n_structural": 18,
"automation_only": false,
"max... | 12 | /-
EvmAsm.Codegen.Programs.Bn254CurveCopySAsm
Verified SAsm port of `bnc_copy64`: copy a 64-byte BN254 affine point
buffer from `a0` to `a1` using the emitted alignment-free byte loop.
-/
import EvmAsm.Rv64.SAsm.MultiDword
import EvmAsm.Rv64.SAsm.MultiRw
import EvmAsm.Rv64.SAsm.Tactic
import EvmAsm.Codegen.Prog... | /-
EvmAsm.Codegen.Programs.Bn254CurveCopySAsm
Verified SAsm port of `bnc_copy64`: copy a 64-byte BN254 affine point
buffer from `a0` to `a1` using the emitted alignment-free byte loop.
-/
import EvmAsm.Rv64.SAsm.MultiDword
import EvmAsm.Rv64.SAsm.MultiRw
import EvmAsm.Rv64.SAsm.Tactic
import EvmAsm.Codegen.Prog... | @@ -156,6 +156,49 @@
RegFile.get_set_ne _ _ _ _ (by decide : Reg.x5 ≠ .x10),
RegFile.get_set_ne _ _ _ _ (by decide : Reg.x5 ≠ .x6)]
+private theorem copy_blockVCs (src dst : Word) (srcBytes : List (BitVec 8))
+ (rf : RegFile) (ws : List (BitVec 8)) (i : Nat) (hi : i < 64)
+ (hx10 : rf.get .x10 = src +... | {
"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_4e4197900e2d_0 | 89bb71f63696cbd3 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/CallAddbackRuntimeHighDiv.lean | CallAddbackRuntimeHighDiv | 0 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 36 | 4 | [
{
"theorem_name": "n4CallAddbackBeqShiftHighDivEvidence.of_parts",
"depth": 1,
"n_commands": 0,
"n_lines": 3,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n rw [n4CallAddbackBeqShiftHighDivEvidence_def]\n exact ⟨h_rhat_hi_zero, h_qhat_high, h_high_d... | [
{
"name": "n4CallAddbackBeqShiftHighDivEvidence_def",
"text": "theorem n4CallAddbackBeqShiftHighDivEvidence_def {a b : EvmWord} :\n n4CallAddbackBeqShiftHighDivEvidence a b =\n (n4CallAddbackBeqRhatddHiZero a b ∧\n n4CallAddbackBeqQHatHighDivBound a b ∧\n n4CallAddbackBeqHighDivKnuthAB... | [
{
"name": "n4CallAddbackBeqShiftHighDivEvidence.of_parts",
"fan_in": 4,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 9,
"n_chars": 397,
"n_subproofs": 0,
"n_tactics": 3,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 1,
"n_structural": 1,
"automation_... | 1 | /-
EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntimeHighDiv
Small N4 call-addback runtime bridge lemmas that keep
CallAddbackRuntime.lean below the file-size guardrail.
-/
import EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntime
namespace EvmAsm.Evm64
namespace EvmWord
/-- High 128/64 quotient used by the n=4 call-addba... | /-
EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntimeHighDiv
Small N4 call-addback runtime bridge lemmas that keep
CallAddbackRuntime.lean below the file-size guardrail.
-/
import EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntime
namespace EvmAsm.Evm64
namespace EvmWord
/-- High 128/64 quotient used by the n=4 call-addba... | @@ -62,6 +62,13 @@
n4CallAddbackBeqQHatHighDivBound a b ∧
n4CallAddbackBeqHighDivKnuthABound a b
+theorem n4CallAddbackBeqShiftHighDivEvidence_def {a b : EvmWord} :
+ n4CallAddbackBeqShiftHighDivEvidence a b =
+ (n4CallAddbackBeqRhatddHiZero a b ∧
+ n4CallAddbackBeqQHatHighDivBound a b ∧
+ ... | {
"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_4e4197900e2d_1 | b9f737fba8268791 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/CallAddbackRuntimeHighDiv.lean | CallAddbackRuntimeHighDiv | 1 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 36 | 4 | [
{
"theorem_name": "n4CallAddbackBeqShiftHighDivEvidence.of_parts",
"depth": 1,
"n_commands": 0,
"n_lines": 3,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n rw [n4CallAddbackBeqShiftHighDivEvidence_def]\n exact ⟨h_rhat_hi_zero, h_qhat_high, h_high_d... | [
{
"name": "n4CallAddbackBeqShiftHighDivEvidence_def",
"text": "theorem n4CallAddbackBeqShiftHighDivEvidence_def {a b : EvmWord} :\n n4CallAddbackBeqShiftHighDivEvidence a b =\n (n4CallAddbackBeqRhatddHiZero a b ∧\n n4CallAddbackBeqQHatHighDivBound a b ∧\n n4CallAddbackBeqHighDivKnuthAB... | [
{
"name": "n4CallAddbackBeqShiftHighDivEvidence.rhatddHiZero",
"fan_in": 3,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 7,
"n_chars": 263,
"n_subproofs": 0,
"n_tactics": 3,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 1,
"n_structural": 1,
"automat... | 1 | /-
EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntimeHighDiv
Small N4 call-addback runtime bridge lemmas that keep
CallAddbackRuntime.lean below the file-size guardrail.
-/
import EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntime
namespace EvmAsm.Evm64
namespace EvmWord
/-- High 128/64 quotient used by the n=4 call-addba... | /-
EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntimeHighDiv
Small N4 call-addback runtime bridge lemmas that keep
CallAddbackRuntime.lean below the file-size guardrail.
-/
import EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntime
namespace EvmAsm.Evm64
namespace EvmWord
/-- High 128/64 quotient used by the n=4 call-addba... | @@ -62,9 +62,18 @@
n4CallAddbackBeqQHatHighDivBound a b ∧
n4CallAddbackBeqHighDivKnuthABound a b
+theorem n4CallAddbackBeqShiftHighDivEvidence_def {a b : EvmWord} :
+ n4CallAddbackBeqShiftHighDivEvidence a b =
+ (n4CallAddbackBeqRhatddHiZero a b ∧
+ n4CallAddbackBeqQHatHighDivBound a b ∧
+ ... | {
"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_4e4197900e2d_2 | 1501c9fefa1aae21 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/CallAddbackRuntimeHighDiv.lean | CallAddbackRuntimeHighDiv | 2 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 36 | 4 | [
{
"theorem_name": "n4CallAddbackBeqShiftHighDivEvidence.of_parts",
"depth": 1,
"n_commands": 0,
"n_lines": 3,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n rw [n4CallAddbackBeqShiftHighDivEvidence_def]\n exact ⟨h_rhat_hi_zero, h_qhat_high, h_high_d... | [
{
"name": "n4CallAddbackBeqShiftHighDivEvidence_def",
"text": "theorem n4CallAddbackBeqShiftHighDivEvidence_def {a b : EvmWord} :\n n4CallAddbackBeqShiftHighDivEvidence a b =\n (n4CallAddbackBeqRhatddHiZero a b ∧\n n4CallAddbackBeqQHatHighDivBound a b ∧\n n4CallAddbackBeqHighDivKnuthAB... | [
{
"name": "n4CallAddbackBeqShiftHighDivEvidence.qhatHighDiv",
"fan_in": 5,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 7,
"n_chars": 268,
"n_subproofs": 0,
"n_tactics": 3,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 1,
"n_structural": 1,
"automati... | 1 | /-
EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntimeHighDiv
Small N4 call-addback runtime bridge lemmas that keep
CallAddbackRuntime.lean below the file-size guardrail.
-/
import EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntime
namespace EvmAsm.Evm64
namespace EvmWord
/-- High 128/64 quotient used by the n=4 call-addba... | /-
EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntimeHighDiv
Small N4 call-addback runtime bridge lemmas that keep
CallAddbackRuntime.lean below the file-size guardrail.
-/
import EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntime
namespace EvmAsm.Evm64
namespace EvmWord
/-- High 128/64 quotient used by the n=4 call-addba... | @@ -62,6 +62,13 @@
n4CallAddbackBeqQHatHighDivBound a b ∧
n4CallAddbackBeqHighDivKnuthABound a b
+theorem n4CallAddbackBeqShiftHighDivEvidence_def {a b : EvmWord} :
+ n4CallAddbackBeqShiftHighDivEvidence a b =
+ (n4CallAddbackBeqRhatddHiZero a b ∧
+ n4CallAddbackBeqQHatHighDivBound a b ∧
+ ... | {
"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_4e4197900e2d_3 | c5d263744de4c88f | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/CallAddbackRuntimeHighDiv.lean | CallAddbackRuntimeHighDiv | 3 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 36 | 4 | [
{
"theorem_name": "n4CallAddbackBeqShiftHighDivEvidence.of_parts",
"depth": 1,
"n_commands": 0,
"n_lines": 3,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n rw [n4CallAddbackBeqShiftHighDivEvidence_def]\n exact ⟨h_rhat_hi_zero, h_qhat_high, h_high_d... | [
{
"name": "n4CallAddbackBeqShiftHighDivEvidence_def",
"text": "theorem n4CallAddbackBeqShiftHighDivEvidence_def {a b : EvmWord} :\n n4CallAddbackBeqShiftHighDivEvidence a b =\n (n4CallAddbackBeqRhatddHiZero a b ∧\n n4CallAddbackBeqQHatHighDivBound a b ∧\n n4CallAddbackBeqHighDivKnuthAB... | [
{
"name": "n4CallAddbackBeqShiftHighDivEvidence.knuthA",
"fan_in": 5,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 7,
"n_chars": 265,
"n_subproofs": 0,
"n_tactics": 3,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 1,
"n_structural": 1,
"automation_on... | 1 | /-
EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntimeHighDiv
Small N4 call-addback runtime bridge lemmas that keep
CallAddbackRuntime.lean below the file-size guardrail.
-/
import EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntime
namespace EvmAsm.Evm64
namespace EvmWord
/-- High 128/64 quotient used by the n=4 call-addba... | /-
EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntimeHighDiv
Small N4 call-addback runtime bridge lemmas that keep
CallAddbackRuntime.lean below the file-size guardrail.
-/
import EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntime
namespace EvmAsm.Evm64
namespace EvmWord
/-- High 128/64 quotient used by the n=4 call-addba... | @@ -62,6 +62,13 @@
n4CallAddbackBeqQHatHighDivBound a b ∧
n4CallAddbackBeqHighDivKnuthABound a b
+theorem n4CallAddbackBeqShiftHighDivEvidence_def {a b : EvmWord} :
+ n4CallAddbackBeqShiftHighDivEvidence a b =
+ (n4CallAddbackBeqRhatddHiZero a b ∧
+ n4CallAddbackBeqQHatHighDivBound a b ∧
+ ... | {
"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_4e4197900e2d_4 | da2e27915ffe89e2 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/CallAddbackRuntimeHighDiv.lean | CallAddbackRuntimeHighDiv | 4 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 36 | 3 | [
{
"theorem_name": "n4CallAddbackBeqRuntimeQHatHighDivEvidence.of_parts",
"depth": 1,
"n_commands": 0,
"n_lines": 3,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n rw [n4CallAddbackBeqRuntimeQHatHighDivEvidence_def]\n exact ⟨h_qhat_high, h_high_div⟩"... | [
{
"name": "n4CallAddbackBeqRuntimeQHatHighDivEvidence_def",
"text": "theorem n4CallAddbackBeqRuntimeQHatHighDivEvidence_def {a b : EvmWord} :\n n4CallAddbackBeqRuntimeQHatHighDivEvidence a b =\n (n4CallAddbackBeqQHatHighDivBound a b ∧\n n4CallAddbackBeqHighDivKnuthABound a b) :=\n rfl\n\n",
... | [
{
"name": "n4CallAddbackBeqRuntimeQHatHighDivEvidence.of_parts",
"fan_in": 4,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 8,
"n_chars": 343,
"n_subproofs": 0,
"n_tactics": 3,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 1,
"n_structural": 1,
"autom... | 1 | /-
EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntimeHighDiv
Small N4 call-addback runtime bridge lemmas that keep
CallAddbackRuntime.lean below the file-size guardrail.
-/
import EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntime
namespace EvmAsm.Evm64
namespace EvmWord
/-- High 128/64 quotient used by the n=4 call-addba... | /-
EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntimeHighDiv
Small N4 call-addback runtime bridge lemmas that keep
CallAddbackRuntime.lean below the file-size guardrail.
-/
import EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntime
namespace EvmAsm.Evm64
namespace EvmWord
/-- High 128/64 quotient used by the n=4 call-addba... | @@ -69,6 +69,12 @@
n4CallAddbackBeqHighDivKnuthABound a b) :=
rfl
+theorem n4CallAddbackBeqRuntimeQHatHighDivEvidence_def {a b : EvmWord} :
+ n4CallAddbackBeqRuntimeQHatHighDivEvidence a b =
+ (n4CallAddbackBeqQHatHighDivBound a b ∧
+ n4CallAddbackBeqHighDivKnuthABound a b) :=
+ rfl
+
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_4e4197900e2d_5 | 8f6b959adb9f033e | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/CallAddbackRuntimeHighDiv.lean | CallAddbackRuntimeHighDiv | 5 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 36 | 3 | [
{
"theorem_name": "n4CallAddbackBeqRuntimeQHatHighDivEvidence.of_parts",
"depth": 1,
"n_commands": 0,
"n_lines": 3,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n rw [n4CallAddbackBeqRuntimeQHatHighDivEvidence_def]\n exact ⟨h_qhat_high, h_high_div⟩"... | [
{
"name": "n4CallAddbackBeqRuntimeQHatHighDivEvidence_def",
"text": "theorem n4CallAddbackBeqRuntimeQHatHighDivEvidence_def {a b : EvmWord} :\n n4CallAddbackBeqRuntimeQHatHighDivEvidence a b =\n (n4CallAddbackBeqQHatHighDivBound a b ∧\n n4CallAddbackBeqHighDivKnuthABound a b) :=\n rfl\n\n",
... | [
{
"name": "n4CallAddbackBeqShiftHighDivEvidence.toRuntimeQHatHighDivEvidence",
"fan_in": 1,
"n_deps_direct": 3,
"n_deps_transitive": 5,
"n_lines": 9,
"n_chars": 392,
"n_subproofs": 0,
"n_tactics": 3,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural":... | 2 | /-
EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntimeHighDiv
Small N4 call-addback runtime bridge lemmas that keep
CallAddbackRuntime.lean below the file-size guardrail.
-/
import EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntime
namespace EvmAsm.Evm64
namespace EvmWord
/-- High 128/64 quotient used by the n=4 call-addba... | /-
EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntimeHighDiv
Small N4 call-addback runtime bridge lemmas that keep
CallAddbackRuntime.lean below the file-size guardrail.
-/
import EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntime
namespace EvmAsm.Evm64
namespace EvmWord
/-- High 128/64 quotient used by the n=4 call-addba... | @@ -69,6 +69,12 @@
n4CallAddbackBeqHighDivKnuthABound a b) :=
rfl
+theorem n4CallAddbackBeqRuntimeQHatHighDivEvidence_def {a b : EvmWord} :
+ n4CallAddbackBeqRuntimeQHatHighDivEvidence a b =
+ (n4CallAddbackBeqQHatHighDivBound a b ∧
+ n4CallAddbackBeqHighDivKnuthABound a b) :=
+ rfl
+
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_4e4197900e2d_6 | e162e5ba85eb5054 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/CallAddbackRuntimeHighDiv.lean | CallAddbackRuntimeHighDiv | 6 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 36 | 3 | [
{
"theorem_name": "n4CallAddbackBeqRuntimeQHatHighDivEvidence.of_parts",
"depth": 1,
"n_commands": 0,
"n_lines": 3,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n rw [n4CallAddbackBeqRuntimeQHatHighDivEvidence_def]\n exact ⟨h_qhat_high, h_high_div⟩"... | [
{
"name": "n4CallAddbackBeqRuntimeQHatHighDivEvidence_def",
"text": "theorem n4CallAddbackBeqRuntimeQHatHighDivEvidence_def {a b : EvmWord} :\n n4CallAddbackBeqRuntimeQHatHighDivEvidence a b =\n (n4CallAddbackBeqQHatHighDivBound a b ∧\n n4CallAddbackBeqHighDivKnuthABound a b) :=\n rfl\n\n",
... | [
{
"name": "n4CallAddbackBeqRuntimeQHatHighDivEvidence.qhatHighDiv",
"fan_in": 5,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 8,
"n_chars": 288,
"n_subproofs": 0,
"n_tactics": 3,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 1,
"n_structural": 1,
"au... | 1 | /-
EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntimeHighDiv
Small N4 call-addback runtime bridge lemmas that keep
CallAddbackRuntime.lean below the file-size guardrail.
-/
import EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntime
namespace EvmAsm.Evm64
namespace EvmWord
/-- High 128/64 quotient used by the n=4 call-addba... | /-
EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntimeHighDiv
Small N4 call-addback runtime bridge lemmas that keep
CallAddbackRuntime.lean below the file-size guardrail.
-/
import EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntime
namespace EvmAsm.Evm64
namespace EvmWord
/-- High 128/64 quotient used by the n=4 call-addba... | @@ -69,6 +69,12 @@
n4CallAddbackBeqHighDivKnuthABound a b) :=
rfl
+theorem n4CallAddbackBeqRuntimeQHatHighDivEvidence_def {a b : EvmWord} :
+ n4CallAddbackBeqRuntimeQHatHighDivEvidence a b =
+ (n4CallAddbackBeqQHatHighDivBound a b ∧
+ n4CallAddbackBeqHighDivKnuthABound a b) :=
+ rfl
+
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_4e4197900e2d_7 | 9d01054b40efaa99 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/CallAddbackRuntimeHighDiv.lean | CallAddbackRuntimeHighDiv | 7 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 36 | 3 | [
{
"theorem_name": "n4CallAddbackBeqRuntimeQHatHighDivEvidence.of_parts",
"depth": 1,
"n_commands": 0,
"n_lines": 3,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n rw [n4CallAddbackBeqRuntimeQHatHighDivEvidence_def]\n exact ⟨h_qhat_high, h_high_div⟩"... | [
{
"name": "n4CallAddbackBeqRuntimeQHatHighDivEvidence_def",
"text": "theorem n4CallAddbackBeqRuntimeQHatHighDivEvidence_def {a b : EvmWord} :\n n4CallAddbackBeqRuntimeQHatHighDivEvidence a b =\n (n4CallAddbackBeqQHatHighDivBound a b ∧\n n4CallAddbackBeqHighDivKnuthABound a b) :=\n rfl\n\n",
... | [
{
"name": "n4CallAddbackBeqRuntimeQHatHighDivEvidence.knuthA",
"fan_in": 5,
"n_deps_direct": 1,
"n_deps_transitive": 1,
"n_lines": 8,
"n_chars": 285,
"n_subproofs": 0,
"n_tactics": 3,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 1,
"n_structural": 1,
"automat... | 1 | /-
EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntimeHighDiv
Small N4 call-addback runtime bridge lemmas that keep
CallAddbackRuntime.lean below the file-size guardrail.
-/
import EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntime
namespace EvmAsm.Evm64
namespace EvmWord
/-- High 128/64 quotient used by the n=4 call-addba... | /-
EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntimeHighDiv
Small N4 call-addback runtime bridge lemmas that keep
CallAddbackRuntime.lean below the file-size guardrail.
-/
import EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntime
namespace EvmAsm.Evm64
namespace EvmWord
/-- High 128/64 quotient used by the n=4 call-addba... | @@ -69,6 +69,12 @@
n4CallAddbackBeqHighDivKnuthABound a b) :=
rfl
+theorem n4CallAddbackBeqRuntimeQHatHighDivEvidence_def {a b : EvmWord} :
+ n4CallAddbackBeqRuntimeQHatHighDivEvidence a b =
+ (n4CallAddbackBeqQHatHighDivBound a b ∧
+ n4CallAddbackBeqHighDivKnuthABound a b) :=
+ rfl
+
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_4e4197900e2d_8 | 371400aacaf495e8 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/CallAddbackRuntimeHighDiv.lean | CallAddbackRuntimeHighDiv | 8 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 36 | 4 | [
{
"theorem_name": "n4CallAddbackBeqQHatHighDivBound.of_le",
"depth": 1,
"n_commands": 0,
"n_lines": 3,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n rwa [n4CallAddbackBeqQHatHighDivBound_def,\n n4CallAddbackBeqHighDivVal_def]",
"n_chars": 84,... | [
{
"name": "n4CallAddbackBeqQHatHighDivBound_def",
"text": "theorem n4CallAddbackBeqQHatHighDivBound_def {a b : EvmWord} :\n n4CallAddbackBeqQHatHighDivBound a b =\n ((n4CallAddbackBeqQHatV4 a b).toNat ≤\n n4CallAddbackBeqHighDivVal a b) :=\n rfl\n\n",
"fan_in": 4,
"n_lines": 7,
"... | [
{
"name": "n4CallAddbackBeqQHatHighDivBound.of_le",
"fan_in": 4,
"n_deps_direct": 2,
"n_deps_transitive": 2,
"n_lines": 11,
"n_chars": 405,
"n_subproofs": 0,
"n_tactics": 3,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 0,
"automation_only":... | 2 | /-
EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntimeHighDiv
Small N4 call-addback runtime bridge lemmas that keep
CallAddbackRuntime.lean below the file-size guardrail.
-/
import EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntime
namespace EvmAsm.Evm64
namespace EvmWord
/-- High 128/64 quotient used by the n=4 call-addba... | /-
EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntimeHighDiv
Small N4 call-addback runtime bridge lemmas that keep
CallAddbackRuntime.lean below the file-size guardrail.
-/
import EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntime
namespace EvmAsm.Evm64
namespace EvmWord
/-- High 128/64 quotient used by the n=4 call-addba... | @@ -69,6 +69,12 @@
(n4CallAddbackBeqB3Prime b).toNat :=
rfl
+theorem n4CallAddbackBeqQHatHighDivBound_def {a b : EvmWord} :
+ n4CallAddbackBeqQHatHighDivBound a b =
+ ((n4CallAddbackBeqQHatV4 a b).toNat ≤
+ n4CallAddbackBeqHighDivVal a b) :=
+ rfl
+
theorem n4CallAddbackBeqHighDivKnuthABo... | {
"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_4e4197900e2d_9 | 0e16afcfe20963b4 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/CallAddbackRuntimeHighDiv.lean | CallAddbackRuntimeHighDiv | 9 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 36 | 7 | [
{
"theorem_name": "n4CallAddbackBeqQHatHighDivBound.of_le",
"depth": 1,
"n_commands": 0,
"n_lines": 3,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n rwa [n4CallAddbackBeqQHatHighDivBound_def,\n n4CallAddbackBeqHighDivVal_def]",
"n_chars": 84,... | [
{
"name": "n4CallAddbackBeqHighDivVal_def",
"text": "theorem n4CallAddbackBeqHighDivVal_def {a b : EvmWord} :\n n4CallAddbackBeqHighDivVal a b =\n ((n4CallAddbackBeqU4 a b).toNat * 2^64 +\n (n4CallAddbackBeqU3 a b).toNat) /\n (n4CallAddbackBeqB3Prime b).toNat :=\n rfl\n\n",
"fan... | [
{
"name": "n4CallAddbackBeqHighDivKnuthABound.of_le",
"fan_in": 4,
"n_deps_direct": 2,
"n_deps_transitive": 2,
"n_lines": 11,
"n_chars": 447,
"n_subproofs": 0,
"n_tactics": 3,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 0,
"automation_only... | 2 | /-
EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntimeHighDiv
Small N4 call-addback runtime bridge lemmas that keep
CallAddbackRuntime.lean below the file-size guardrail.
-/
import EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntime
namespace EvmAsm.Evm64
namespace EvmWord
/-- High 128/64 quotient used by the n=4 call-addba... | /-
EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntimeHighDiv
Small N4 call-addback runtime bridge lemmas that keep
CallAddbackRuntime.lean below the file-size guardrail.
-/
import EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntime
namespace EvmAsm.Evm64
namespace EvmWord
/-- High 128/64 quotient used by the n=4 call-addba... | @@ -62,6 +62,13 @@
n4CallAddbackBeqQHatHighDivBound a b ∧
n4CallAddbackBeqHighDivKnuthABound a b
+theorem n4CallAddbackBeqHighDivVal_def {a b : EvmWord} :
+ n4CallAddbackBeqHighDivVal a b =
+ ((n4CallAddbackBeqU4 a b).toNat * 2^64 +
+ (n4CallAddbackBeqU3 a b).toNat) /
+ (n4CallAddbackB... | {
"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_4e4197900e2d_10 | 712836721ed0b7b3 | lean | lean | github.com/Verified-zkEVM/evm-asm | 7d5875858bc3727250adb6880c8339048365b1b6 | EvmAsm/Evm64/DivMod/Spec/CallAddbackRuntimeHighDiv.lean | CallAddbackRuntimeHighDiv | 10 | lemma_delete | null | null | false | 0.5 | 1 | 1 | false | 0 | inf | 0 | inf | 42 | 36 | 2 | [
{
"theorem_name": "n4CallAddbackBeqHighDivKnuthABound.of_le",
"depth": 1,
"n_commands": 0,
"n_lines": 3,
"is_leaf": true,
"centrality": 0,
"method": "deleted-dep",
"proof_text": " by\n rwa [n4CallAddbackBeqHighDivKnuthABound_def,\n n4CallAddbackBeqHighDivVal_def]",
"n_chars":... | [
{
"name": "n4CallAddbackBeqHighDivKnuthABound_def",
"text": "theorem n4CallAddbackBeqHighDivKnuthABound_def {a b : EvmWord} :\n n4CallAddbackBeqHighDivKnuthABound a b =\n (n4CallAddbackBeqHighDivVal a b ≤\n n4CallAddbackBeqULoNormVal a b / n4CallAddbackBeqBNormVal b + 1) :=\n rfl\n\n",
"... | [
{
"name": "n4CallAddbackBeqRuntimeQHatHighDivEvidence.of_raw_parts",
"fan_in": 3,
"n_deps_direct": 3,
"n_deps_transitive": 7,
"n_lines": 18,
"n_chars": 792,
"n_subproofs": 0,
"n_tactics": 3,
"cyclomatic": 1,
"n_automation": 0,
"n_rewrites": 0,
"n_structural": 0,
"... | 4 | /-
EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntimeHighDiv
Small N4 call-addback runtime bridge lemmas that keep
CallAddbackRuntime.lean below the file-size guardrail.
-/
import EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntime
namespace EvmAsm.Evm64
namespace EvmWord
/-- High 128/64 quotient used by the n=4 call-addba... | /-
EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntimeHighDiv
Small N4 call-addback runtime bridge lemmas that keep
CallAddbackRuntime.lean below the file-size guardrail.
-/
import EvmAsm.Evm64.DivMod.Spec.CallAddbackRuntime
namespace EvmAsm.Evm64
namespace EvmWord
/-- High 128/64 quotient used by the n=4 call-addba... | @@ -75,6 +75,12 @@
n4CallAddbackBeqHighDivVal a b) :=
rfl
+theorem n4CallAddbackBeqHighDivKnuthABound_def {a b : EvmWord} :
+ n4CallAddbackBeqHighDivKnuthABound a b =
+ (n4CallAddbackBeqHighDivVal a b ≤
+ n4CallAddbackBeqULoNormVal a b / n4CallAddbackBeqBNormVal b + 1) :=
+ rfl
+
theorem ... | {
"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... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.