task_id stringlengths 29 29 | repo stringclasses 1
value | proof_assistant stringclasses 1
value | commit_hash stringlengths 40 40 | parent_hash stringlengths 40 40 | commit_message stringlengths 3 561 | file_path stringlengths 8 145 | challenge_type stringclasses 2
values | challenge_file_content stringlengths 0 1.02M | solution_file_content stringlengths 51 1.08M | holes_filled listlengths 0 0 | diff stringlengths 233 1.69M | instructions stringlengths 57 194 | curation_verdict stringclasses 1
value | curation_model stringclasses 2
values | curation_rationale stringlengths 95 745 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
fiat-crypto_3882df9f_3457da23 | fiat-crypto | coq | 3882df9fd45e873bc3187b98a5f57a0bd79892a3 | 652fc80751a0d651b2ce00cfac21f11935deb22b | Allow leaving over shelved goals when debugging cache_term (#1779) | src/Util/Tactics/CacheTerm.v | proof_add | Require Import Crypto.Util.Tactics.EvarNormalize.
Require Import Crypto.Util.Tactics.ClearFree.
Ltac cache_term_with_type_by_gen ty abstract_tac id :=
let id' := fresh id in
let __ := lazymatch goal with
| [ |- ?T ]
=> simple notypeclasses refine (match _ : ty return T with id' => _ end);... | Require Import Crypto.Util.Tactics.EvarNormalize.
Require Import Crypto.Util.Tactics.ClearFree.
Ltac allow_debug_in_cache := constr:(false).
Ltac abstract_tac_with_debug abstract_tac tac arg :=
let ctrue := constr:(true) in
let cfalse := constr:(false) in
let T := lazymatch goal with |- ?T => T end in
let id'... | [] | diff --git a/src/Util/Tactics/CacheTerm.v b/src/Util/Tactics/CacheTerm.v
index 30c1a0528..ac035c3ef 100644
--- a/src/Util/Tactics/CacheTerm.v
+++ b/src/Util/Tactics/CacheTerm.v
@@ -1,12 +1,37 @@
Require Import Crypto.Util.Tactics.EvarNormalize.
Require Import Crypto.Util.Tactics.ClearFree.
-Ltac cache_term_with_typ... | Write or extend the proof(s) in src/Util/Tactics/CacheTerm.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This is a substantive Ltac-body edit introducing a new debugging feature (`abstract_tac_with_debug`) and refactoring existing tactics to support shelving goals during cache_term debugging. The changes modify tactic signatures, add new Ltac definitions with real control flow, and alter proof-body logic in `cache_sig_red... |
fiat-crypto_652fc807_c10e45fb | fiat-crypto | coq | 652fc80751a0d651b2ce00cfac21f11935deb22b | 7c7c435486d302a52d9c2533a0a104f93fbf25bc | Add `typeof!` to `Notations.v` (#1775) | src/Util/Notations.v | proof_add | (** * Reserved Notations *)
Require Export Crypto.Util.FixCoqMistakes.
Require Export Crypto.Util.GlobalSettings.
(** Putting them all together in one file prevents conflicts. Coq's
parser (camlpX) is really bad at conflicting notation levels and
is sometimes really bad at backtracking, too. Not having level... | (** * Reserved Notations *)
Require Export Crypto.Util.FixCoqMistakes.
Require Export Crypto.Util.GlobalSettings.
(** Putting them all together in one file prevents conflicts. Coq's
parser (camlpX) is really bad at conflicting notation levels and
is sometimes really bad at backtracking, too. Not having level... | [] | diff --git a/src/Util/Notations.v b/src/Util/Notations.v
index 384dad1ee..b99ccf35f 100644
--- a/src/Util/Notations.v
+++ b/src/Util/Notations.v
@@ -205,3 +205,5 @@ Reserved Notation "##### x" (at level 9, x at level 9, format "##### x").
Reserved Notation "\ x .. y , t" (at level 200, x binder, y binder, right associ... | Write or extend the proof(s) in src/Util/Notations.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds a substantive `Notation` declaration with real elaboration-shaping content (a tactic-based notation using `ltac:` to compute types at parse time), which is explicitly listed as ACCEPT content even though it's in a Notations file. |
fiat-crypto_3985bfbd_8c5e8d16 | fiat-crypto | coq | 3985bfbd6b0382ece74e6d9cee9639f966cebcda | d839f890b8ac43341bef44d57e8b3a56f861cd77 | Revert "Comment out slow identifiers" | src/AbstractInterpretation/ZRange.v | proof_add | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Util.ListUtil Coq.Lists.List Crypto.Util.ListUtil.FoldBool.
Require Import Crypto.Util.ZRange.
Require Import Crypto.Util.ZRange.Operations.
Require Import Crypto.Util.Option.
Require Import Crypto.Util.OptionList.
Require Import ... | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Util.ListUtil Coq.Lists.List Crypto.Util.ListUtil.FoldBool.
Require Import Crypto.Util.ZRange.
Require Import Crypto.Util.ZRange.Operations.
Require Import Crypto.Util.Option.
Require Import Crypto.Util.OptionList.
Require Import ... | [] | diff --git a/src/AbstractInterpretation/ZRange.v b/src/AbstractInterpretation/ZRange.v
index a2cdff28b..5a4b71c85 100644
--- a/src/AbstractInterpretation/ZRange.v
+++ b/src/AbstractInterpretation/ZRange.v
@@ -681,10 +681,8 @@ Module Compilers.
end
| ident.nat_rect_arrow _ _ as idc
... | Write or extend the proof(s) in src/AbstractInterpretation/ZRange.v. Complete any unfinished proofs or add missing proof content. | accept | claude-sonnet-4-6 | This diff removes comment markers around real identifier cases (`nat_rect_fbb_b`, `nat_rect_fbb_b_b`, `list_rect_fbb_b`, etc.) in a pattern match, changing which identifiers are handled in the proof/definition body. |
fiat-crypto_3985bfbd_fbe7e187 | fiat-crypto | coq | 3985bfbd6b0382ece74e6d9cee9639f966cebcda | d839f890b8ac43341bef44d57e8b3a56f861cd77 | Revert "Comment out slow identifiers" | src/AbstractInterpretation/ZRangeProofs.v | proof_add | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.Classes.Morphisms.
Require Import Coq.Classes.RelationPairs.
Require Import Coq.Relations.Relations.
Require Import Crypto.Util.ZRange.
Require Import Crypto.Util.ZRange.Operations.
Require Import Crypto.Util.ZRange.BasicLemmas.
Requ... | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.Classes.Morphisms.
Require Import Coq.Classes.RelationPairs.
Require Import Coq.Relations.Relations.
Require Import Crypto.Util.ZRange.
Require Import Crypto.Util.ZRange.Operations.
Require Import Crypto.Util.ZRange.BasicLemmas.
Requ... | [] | diff --git a/src/AbstractInterpretation/ZRangeProofs.v b/src/AbstractInterpretation/ZRangeProofs.v
index a109f2472..cb527df7f 100644
--- a/src/AbstractInterpretation/ZRangeProofs.v
+++ b/src/AbstractInterpretation/ZRangeProofs.v
@@ -860,7 +860,6 @@ Module Compilers.
*)
destruct idc.
... | Write or extend the proof(s) in src/AbstractInterpretation/ZRangeProofs.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff uncomments a large block of proof tactics (lines 863–1066) that were previously commented out, making them active again in the proof. This is a substantive change to proof-body content: the tactic block between `all: try (apply Bool.diff_true_false ...)` and the final `Qed` is being restored, which affects ho... |
fiat-crypto_3985bfbd_99e0106b | fiat-crypto | coq | 3985bfbd6b0382ece74e6d9cee9639f966cebcda | d839f890b8ac43341bef44d57e8b3a56f861cd77 | Revert "Comment out slow identifiers" | src/Assembly/Equivalence.v | proof_add | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Coq.NArith.NArith.
Require Import Crypto.Assembly.Syntax.
Require Import Crypto.Assembly.Parse.
Require Import Crypto.Assembly.Symbolic.
Require Import Crypto.Util.Strings.Parse.Common.
Require Import Cryp... | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Coq.NArith.NArith.
Require Import Crypto.Assembly.Syntax.
Require Import Crypto.Assembly.Parse.
Require Import Crypto.Assembly.Symbolic.
Require Import Crypto.Util.Strings.Parse.Common.
Require Import Cryp... | [] | diff --git a/src/Assembly/Equivalence.v b/src/Assembly/Equivalence.v
index 07f93c880..ef3ba41cd 100644
--- a/src/Assembly/Equivalence.v
+++ b/src/Assembly/Equivalence.v
@@ -1187,7 +1187,6 @@ Proof.
| ident.eager_list_rect _ _
| ident.list_rect_arrow _ _ _
| ident.eager_list_rect_arrow _... | Write or extend the proof(s) in src/Assembly/Equivalence.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff uncomments previously-commented-out pattern-match cases in a proof body, which is a substantive proof-tactic change that affects the proof's structure and reasoning (even if semantically equivalent to the prior commented state); it falls under the ACCEPT category of proof-body modifications. |
fiat-crypto_3985bfbd_886d555e | fiat-crypto | coq | 3985bfbd6b0382ece74e6d9cee9639f966cebcda | d839f890b8ac43341bef44d57e8b3a56f861cd77 | Revert "Comment out slow identifiers" | src/Language/APINotations.v | proof_add | Require Import Coq.ZArith.ZArith.
Require Import Coq.FSets.FMapPositive.
Require Import Coq.Bool.Bool.
Require Import Coq.Classes.Morphisms.
Require Import Coq.Relations.Relation_Definitions.
Require Import Ltac2.Ltac2.
Require Import Ltac2.Printf.
Require Import Crypto.Language.PreExtra.
Require Import Rewriter.Langua... | Require Import Coq.ZArith.ZArith.
Require Import Coq.FSets.FMapPositive.
Require Import Coq.Bool.Bool.
Require Import Coq.Classes.Morphisms.
Require Import Coq.Relations.Relation_Definitions.
Require Import Ltac2.Ltac2.
Require Import Ltac2.Printf.
Require Import Crypto.Language.PreExtra.
Require Import Rewriter.Langua... | [] | diff --git a/src/Language/APINotations.v b/src/Language/APINotations.v
index cd6472a76..9917c0e2e 100644
--- a/src/Language/APINotations.v
+++ b/src/Language/APINotations.v
@@ -81,21 +81,17 @@ Module Compilers.
Global Arguments ident_nat_rect_arrow {_ _} : assert.
Global Arguments ident_eager_nat_rect {_} : asser... | Write or extend the proof(s) in src/Language/APINotations.v. Complete any unfinished proofs or add missing proof content. | accept | claude-sonnet-4-6 | This diff uncomments `Global Arguments` declarations and `Notation` definitions, which are elaboration-shaping declarations that affect implicit argument resolution and parsing, making them substantive changes per the accept rules. |
fiat-crypto_3961c6aa_bcde8ba1 | fiat-crypto | coq | 3961c6aa28ed0f61ae85e8846f418d8662b99e31 | 81220a64ad229b87382430d930b0d3976bfd4fef | More fine-grained bounds analysis (#1769) | src/AbstractInterpretation/ZRange.v | proof_add | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Util.ListUtil Coq.Lists.List Crypto.Util.ListUtil.FoldBool.
Require Import Crypto.Util.ZRange.
Require Import Crypto.Util.ZRange.Operations.
Require Import Crypto.Util.Option.
Require Import Crypto.Util.OptionList.
Require Import ... | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Util.ListUtil Coq.Lists.List Crypto.Util.ListUtil.FoldBool.
Require Import Crypto.Util.ZRange.
Require Import Crypto.Util.ZRange.Operations.
Require Import Crypto.Util.Option.
Require Import Crypto.Util.OptionList.
Require Import ... | [] | diff --git a/src/AbstractInterpretation/ZRange.v b/src/AbstractInterpretation/ZRange.v
index 200ede3e7..7e61de8c8 100644
--- a/src/AbstractInterpretation/ZRange.v
+++ b/src/AbstractInterpretation/ZRange.v
@@ -282,6 +282,29 @@ Module Compilers.
Lemma interp_beq_lb {t x y} : x = y -> @interp_beq t t x y = true... | Write or extend the proof(s) in src/AbstractInterpretation/ZRange.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff introduces a new `union` fixpoint definition for computing bounds over interpreted types and reorganizes existing case patterns in bounds analysis, along with changing how certain operations (bool_rect variants) compute their bounds. These are substantive changes to proof engineering logic and definitions in ... |
fiat-crypto_3961c6aa_cc268700 | fiat-crypto | coq | 3961c6aa28ed0f61ae85e8846f418d8662b99e31 | 81220a64ad229b87382430d930b0d3976bfd4fef | More fine-grained bounds analysis (#1769) | src/AbstractInterpretation/ZRangeProofs.v | proof_add | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.Classes.Morphisms.
Require Import Coq.Classes.RelationPairs.
Require Import Coq.Relations.Relations.
Require Import Crypto.Util.ZRange.
Require Import Crypto.Util.ZRange.Operations.
Require Import Crypto.Util.ZRange.BasicLemmas.
Requ... | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.Classes.Morphisms.
Require Import Coq.Classes.RelationPairs.
Require Import Coq.Relations.Relations.
Require Import Crypto.Util.ZRange.
Require Import Crypto.Util.ZRange.Operations.
Require Import Crypto.Util.ZRange.BasicLemmas.
Requ... | [] | diff --git a/src/AbstractInterpretation/ZRangeProofs.v b/src/AbstractInterpretation/ZRangeProofs.v
index f09333f70..aad9dd774 100644
--- a/src/AbstractInterpretation/ZRangeProofs.v
+++ b/src/AbstractInterpretation/ZRangeProofs.v
@@ -41,6 +41,7 @@ Require Import Crypto.Util.Tactics.SpecializeBy.
Require Import Crypto.U... | Write or extend the proof(s) in src/AbstractInterpretation/ZRangeProofs.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff substantively adds three new lemmas (`tighter_than_union`, `is_bounded_by_union_l`, `is_bounded_by_union_r`) with complete proof bodies, extends the tactic automation with new match cases that apply these lemmas, and adds a new `cbv` unfolding tactic; all are real proof engineering changes to the abstract int... |
fiat-crypto_81220a64_a97d1969 | fiat-crypto | coq | 81220a64ad229b87382430d930b0d3976bfd4fef | fc103507f8e36993abc1e3abd709997ec4eefa3e | Add `Util.Option.bind2` (#1768) | src/Util/ListUtil.v | proof_add | Require Import Coq.Lists.List.
Require Import Coq.Lists.SetoidList.
Require Import Coq.micromega.Lia.
Require Import Coq.Arith.Peano_dec.
Require Import Coq.ZArith.ZArith.
Require Import Coq.Arith.Arith.
Require Import Coq.Classes.Morphisms.
Require Import Crypto.Util.NatUtil.
Require Import Crypto.Util.Pointed.
Requir... | Require Import Coq.Lists.List.
Require Import Coq.Lists.SetoidList.
Require Import Coq.micromega.Lia.
Require Import Coq.Arith.Peano_dec.
Require Import Coq.ZArith.ZArith.
Require Import Coq.Arith.Arith.
Require Import Coq.Classes.Morphisms.
Require Import Crypto.Util.NatUtil.
Require Import Crypto.Util.Pointed.
Requir... | [] | diff --git a/src/Util/ListUtil.v b/src/Util/ListUtil.v
index 3159a193a..dc79bac89 100644
--- a/src/Util/ListUtil.v
+++ b/src/Util/ListUtil.v
@@ -337,6 +337,19 @@ Module Export List.
(** new operations *)
Definition enumerate {A} (ls : list A) : list (nat * A)
:= combine (seq 0 (length ls)) ls.
+
+ Section m... | Write or extend the proof(s) in src/Util/ListUtil.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff moves the `map2` definition from module-level scope into the `List` module (ACCEPT: structural/organizational change affecting definitions), fixes trailing whitespace (REJECT-eligible but minor), and maintains all proof content intact; the substantive change is the relocation of a real definition into an expor... |
fiat-crypto_81220a64_2044abd1 | fiat-crypto | coq | 81220a64ad229b87382430d930b0d3976bfd4fef | fc103507f8e36993abc1e3abd709997ec4eefa3e | Add `Util.Option.bind2` (#1768) | src/Util/Option.v | proof_add | Require Import Coq.Classes.Morphisms.
Require Import Coq.Relations.Relation_Definitions.
Require Import Crypto.Util.Tactics.BreakMatch.
Require Import Crypto.Util.Tactics.DestructHead.
Require Import Crypto.Util.Notations.
Scheme Equality for option.
Arguments option_beq {_} _ _ _.
Definition option_beq_hetero {A B} ... | Require Import Coq.Classes.Morphisms.
Require Import Coq.Relations.Relation_Definitions.
Require Import Crypto.Util.Tactics.BreakMatch.
Require Import Crypto.Util.Tactics.DestructHead.
Require Import Crypto.Util.Notations.
Scheme Equality for option.
Arguments option_beq {_} _ _ _.
Definition option_beq_hetero {A B} ... | [] | diff --git a/src/Util/Option.v b/src/Util/Option.v
index ad296d6c5..7e0707d1b 100644
--- a/src/Util/Option.v
+++ b/src/Util/Option.v
@@ -29,12 +29,29 @@ Definition lift {A} (x : option (option A)) : option (option A)
Notation map := option_map (only parsing). (* so we have [Option.map] *)
+Definition map2 {A B C} ... | Write or extend the proof(s) in src/Util/Option.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds two new substantive definitions (`map2` and `bind2`) with real function bodies and a `Global Arguments` directive that shapes elaboration; while it includes a commented-out notation (which is auxiliary), the core changes are meaningful proof/specification engineering that belongs in an evaluation dataset... |
fiat-crypto_fc103507_4f456e82 | fiat-crypto | coq | fc103507f8e36993abc1e3abd709997ec4eefa3e | 2cd94bb95c579aec777d961e3f3e1fd15c2083b4 | Add support for applying bool functions to zrange (#1770) | src/Util/ZRange/Operations.v | proof_add | Require Import Coq.ZArith.ZArith.
Require Import Crypto.Util.ZRange.
Require Import Crypto.Util.ZUtil.Definitions.
Require Import Crypto.Util.Notations.
Module ZRange.
Local Open Scope Z_scope.
Local Open Scope zrange_scope.
Local Notation eta v := r[ lower v ~> upper v ].
Definition flip (v : zrange) : zra... | Require Import Coq.ZArith.ZArith.
Require Import Crypto.Util.ZRange.
Require Import Crypto.Util.Option.
Require Import Crypto.Util.ZUtil.Definitions.
Require Import Crypto.Util.Notations.
Module ZRange.
Local Open Scope Z_scope.
Local Open Scope zrange_scope.
Local Notation eta v := r[ lower v ~> upper v ].
... | [] | diff --git a/src/Util/ZRange/Operations.v b/src/Util/ZRange/Operations.v
index fb719529c..1c21f74f0 100644
--- a/src/Util/ZRange/Operations.v
+++ b/src/Util/ZRange/Operations.v
@@ -1,5 +1,6 @@
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Util.ZRange.
+Require Import Crypto.Util.Option.
Require Import Cryp... | Write or extend the proof(s) in src/Util/ZRange/Operations.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds new substantive definitions (a `ToConstant` module with helper functions for applying bool/comparison functions to zrange corners) with no proof bodies to complete, and adds a necessary import; the definitions themselves are real proof engineering artifacts, not generated code or mechanical tooling. |
fiat-crypto_2cd94bb9_e3f7ac1c | fiat-crypto | coq | 2cd94bb95c579aec777d961e3f3e1fd15c2083b4 | 4d9fadc163b8a09d75a6836e08f52f051fa489d4 | Update ZRangeProofs (#1767) | src/AbstractInterpretation/ZRangeProofs.v | spec_change | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.Classes.Morphisms.
Require Import Coq.Classes.RelationPairs.
Require Import Coq.Relations.Relations.
Require Import Crypto.Util.ZRange.
Require Import Crypto.Util.ZRange.Operations.
Require Import Crypto.Util.ZRange.BasicLemmas.
Requ... | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.Classes.Morphisms.
Require Import Coq.Classes.RelationPairs.
Require Import Coq.Relations.Relations.
Require Import Crypto.Util.ZRange.
Require Import Crypto.Util.ZRange.Operations.
Require Import Crypto.Util.ZRange.BasicLemmas.
Requ... | [] | diff --git a/src/AbstractInterpretation/ZRangeProofs.v b/src/AbstractInterpretation/ZRangeProofs.v
index 5f04e08a1..f09333f70 100644
--- a/src/AbstractInterpretation/ZRangeProofs.v
+++ b/src/AbstractInterpretation/ZRangeProofs.v
@@ -44,9 +44,12 @@ Require Import Crypto.Util.Tactics.PrintGoal.
Require Import Crypto.Lan... | The statement of `interp_related` in src/AbstractInterpretation/ZRangeProofs.v was modified. Adapt the proof to the new statement. | accept | claude-haiku-4-5 | This is a substantive proof engineering change: the statement of `interp_related` is modified (adding a commented-out constraint), a new lemma `interp_related_and_Proper` is added with a real proof body using new tactics and control flow, and the proof tactic structure of `interp_related` is edited (adding `try solve` ... |
fiat-crypto_4d9fadc1_632edb81 | fiat-crypto | coq | 4d9fadc163b8a09d75a6836e08f52f051fa489d4 | 7a0144ef6b5796e4c10223dcb629b298a08dedd4 | Add some more ZRangeProofs (#1766) | src/AbstractInterpretation/ZRangeProofs.v | proof_add | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.Classes.Morphisms.
Require Import Coq.Classes.RelationPairs.
Require Import Coq.Relations.Relations.
Require Import Crypto.Util.ZRange.
Require Import Crypto.Util.ZRange.Operations.
Require Import Crypto.Util.ZRange.BasicLemmas.
Requ... | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.Classes.Morphisms.
Require Import Coq.Classes.RelationPairs.
Require Import Coq.Relations.Relations.
Require Import Crypto.Util.ZRange.
Require Import Crypto.Util.ZRange.Operations.
Require Import Crypto.Util.ZRange.BasicLemmas.
Requ... | [] | diff --git a/src/AbstractInterpretation/ZRangeProofs.v b/src/AbstractInterpretation/ZRangeProofs.v
index 0a6cca2ef..5f04e08a1 100644
--- a/src/AbstractInterpretation/ZRangeProofs.v
+++ b/src/AbstractInterpretation/ZRangeProofs.v
@@ -65,11 +65,29 @@ Module Compilers.
-> type.related_hetero (fun t x v => ZRang... | Write or extend the proof(s) in src/AbstractInterpretation/ZRangeProofs.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds three substantive new lemmas (`is_bounded_by_impl_related_hetero_and_Proper`, `is_bounded_by_impl_eqv_refl`, `is_bounded_by_impl_eqv_refl1`, `is_bounded_by_impl_eqv_refl2`) with complete proof bodies and refactors an existing proof to use the newly introduced lemmas; these are real proof-engineering chan... |
fiat-crypto_212b294f_af93ab05 | fiat-crypto | coq | 212b294fbcd426b023f7ab58039664fd1ab37608 | 47100d4180bf15e39da6f66a76a6ef7d9fc1132a | Factor ZRange Proper proof (#1764) | src/AbstractInterpretation/Wf.v | proof_add | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.Classes.Morphisms.
Require Import Coq.Classes.RelationPairs.
Require Import Coq.Relations.Relations.
Require Import Crypto.Util.ZRange.
Require Import Crypto.Util.Sum.
Require Import Crypto.Util.LetIn.
Require Import Crypto.Util.Prod... | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.Classes.Morphisms.
Require Import Coq.Classes.RelationPairs.
Require Import Coq.Relations.Relations.
Require Import Crypto.Util.ZRange.
Require Import Crypto.Util.Sum.
Require Import Crypto.Util.LetIn.
Require Import Crypto.Util.Prod... | [] | diff --git a/src/AbstractInterpretation/Wf.v b/src/AbstractInterpretation/Wf.v
index 3f3cc7010..fb64ae8d4 100644
--- a/src/AbstractInterpretation/Wf.v
+++ b/src/AbstractInterpretation/Wf.v
@@ -25,7 +25,9 @@ Require Import Rewriter.Language.Inversion.
Require Import Crypto.Language.InversionExtra.
Require Import Rewri... | Write or extend the proof(s) in src/AbstractInterpretation/Wf.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff removes an inline proof body of 37 lines and replaces it with a single-line tactic call to `apply ZRange.ident.option.interp_Proper`, which is a substantive proof-body simplification/refactoring that leverages a factored lemma from an imported module—this is real proof engineering and should be accepted. |
fiat-crypto_212b294f_56d18e8a | fiat-crypto | coq | 212b294fbcd426b023f7ab58039664fd1ab37608 | 47100d4180bf15e39da6f66a76a6ef7d9fc1132a | Factor ZRange Proper proof (#1764) | src/AbstractInterpretation/ZRangeCommonProofs.v | proof_add | (* Proofs shared by Wf and Proofs *)
Require Import Coq.Classes.Morphisms.
Require Import Coq.Relations.Relations.
Require Import Crypto.Util.ZRange.
Require Import Crypto.Util.Option.
Require Import Crypto.Util.ListUtil.
Require Import Crypto.Util.ListUtil.FoldBool.
Require Import Crypto.Util.NatUtil.
Require Import C... | [] | diff --git a/src/AbstractInterpretation/ZRangeCommonProofs.v b/src/AbstractInterpretation/ZRangeCommonProofs.v
new file mode 100644
index 000000000..1a6992810
--- /dev/null
+++ b/src/AbstractInterpretation/ZRangeCommonProofs.v
@@ -0,0 +1,63 @@
+(* Proofs shared by Wf and Proofs *)
+Require Import Coq.Classes.Morphisms.... | Write the proof content for the declarations in src/AbstractInterpretation/ZRangeCommonProofs.v. | accept | claude-haiku-4-5 | This is a newly created file containing substantive proof engineering: a non-trivial `Proper` instance proof for `ZRange.ident.option.interp` with a substantial tactic body involving case analysis, induction principles, and lemma applications—clearly accepts as a real proof definition that was factored out from other m... | |
fiat-crypto_1e573899_db14354c | fiat-crypto | coq | 1e57389912662aa2f793347a69603f7ba868efe4 | 4f20f8d25bdc3c0e4436be75b9a3ef4c70ef5c6e | Future-proof CompilersTestCases (#1762) | src/AbstractInterpretation/ZRangeProofs.v | proof_add | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.Classes.Morphisms.
Require Import Coq.Classes.RelationPairs.
Require Import Coq.Relations.Relations.
Require Import Crypto.Util.ZRange.
Require Import Crypto.Util.ZRange.Operations.
Require Import Crypto.Util.ZRange.BasicLemmas.
Requ... | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.Classes.Morphisms.
Require Import Coq.Classes.RelationPairs.
Require Import Coq.Relations.Relations.
Require Import Crypto.Util.ZRange.
Require Import Crypto.Util.ZRange.Operations.
Require Import Crypto.Util.ZRange.BasicLemmas.
Requ... | [] | diff --git a/src/AbstractInterpretation/ZRangeProofs.v b/src/AbstractInterpretation/ZRangeProofs.v
index 3b34786c6..0a6cca2ef 100644
--- a/src/AbstractInterpretation/ZRangeProofs.v
+++ b/src/AbstractInterpretation/ZRangeProofs.v
@@ -64,6 +64,23 @@ Module Compilers.
: ZRange.type.option.is_bounded_by x v = true... | Write or extend the proof(s) in src/AbstractInterpretation/ZRangeProofs.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff adds two substantive new lemmas (`is_bounded_by_impl_eqv_refl` and `andb_bool_for_each_lhs_of_arrow_is_bounded_by_impl_and_for_each_lhs_of_arrow_eqv_refl`) with complete proof bodies to a non-generated hand-written proof file, plus a minor whitespace cleanup; this constitutes real proof engineering work and sh... |
fiat-crypto_4f20f8d2_6a78eae5 | fiat-crypto | coq | 4f20f8d25bdc3c0e4436be75b9a3ef4c70ef5c6e | 7acc8f4073795315ab32e7ce50c3610124b35074 | adapt to Coq/Coq#18164 (#1760) | src/Util/NatUtil.v | spec_change | Require Coq.Logic.Eqdep_dec.
Require Import Coq.NArith.NArith.
Require Import Coq.Arith.Arith.
Require Import Coq.Classes.Morphisms.
Require Import Coq.Relations.Relation_Definitions.
Require Import Coq.micromega.Lia.
Import Nat.
Scheme Equality for nat.
Create HintDb natsimplify discriminated.
Global Hint Resolve m... | Require Coq.Logic.Eqdep_dec.
Require Import Coq.NArith.NArith.
Require Import Coq.Arith.Arith.
Require Import Coq.Classes.Morphisms.
Require Import Coq.Relations.Relation_Definitions.
Require Import Coq.micromega.Lia.
Import Nat.
Scheme Equality for nat.
Create HintDb natsimplify discriminated.
Global Hint Resolve m... | [] | diff --git a/src/Util/NatUtil.v b/src/Util/NatUtil.v
index c7d06d5f4..6e9347cea 100644
--- a/src/Util/NatUtil.v
+++ b/src/Util/NatUtil.v
@@ -1,7 +1,6 @@
Require Coq.Logic.Eqdep_dec.
Require Import Coq.NArith.NArith.
Require Import Coq.Arith.Arith.
-Require Import Coq.Numbers.Natural.Peano.NPeano.
Require Import Coq... | The statement of `beq_nat_eq_nat_dec` in src/Util/NatUtil.v was modified. Adapt the proof to the new statement. | accept | claude-haiku-4-5 | This diff primarily adapts to standard library API changes (NPeano deprecation, `Min/Max` → `Nat` module migration, `EqNat.beq_nat` → `Nat.eqb`), which are identifier renames inside proof bodies and Hint declarations — a straightforward API migration. The proof logic is unchanged (only tactic arguments and function nam... |
fiat-crypto_5450a106_d1e101c9 | fiat-crypto | coq | 5450a106f9864a7aebe894e0a9d4b2184fcf66ca | a0085a892cd18edf97de79ee203523d1520dca1d | Provide standalone binaries (#1730) | src/Bedrock/Standalone/StandaloneHaskellMain.v | proof_add | Require Import Coq.Lists.List.
Require Import Coq.Strings.String.
Require Import Crypto.CLI.
Require Export Crypto.StandaloneHaskellMain.
Require Import Crypto.Bedrock.Field.Stringification.Stringification.
Import ListNotations.
Local Open Scope string_scope.
Local Open Scope list_scope.
Module Bedrock2First.
(** N.... | Require Import Coq.Lists.List.
Require Import Coq.Strings.String.
Require Import Crypto.CLI.
Require Export Crypto.StandaloneHaskellMain.
Require Import Crypto.Bedrock.Field.Stringification.Stringification.
Import ListNotations.
Local Open Scope string_scope.
Local Open Scope list_scope.
Module Bedrock2First.
(** N.... | [] | diff --git a/src/Bedrock/Standalone/StandaloneHaskellMain.v b/src/Bedrock/Standalone/StandaloneHaskellMain.v
index 6ec4354f9..521ad6d2c 100644
--- a/src/Bedrock/Standalone/StandaloneHaskellMain.v
+++ b/src/Bedrock/Standalone/StandaloneHaskellMain.v
@@ -43,6 +43,11 @@ Module Bedrock2First.
Definition main : IO_unit... | Write or extend the proof(s) in src/Bedrock/Standalone/StandaloneHaskellMain.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds substantive new definitions (`main` in two new `FiatCrypto` modules) that wire pipeline infrastructure, which qualifies as real proof engineering (small boilerplate definitions linking extraction components), but the additions are mechanically straightforward duplications of the existing `BaseConversion`... |
fiat-crypto_5450a106_6ebee09a | fiat-crypto | coq | 5450a106f9864a7aebe894e0a9d4b2184fcf66ca | a0085a892cd18edf97de79ee203523d1520dca1d | Provide standalone binaries (#1730) | src/Bedrock/Standalone/StandaloneOCamlMain.v | proof_add | Require Import Coq.Lists.List.
Require Import Coq.Strings.String.
Require Import Crypto.CLI.
Require Export Crypto.StandaloneOCamlMain.
Require Import Crypto.Bedrock.Field.Stringification.Stringification.
Import ListNotations.
Local Open Scope string_scope.
Local Open Scope list_scope.
(** Needed to work around COQBUG... | Require Import Coq.Lists.List.
Require Import Coq.Strings.String.
Require Import Crypto.CLI.
Require Export Crypto.StandaloneOCamlMain.
Require Import Crypto.Bedrock.Field.Stringification.Stringification.
Import ListNotations.
Local Open Scope string_scope.
Local Open Scope list_scope.
(** Needed to work around COQBUG... | [] | diff --git a/src/Bedrock/Standalone/StandaloneOCamlMain.v b/src/Bedrock/Standalone/StandaloneOCamlMain.v
index 2c5584c95..b8d603393 100644
--- a/src/Bedrock/Standalone/StandaloneOCamlMain.v
+++ b/src/Bedrock/Standalone/StandaloneOCamlMain.v
@@ -46,6 +46,11 @@ Module Bedrock2First.
Definition main : unit
:= ... | Write or extend the proof(s) in src/Bedrock/Standalone/StandaloneOCamlMain.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds new module definitions with real proof content (two `FiatCrypto` modules containing `main` definitions that call `main_gen`), which constitutes substantive definition additions to a non-generated file in `src/Bedrock/Standalone/`. While the changes are relatively small and mechanical, they introduce new ... |
fiat-crypto_5450a106_01f2cf88 | fiat-crypto | coq | 5450a106f9864a7aebe894e0a9d4b2184fcf66ca | a0085a892cd18edf97de79ee203523d1520dca1d | Provide standalone binaries (#1730) | src/CLI.v | proof_add | Require Import Coq.QArith.QArith.
Require Import Coq.ZArith.ZArith.
Require Import Coq.Strings.Ascii.
Require Import Coq.Lists.List.
Require Import Coq.Strings.String.
Require Import Coq.Strings.HexString.
Require Crypto.Util.Strings.String.
Require Import Crypto.Assembly.Syntax.
Require Import Crypto.Assembly.Parse.
R... | Require Import Coq.QArith.QArith.
Require Import Coq.ZArith.ZArith.
Require Import Coq.Strings.Ascii.
Require Import Coq.Lists.List.
Require Import Coq.Strings.String.
Require Import Coq.Strings.HexString.
Require Crypto.Util.Strings.String.
Require Import Crypto.Assembly.Syntax.
Require Import Crypto.Assembly.Parse.
R... | [] | diff --git a/src/CLI.v b/src/CLI.v
index 36cbd0593..2e9d71f95 100644
--- a/src/CLI.v
+++ b/src/CLI.v
@@ -17,6 +17,7 @@ Require Import Crypto.Util.Strings.NamingConventions.
Require Import Crypto.Util.Option.
Require Import Crypto.Util.OptionList.
Require Import Crypto.Util.Strings.Show.
+Require Import Crypto.Util.S... | Write or extend the proof(s) in src/CLI.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds substantive new definitions and proof content: a new `SynthesisKind` variant type with derived typeclass instances, parsing infrastructure (`parse_SynthesisKind`, `parse_SynthesisKind_list`, `parse_SynthesisKind_act`), a new argument spec (`synthesis_kind_spec`), and a complete new module (`FiatCrypto`) ... |
fiat-crypto_5450a106_f67e4354 | fiat-crypto | coq | 5450a106f9864a7aebe894e0a9d4b2184fcf66ca | a0085a892cd18edf97de79ee203523d1520dca1d | Provide standalone binaries (#1730) | src/StandaloneDebuggingExamples.v | proof_add | Require Import Coq.Lists.List.
Require Import Coq.Strings.Ascii.
Require Import Coq.Strings.String.
Require Crypto.Util.Strings.String.
Require Import Crypto.CLI.
Require Import Crypto.Util.Notations.
Require Import Crypto.StandaloneOCamlMain.
Import ListNotations. Local Open Scope string_scope.
Module debugging_no_as... | Require Import Coq.Lists.List.
Require Import Coq.Strings.Ascii.
Require Import Coq.Strings.String.
Require Crypto.Util.Strings.String.
Require Import Crypto.CLI.
Require Import Crypto.Util.Notations.
Require Import Crypto.StandaloneOCamlMain.
Import ListNotations. Local Open Scope string_scope.
Module debugging_no_as... | [] | diff --git a/src/StandaloneDebuggingExamples.v b/src/StandaloneDebuggingExamples.v
index 0cabb7f19..4016d40f1 100644
--- a/src/StandaloneDebuggingExamples.v
+++ b/src/StandaloneDebuggingExamples.v
@@ -42,13 +42,13 @@ Module debugging_no_asm.
;" mov [ rsp + 0x58 ], r14; saving to stack"
])) by admit.... | Write or extend the proof(s) in src/StandaloneDebuggingExamples.v. Complete any unfinished proofs or add missing proof content. | accept | claude-sonnet-4-6 | The diff changes proof-body tactics by replacing `string_dec _ _` with `(_ =? _)%string` in multiple `set` calls within proof scripts, which is a substantive tactic-body change (API migration from decidable equality to boolean equality). |
fiat-crypto_5450a106_1d8751f7 | fiat-crypto | coq | 5450a106f9864a7aebe894e0a9d4b2184fcf66ca | a0085a892cd18edf97de79ee203523d1520dca1d | Provide standalone binaries (#1730) | src/StandaloneHaskellMain.v | proof_add | Require Export Coq.extraction.Extraction.
Require Export Coq.extraction.ExtrHaskellBasic.
Require Export Coq.extraction.ExtrHaskellString.
Require Import Coq.Lists.List.
Require Import Coq.Strings.String.
Require Crypto.Util.Strings.String.
Require Import Crypto.CLI.
Require Import Crypto.Util.Notations.
Import ListNot... | Require Export Coq.extraction.Extraction.
Require Export Coq.extraction.ExtrHaskellBasic.
Require Export Coq.extraction.ExtrHaskellString.
Require Import Coq.Lists.List.
Require Import Coq.Strings.String.
Require Crypto.Util.Strings.String.
Require Import Crypto.CLI.
Require Import Crypto.Util.Notations.
Import ListNot... | [] | diff --git a/src/StandaloneHaskellMain.v b/src/StandaloneHaskellMain.v
index b6e2923a9..ac897510e 100644
--- a/src/StandaloneHaskellMain.v
+++ b/src/StandaloneHaskellMain.v
@@ -144,3 +144,8 @@ Module BaseConversion.
Definition main : IO_unit
:= main_gen ForExtraction.BaseConversion.PipelineMain.
End BaseConver... | Write or extend the proof(s) in src/StandaloneHaskellMain.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds a new module `FiatCrypto` with a substantive definition (`main`) that wires a pipeline component, which is a real definition change (not mere whitespace or tooling directives), making it acceptable under the "small boilerplate `Definition`s wiring pipelines" criterion despite being in a build/extraction ... |
fiat-crypto_5450a106_56c34011 | fiat-crypto | coq | 5450a106f9864a7aebe894e0a9d4b2184fcf66ca | a0085a892cd18edf97de79ee203523d1520dca1d | Provide standalone binaries (#1730) | src/Util/Arg.v | proof_add | (** Coq version of OCaml's Arg module *)
Require Import Coq.Lists.List.
Require Import Coq.Strings.Ascii.
Require Import Coq.Strings.String.
Require Import Coq.ZArith.ZArith.
Require Import Coq.Strings.OctalString.
Require Import Coq.Strings.HexString.
Require Import Coq.Strings.BinaryString.
Require Import Crypto.Util... | (** Coq version of OCaml's Arg module *)
Require Import Coq.Lists.List.
Require Import Coq.Strings.Ascii.
Require Import Coq.Strings.String.
Require Import Coq.ZArith.ZArith.
Require Import Coq.Strings.OctalString.
Require Import Coq.Strings.HexString.
Require Import Coq.Strings.BinaryString.
Require Import Crypto.Util... | [] | diff --git a/src/Util/Arg.v b/src/Util/Arg.v
index f61be6b28..3e9ea65ef 100644
--- a/src/Util/Arg.v
+++ b/src/Util/Arg.v
@@ -548,15 +548,24 @@ Definition default_named_results {ls}
| (_, s, _) :: ss => @default_named_results' _ ss default_named_result
end.
-Definition parse_argv (argv : list string) (arg_... | Write or extend the proof(s) in src/Util/Arg.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff is substantive proof engineering—it adds a new typeclass `prog_name_countT` with instance resolution, modifies the signature and proof body of `parse_argv` (adding a typeclass parameter and changing its implementation logic from pattern matching to length comparison), and adds an `Ltac` tactic and hint for el... |
fiat-crypto_f157471f_1a44f851 | fiat-crypto | coq | f157471f455b63e9b66368d9aa9142b819bfe3ce | 8c81ddfd05bc2f95d7924ab6f6fb8114fbc09efd | Pipe split T through Bedrock code | src/Bedrock/End2End/X25519/EdwardsXYZT.v | proof_add | Require Import bedrock2.Array.
Require Import bedrock2.FE310CSemantics.
Require Import bedrock2.Loops.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import bedrock2.NotationsCustomEntry.
Require Import bedrock2.ProgramLogic.
Require Import bedrock2.Scalars.
Require Import ... | Require Import bedrock2.Array.
Require Import bedrock2.FE310CSemantics.
Require Import bedrock2.Loops.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import bedrock2.NotationsCustomEntry.
Require Import bedrock2.ProgramLogic.
Require Import bedrock2.Scalars.
Require Import ... | [] | diff --git a/src/Bedrock/End2End/X25519/EdwardsXYZT.v b/src/Bedrock/End2End/X25519/EdwardsXYZT.v
index 4ee85fe98..67e865b9d 100644
--- a/src/Bedrock/End2End/X25519/EdwardsXYZT.v
+++ b/src/Bedrock/End2End/X25519/EdwardsXYZT.v
@@ -51,7 +51,7 @@ Local Existing Instance field_parameters.
Local Instance frep25519 : Field.F... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/EdwardsXYZT.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains substantive proof engineering changes including refactoring function signatures (splitting T into Ta/Tb across multiple functions), updating corresponding specs and implementations, and modifying proof bodies to track the new split variables; these are real definition/statement/proof-body changes ref... |
fiat-crypto_8c81ddfd_372d5a5b | fiat-crypto | coq | 8c81ddfd05bc2f95d7924ab6f6fb8114fbc09efd | 9e666e0e05796a1e7c40ee54923b58db8afbacb9 | Extend split T to precomputed addition | src/Curves/Edwards/XYZT/Precomputed.v | proof_add | Require Import Crypto.Util.Decidable Crypto.Util.Notations Crypto.Algebra.Hierarchy.
Require Import Crypto.Spec.CompleteEdwardsCurve Crypto.Curves.Edwards.XYZT.Basic.
Require Import Coq.Classes.Morphisms.
Require Import Crypto.Util.Tactics.DestructHead.
Require Import Crypto.Util.Tactics.BreakMatch.
Require Import Cr... | Require Import Crypto.Util.Decidable Crypto.Util.Notations Crypto.Algebra.Hierarchy.
Require Import Crypto.Spec.CompleteEdwardsCurve Crypto.Curves.Edwards.XYZT.Basic.
Require Import Coq.Classes.Morphisms.
Require Import Crypto.Util.Tactics.DestructHead.
Require Import Crypto.Util.Tactics.BreakMatch.
Require Import Cr... | [] | diff --git a/src/Curves/Edwards/XYZT/Precomputed.v b/src/Curves/Edwards/XYZT/Precomputed.v
index 1b65320ce..fbec2081a 100644
--- a/src/Curves/Edwards/XYZT/Precomputed.v
+++ b/src/Curves/Edwards/XYZT/Precomputed.v
@@ -37,24 +37,25 @@ Section ExtendedCoordinates.
Context {a_eq_minus1:a = Fopp 1}.
(* https://hyp... | Write or extend the proof(s) in src/Curves/Edwards/XYZT/Precomputed.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This is a substantive proof engineering change involving signature modifications (changing `F*F*F*F` to `F*F*F*F*F`), definition body rewrites (splitting T into Ta and Tb with intermediate variable renaming), and lemma statement/proof-body updates to match the new representation—all real proof work despite the file bei... |
fiat-crypto_9e666e0e_539ccaf3 | fiat-crypto | coq | 9e666e0e05796a1e7c40ee54923b58db8afbacb9 | b80db9d52c5d07947fff2163559353626b0786f3 | Split T into parts to save a mul | src/Curves/Edwards/XYZT/Basic.v | proof_add | Require Import Coq.Classes.Morphisms.
Require Import Crypto.Spec.CompleteEdwardsCurve Crypto.Curves.Edwards.AffineProofs.
Require Import Crypto.Util.Notations Crypto.Util.GlobalSettings.
Require Export Crypto.Util.FixCoqMistakes.
Require Import Crypto.Util.Decidable.
Require Import Crypto.Util.Tactics.DestructHead.
R... | Require Import Coq.Classes.Morphisms.
Require Import Crypto.Spec.CompleteEdwardsCurve Crypto.Curves.Edwards.AffineProofs.
Require Import Crypto.Util.Notations Crypto.Util.GlobalSettings.
Require Export Crypto.Util.FixCoqMistakes.
Require Import Crypto.Util.Decidable.
Require Import Crypto.Util.Tactics.DestructHead.
R... | [] | diff --git a/src/Curves/Edwards/XYZT/Basic.v b/src/Curves/Edwards/XYZT/Basic.v
index 9a1915a77..fc69464f3 100644
--- a/src/Curves/Edwards/XYZT/Basic.v
+++ b/src/Curves/Edwards/XYZT/Basic.v
@@ -29,14 +29,14 @@ Section ExtendedCoordinates.
Local Notation onCurve x y := (a*x^2 + y^2 = 1 + d*x^2*y^2) (only parsing).
... | Write or extend the proof(s) in src/Curves/Edwards/XYZT/Basic.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff substantively changes the representation of elliptic curve points from 4-tuples (X,Y,Z,T) to 5-tuples (X,Y,Z,Ta,Tb) to split the extended coordinate T into Ta*Tb to optimize field multiplications; the invariant, function signatures, and proof tactic bodies all change semantically to reflect this representatio... |
fiat-crypto_b80db9d5_4bb1a7a7 | fiat-crypto | coq | b80db9d52c5d07947fff2163559353626b0786f3 | 8bc54775d032caa2d431dfb09599599772fe015d | Fix calculation of T in mixed addition | src/Bedrock/End2End/X25519/EdwardsXYZT.v | proof_add | Require Import bedrock2.Array.
Require Import bedrock2.FE310CSemantics.
Require Import bedrock2.Loops.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import bedrock2.NotationsCustomEntry.
Require Import bedrock2.ProgramLogic.
Require Import bedrock2.Scalars.
Require Import ... | Require Import bedrock2.Array.
Require Import bedrock2.FE310CSemantics.
Require Import bedrock2.Loops.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import bedrock2.NotationsCustomEntry.
Require Import bedrock2.ProgramLogic.
Require Import bedrock2.Scalars.
Require Import ... | [] | diff --git a/src/Bedrock/End2End/X25519/EdwardsXYZT.v b/src/Bedrock/End2End/X25519/EdwardsXYZT.v
index 73b5977aa..4ee85fe98 100644
--- a/src/Bedrock/End2End/X25519/EdwardsXYZT.v
+++ b/src/Bedrock/End2End/X25519/EdwardsXYZT.v
@@ -57,19 +57,20 @@ Definition add_precomputed := func! (ox, oy, oz, ot, X1, Y1, Z1, T1, half_y... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/EdwardsXYZT.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This is a substantive proof-engineering fix correcting the implementation of mixed addition in Edwards curve arithmetic (swapping operands in mul/sub operations and reordering outputs), with corresponding updates to the proof's single_step tactics and bound-checking hypotheses—clearly a real algorithmic correction, not... |
fiat-crypto_b80db9d5_fc2588aa | fiat-crypto | coq | b80db9d52c5d07947fff2163559353626b0786f3 | 8bc54775d032caa2d431dfb09599599772fe015d | Fix calculation of T in mixed addition | src/Curves/Edwards/XYZT/Precomputed.v | proof_add | Require Import Crypto.Util.Decidable Crypto.Util.Notations Crypto.Algebra.Hierarchy.
Require Import Crypto.Spec.CompleteEdwardsCurve Crypto.Curves.Edwards.XYZT.Basic.
Require Import Coq.Classes.Morphisms.
Require Import Crypto.Util.Tactics.DestructHead.
Require Import Crypto.Util.Tactics.BreakMatch.
Require Import Cr... | Require Import Crypto.Util.Decidable Crypto.Util.Notations Crypto.Algebra.Hierarchy.
Require Import Crypto.Spec.CompleteEdwardsCurve Crypto.Curves.Edwards.XYZT.Basic.
Require Import Coq.Classes.Morphisms.
Require Import Crypto.Util.Tactics.DestructHead.
Require Import Crypto.Util.Tactics.BreakMatch.
Require Import Cr... | [] | diff --git a/src/Curves/Edwards/XYZT/Precomputed.v b/src/Curves/Edwards/XYZT/Precomputed.v
index 3340bfa4e..1b65320ce 100644
--- a/src/Curves/Edwards/XYZT/Precomputed.v
+++ b/src/Curves/Edwards/XYZT/Precomputed.v
@@ -15,7 +15,7 @@ Section ExtendedCoordinates.
{Feq_dec:DecidableRel Feq}.
Local Infix "=" ... | Write or extend the proof(s) in src/Curves/Edwards/XYZT/Precomputed.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff contains substantive proof engineering changes: the lemma statement `m1add_precomputed_coordinates_correct` is modified (adding a third conjunct `X1*Y1 = Z1*T1` to the specification), the definition `m1add_precomputed_coordinates` is substantially rewritten (variable assignments and the computation order are r... |
fiat-crypto_0a1e8fea_49290469 | fiat-crypto | coq | 0a1e8feaa2b24978218a2b7f291cf8aae9210638 | 6d981bcb4c804099316f570960c4f8e643ee38ea | switch to halved variant of precomputed coordinates | src/Curves/Edwards/XYZT/Precomputed.v | proof_add | Require Import Crypto.Util.Decidable Crypto.Util.Notations Crypto.Algebra.Hierarchy.
Require Import Crypto.Spec.CompleteEdwardsCurve Crypto.Curves.Edwards.XYZT.Basic.
Require Import Coq.Classes.Morphisms.
Require Import Crypto.Util.Tactics.DestructHead.
Require Import Crypto.Util.Tactics.BreakMatch.
Require Import Cr... | Require Import Crypto.Util.Decidable Crypto.Util.Notations Crypto.Algebra.Hierarchy.
Require Import Crypto.Spec.CompleteEdwardsCurve Crypto.Curves.Edwards.XYZT.Basic.
Require Import Coq.Classes.Morphisms.
Require Import Crypto.Util.Tactics.DestructHead.
Require Import Crypto.Util.Tactics.BreakMatch.
Require Import Cr... | [] | diff --git a/src/Curves/Edwards/XYZT/Precomputed.v b/src/Curves/Edwards/XYZT/Precomputed.v
index 6b925c020..d36e8bd4c 100644
--- a/src/Curves/Edwards/XYZT/Precomputed.v
+++ b/src/Curves/Edwards/XYZT/Precomputed.v
@@ -27,11 +27,11 @@ Section ExtendedCoordinates.
Local Notation Epoint := (@E.point F Feq Fone Fadd Fmul... | Write or extend the proof(s) in src/Curves/Edwards/XYZT/Precomputed.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff makes substantive changes to the definition and specification of precomputed coordinates (changing from full to halved variants, altering the `of_twisted` function signature and formula, and modifying the addition logic in `TwistMinusOne`), which constitutes real proof engineering that affects the mathematica... |
fiat-crypto_863f2f80_b4b827bf | fiat-crypto | coq | 863f2f802d719a167b4206196ea35502eb279c44 | 4bd2596b91fb48e0f9e26d6f7407327d7afab954 | Initial double spec and proof | src/Bedrock/End2End/X25519/Double.v | proof_add | Require Import bedrock2.Array.
Require Import bedrock2.FE310CSemantics.
Require Import bedrock2.Loops.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import bedrock2.NotationsCustomEntry.
Require Import bedrock2.ProgramLogic.
Require Import bedrock2.Scalars.
Require Import ... | [] | diff --git a/src/Bedrock/End2End/X25519/Double.v b/src/Bedrock/End2End/X25519/Double.v
new file mode 100644
index 000000000..7d530b43f
--- /dev/null
+++ b/src/Bedrock/End2End/X25519/Double.v
@@ -0,0 +1,389 @@
+Require Import bedrock2.Array.
+Require Import bedrock2.FE310CSemantics.
+Require Import bedrock2.Loops.
+Requ... | Write the proof content for the declarations in src/Bedrock/End2End/X25519/Double.v. | accept | claude-haiku-4-5 | This is a new file with substantive proof engineering content: a bedrock2 function definition (`double`), a specification instance (`spec_of_double`), multiple local instances for field operations, helper tactics (`straightline_cleanup`), and a proof body using `WeakestPrecondition` verification with separation logic—a... | |
fiat-crypto_4bd2596b_e459668e | fiat-crypto | coq | 4bd2596b91fb48e0f9e26d6f7407327d7afab954 | 4b562eb324783c2e1ccf9e486b52168746c7b9d4 | Stop relying on `replace by` automatic `assumption`-based solving (#1657) | src/Fancy/Prod.v | proof_add | Require Import Coq.ZArith.ZArith.
Require Import Coq.micromega.Lia.
Require Import Coq.Lists.List. Import ListNotations.
Require Import Crypto.Algebra.Ring. (* for ring_simplify_subterms *)
Require Import Crypto.Fancy.Spec. Import Spec.Registers.
Require Import Crypto.Fancy.Compiler.
Require Import Crypto.Util.Tactics.... | Require Import Coq.ZArith.ZArith.
Require Import Coq.micromega.Lia.
Require Import Coq.Lists.List. Import ListNotations.
Require Import Crypto.Algebra.Ring. (* for ring_simplify_subterms *)
Require Import Crypto.Fancy.Spec. Import Spec.Registers.
Require Import Crypto.Fancy.Compiler.
Require Import Crypto.Util.Tactics.... | [] | diff --git a/src/Fancy/Prod.v b/src/Fancy/Prod.v
index 45df4844b..f421bab68 100644
--- a/src/Fancy/Prod.v
+++ b/src/Fancy/Prod.v
@@ -114,7 +114,7 @@ Ltac step_rhs :=
match goal with
| H: ?x = spec ?i ?args _
|- context [spec ?i ?args ?cc] =>
- replace (spec i args cc) with x by idtac
+ replace (spec i ... | Write or extend the proof(s) in src/Fancy/Prod.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This is a substantive proof-body Ltac tactic change: the `replace` tactic's `by` clause is modified from `idtac` to `first [assumption | symmetry;assumption]` to handle proof obligation solving more robustly, which is a meaningful engineering improvement to the proof automation strategy. |
fiat-crypto_f0d8e9ab_6accff38 | fiat-crypto | coq | f0d8e9ab92b6e397246a50ba836bd6e6c35d86d3 | 5978c17a79ef72758882da9773fe3c90e303d500 | Pipe through carry_sub function (#1641) | src/Bedrock/End2End/Poly1305/Field1305.v | proof_add | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Field.Interface.Representation.
Require Import Crypto.Bedrock.Field.Synthesis.New.ComputedOp.
Require Import Crypto.Bedrock.Field.Synthes... | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Field.Interface.Representation.
Require Import Crypto.Bedrock.Field.Synthesis.New.ComputedOp.
Require Import Crypto.Bedrock.Field.Synthes... | [] | diff --git a/src/Bedrock/End2End/Poly1305/Field1305.v b/src/Bedrock/End2End/Poly1305/Field1305.v
index 7673a9b9c..6b560dccf 100644
--- a/src/Bedrock/End2End/Poly1305/Field1305.v
+++ b/src/Bedrock/End2End/Poly1305/Field1305.v
@@ -103,6 +103,15 @@ Section Field.
functions)
As fe1305_sub... | Write or extend the proof(s) in src/Bedrock/End2End/Poly1305/Field1305.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds substantive new proof content: a new `Derive` statement with a proof obligation for `fe1305_carry_sub_correct`, plus registration of the derived function in the module's function list—both constitute real proof engineering, not mechanical generation or formatting. |
fiat-crypto_f0d8e9ab_634d7835 | fiat-crypto | coq | f0d8e9ab92b6e397246a50ba836bd6e6c35d86d3 | 5978c17a79ef72758882da9773fe3c90e303d500 | Pipe through carry_sub function (#1641) | src/Bedrock/End2End/RupicolaCrypto/Low.v | proof_add | (* Rewritten versions of poly1305 and chacha20 that you can compile with Rupicola *)
Require Import Coq.Unicode.Utf8.
Require Import Rupicola.Lib.Api.
Require Import Rupicola.Examples.Loops Rupicola.Lib.Loops.
(*TODO: move this file to Rupicola.Lib*)
Require Import Crypto.Bedrock.End2End.RupicolaCrypto.Broadcast.
Requi... | (* Rewritten versions of poly1305 and chacha20 that you can compile with Rupicola *)
Require Import Coq.Unicode.Utf8.
Require Import Rupicola.Lib.Api.
Require Import Rupicola.Examples.Loops Rupicola.Lib.Loops.
(*TODO: move this file to Rupicola.Lib*)
Require Import Crypto.Bedrock.End2End.RupicolaCrypto.Broadcast.
Requi... | [] | diff --git a/src/Bedrock/End2End/RupicolaCrypto/Low.v b/src/Bedrock/End2End/RupicolaCrypto/Low.v
index f92240641..1d2a247a3 100644
--- a/src/Bedrock/End2End/RupicolaCrypto/Low.v
+++ b/src/Bedrock/End2End/RupicolaCrypto/Low.v
@@ -1329,6 +1329,7 @@ Instance p_field_params : FieldParameters :=
add := "fe1305_add";
c... | Write or extend the proof(s) in src/Bedrock/End2End/RupicolaCrypto/Low.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This is a substantive change to a definition body (FieldParameters record) that adds a new field assignment for the `carry_sub` function; while the edit itself is small, it modifies the specification/configuration of cryptographic parameters in hand-written proof engineering code (not a generated CurveParameters.v file... |
fiat-crypto_f0d8e9ab_efca3789 | fiat-crypto | coq | f0d8e9ab92b6e397246a50ba836bd6e6c35d86d3 | 5978c17a79ef72758882da9773fe3c90e303d500 | Pipe through carry_sub function (#1641) | src/Bedrock/End2End/X25519/Field25519.v | proof_add | Require Import Coq.Strings.String. Local Open Scope string_scope.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import coqutil.Word.Bitwidth32.
Require Import coqutil.Macros.WithBaseName.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Field.Common.Names.Var... | Require Import Coq.Strings.String. Local Open Scope string_scope.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import coqutil.Word.Bitwidth32.
Require Import coqutil.Macros.WithBaseName.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Field.Common.Names.Var... | [] | diff --git a/src/Bedrock/End2End/X25519/Field25519.v b/src/Bedrock/End2End/X25519/Field25519.v
index ca179290e..d60f0bb6e 100644
--- a/src/Bedrock/End2End/X25519/Field25519.v
+++ b/src/Bedrock/End2End/X25519/Field25519.v
@@ -139,6 +139,15 @@ Section Field.
As fe25519_sub_correct.
Proof. Time derive_bedrock2_fun... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/Field25519.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds a new derived Bedrock function specification with its correctness proof for `fe25519_carry_sub`, following the established pattern in the file; it is substantive proof-engineering work (new definition, statement, and proof-by-derivation), not whitespace or import changes. |
fiat-crypto_f0d8e9ab_013b548e | fiat-crypto | coq | f0d8e9ab92b6e397246a50ba836bd6e6c35d86d3 | 5978c17a79ef72758882da9773fe3c90e303d500 | Pipe through carry_sub function (#1641) | src/Bedrock/Field/Synthesis/New/UnsaturatedSolinas.v | proof_add | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import bedrock2.Syntax.
Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Spec.ModularArithmetic.
Require Import Crypto.Arithmetic.ModularArithmeticTheorems.
Require Import Crypto.Bedrock.Specs.Field.
... | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import bedrock2.Syntax.
Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Spec.ModularArithmetic.
Require Import Crypto.Arithmetic.ModularArithmeticTheorems.
Require Import Crypto.Bedrock.Specs.Field.
... | [] | diff --git a/src/Bedrock/Field/Synthesis/New/UnsaturatedSolinas.v b/src/Bedrock/Field/Synthesis/New/UnsaturatedSolinas.v
index 8aa55572a..24b31263c 100644
--- a/src/Bedrock/Field/Synthesis/New/UnsaturatedSolinas.v
+++ b/src/Bedrock/Field/Synthesis/New/UnsaturatedSolinas.v
@@ -47,6 +47,10 @@ Class unsaturated_solinas_op... | Write or extend the proof(s) in src/Bedrock/Field/Synthesis/New/UnsaturatedSolinas.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff substantively adds a new `carry_sub` operation to the UnsaturatedSolinas synthesis framework—including new class field, context parameter, correctness lemma (`carry_sub_func_correct`), tactic rule, and test derivation—which constitutes real proof engineering and semantic extension, not mechanical generation o... |
fiat-crypto_f0d8e9ab_4756536a | fiat-crypto | coq | f0d8e9ab92b6e397246a50ba836bd6e6c35d86d3 | 5978c17a79ef72758882da9773fe3c90e303d500 | Pipe through carry_sub function (#1641) | src/Bedrock/Field/Synthesis/New/WordByWordMontgomery.v | proof_add | Require Import Coq.micromega.Lia.
Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import bedrock2.Syntax.
Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Spec.ModularArithmetic.
Require Import Crypto.Arithmetic.ModularArithmeticTheorems.
Require I... | Require Import Coq.micromega.Lia.
Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import bedrock2.Syntax.
Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Spec.ModularArithmetic.
Require Import Crypto.Arithmetic.ModularArithmeticTheorems.
Require I... | [] | diff --git a/src/Bedrock/Field/Synthesis/New/WordByWordMontgomery.v b/src/Bedrock/Field/Synthesis/New/WordByWordMontgomery.v
index ab376877e..971b9eda7 100644
--- a/src/Bedrock/Field/Synthesis/New/WordByWordMontgomery.v
+++ b/src/Bedrock/Field/Synthesis/New/WordByWordMontgomery.v
@@ -760,6 +760,7 @@ Definition field_pa... | Write or extend the proof(s) in src/Bedrock/Field/Synthesis/New/WordByWordMontgomery.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds a single string literal argument to a `field_parameters_prefixed` definition, representing a function name being piped through the carry_sub synthesis pipeline—a substantive change to the definition's semantics (what operation names are registered), not a whitespace or comment-only edit, and thus qualifi... |
fiat-crypto_f0d8e9ab_dbc241b2 | fiat-crypto | coq | f0d8e9ab92b6e397246a50ba836bd6e6c35d86d3 | 5978c17a79ef72758882da9773fe3c90e303d500 | Pipe through carry_sub function (#1641) | src/Bedrock/Specs/Field.v | proof_add | Require Import coqutil.Byte coqutil.Word.LittleEndianList.
Require Import Rupicola.Lib.Api.
Require Import Crypto.Algebra.Hierarchy.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Field.Synthesis.Generic.Bignum.
Require Import Crypto.Bedrock.Field.Common.Arrays.MaxBounds.
Require Imp... | Require Import coqutil.Byte coqutil.Word.LittleEndianList.
Require Import Rupicola.Lib.Api.
Require Import Crypto.Algebra.Hierarchy.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Field.Synthesis.Generic.Bignum.
Require Import Crypto.Bedrock.Field.Common.Arrays.MaxBounds.
Require Imp... | [] | diff --git a/src/Bedrock/Specs/Field.v b/src/Bedrock/Specs/Field.v
index a9beee325..1ccfcbddf 100644
--- a/src/Bedrock/Specs/Field.v
+++ b/src/Bedrock/Specs/Field.v
@@ -19,7 +19,7 @@ Class FieldParameters :=
fe_copy := (@id (F M_pos));
(** function names **)
- mul : string; add : string; carry_add : stri... | Write or extend the proof(s) in src/Bedrock/Specs/Field.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds a substantive new field parameter (`carry_sub : string`) to the `FieldParameters` class and introduces a corresponding new `BinOp` instance (`bin_carry_sub`) with real semantics (modeling `F.sub` with specific bounds), representing a genuine extension to the field specification that requires proof engine... |
fiat-crypto_42e5455a_3b1c97c2 | fiat-crypto | coq | 42e5455a3f95ee4f739245e75b667e0639beac51 | b9bf8fe570c02248cc55e9164e817623963f5db9 | Use carry_add in AddPrecomputed | src/Bedrock/End2End/X25519/AddPrecomputed.v | proof_add | Require Import bedrock2.Array.
Require Import bedrock2.FE310CSemantics.
Require Import bedrock2.Loops.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import bedrock2.NotationsCustomEntry.
Require Import bedrock2.ProgramLogic.
Require Import bedrock2.Scalars.
Require Import ... | Require Import bedrock2.Array.
Require Import bedrock2.FE310CSemantics.
Require Import bedrock2.Loops.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import bedrock2.NotationsCustomEntry.
Require Import bedrock2.ProgramLogic.
Require Import bedrock2.Scalars.
Require Import ... | [] | diff --git a/src/Bedrock/End2End/X25519/AddPrecomputed.v b/src/Bedrock/End2End/X25519/AddPrecomputed.v
index 7afcbc1bf..fe8697a2a 100644
--- a/src/Bedrock/End2End/X25519/AddPrecomputed.v
+++ b/src/Bedrock/End2End/X25519/AddPrecomputed.v
@@ -60,10 +60,8 @@ Definition add_precomputed := func! (ox, oy, oz, ot, X1, Y1, Z1,... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/AddPrecomputed.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff is substantive proof engineering: it refactors the implementation to use `fe25519_carry_add` instead of `fe25519_mul` with a constant 2, updates the precondition for Z1 from `loose_bounds` to `tight_bounds`, adds a new `Local Instance` for the carry_add operation, modifies the `cbv_bounds` tactic and `Strateg... |
fiat-crypto_b9bf8fe5_cde3eed1 | fiat-crypto | coq | b9bf8fe570c02248cc55e9164e817623963f5db9 | 248bf0c5458f428fa7c9f5d972217fe7d02936f3 | Pipe through carry_add function (#1635) | src/Bedrock/End2End/Poly1305/Field1305.v | proof_add | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Field.Interface.Representation.
Require Import Crypto.Bedrock.Field.Synthesis.New.ComputedOp.
Require Import Crypto.Bedrock.Field.Synthes... | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Field.Interface.Representation.
Require Import Crypto.Bedrock.Field.Synthesis.New.ComputedOp.
Require Import Crypto.Bedrock.Field.Synthes... | [] | diff --git a/src/Bedrock/End2End/Poly1305/Field1305.v b/src/Bedrock/End2End/Poly1305/Field1305.v
index 9e65932f2..7673a9b9c 100644
--- a/src/Bedrock/End2End/Poly1305/Field1305.v
+++ b/src/Bedrock/End2End/Poly1305/Field1305.v
@@ -86,6 +86,15 @@ Section Field.
As fe1305_add_correct.
Proof. Time derive_bedroc... | Write or extend the proof(s) in src/Bedrock/End2End/Poly1305/Field1305.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds a new derived function `fe1305_carry_add` with its proof (`fe1305_carry_add_correct`) and includes it in the `funcs` list—substantive proof engineering that derives and integrates a new Bedrock2 function specification, even though the proof itself uses the template tactic `derive_bedrock2_func`. |
fiat-crypto_b9bf8fe5_9ae93855 | fiat-crypto | coq | b9bf8fe570c02248cc55e9164e817623963f5db9 | 248bf0c5458f428fa7c9f5d972217fe7d02936f3 | Pipe through carry_add function (#1635) | src/Bedrock/End2End/RupicolaCrypto/Low.v | proof_add | (* Rewritten versions of poly1305 and chacha20 that you can compile with Rupicola *)
Require Import Coq.Unicode.Utf8.
Require Import Rupicola.Lib.Api.
Require Import Rupicola.Examples.Loops Rupicola.Lib.Loops.
(*TODO: move this file to Rupicola.Lib*)
Require Import Crypto.Bedrock.End2End.RupicolaCrypto.Broadcast.
Requi... | (* Rewritten versions of poly1305 and chacha20 that you can compile with Rupicola *)
Require Import Coq.Unicode.Utf8.
Require Import Rupicola.Lib.Api.
Require Import Rupicola.Examples.Loops Rupicola.Lib.Loops.
(*TODO: move this file to Rupicola.Lib*)
Require Import Crypto.Bedrock.End2End.RupicolaCrypto.Broadcast.
Requi... | [] | diff --git a/src/Bedrock/End2End/RupicolaCrypto/Low.v b/src/Bedrock/End2End/RupicolaCrypto/Low.v
index c8c0ab6d8..f92240641 100644
--- a/src/Bedrock/End2End/RupicolaCrypto/Low.v
+++ b/src/Bedrock/End2End/RupicolaCrypto/Low.v
@@ -1327,6 +1327,7 @@ Instance p_field_params : FieldParameters :=
a24 := 1%F;
mul := "fe... | Write or extend the proof(s) in src/Bedrock/End2End/RupicolaCrypto/Low.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This is a substantive type/record-signature change: adding a new field (`carry_add := "fe1305_carry_add"`) to the `FieldParameters` instance modifies the specification, making it a real proof-engineering commitment that affects downstream uses and proofs depending on this record structure. |
fiat-crypto_b9bf8fe5_a472416c | fiat-crypto | coq | b9bf8fe570c02248cc55e9164e817623963f5db9 | 248bf0c5458f428fa7c9f5d972217fe7d02936f3 | Pipe through carry_add function (#1635) | src/Bedrock/End2End/X25519/Field25519.v | proof_add | Require Import Coq.Strings.String. Local Open Scope string_scope.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import coqutil.Word.Bitwidth32.
Require Import coqutil.Macros.WithBaseName.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Field.Common.Names.Var... | Require Import Coq.Strings.String. Local Open Scope string_scope.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import coqutil.Word.Bitwidth32.
Require Import coqutil.Macros.WithBaseName.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Field.Common.Names.Var... | [] | diff --git a/src/Bedrock/End2End/X25519/Field25519.v b/src/Bedrock/End2End/X25519/Field25519.v
index f3afef1cd..ca179290e 100644
--- a/src/Bedrock/End2End/X25519/Field25519.v
+++ b/src/Bedrock/End2End/X25519/Field25519.v
@@ -121,6 +121,15 @@ Section Field.
As fe25519_add_correct.
Proof. Time derive_bedrock2_fun... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/Field25519.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds a substantive new derived lemma (`fe25519_carry_add_correct`) with a real proof body (`derive_bedrock2_func carry_add_op`), which is a legitimate proof-engineering task — adding a new operation specification and correctness proof, not merely mechanical generation or boilerplate. |
fiat-crypto_b9bf8fe5_02c59fc7 | fiat-crypto | coq | b9bf8fe570c02248cc55e9164e817623963f5db9 | 248bf0c5458f428fa7c9f5d972217fe7d02936f3 | Pipe through carry_add function (#1635) | src/Bedrock/Field/Synthesis/New/UnsaturatedSolinas.v | proof_add | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import bedrock2.Syntax.
Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Spec.ModularArithmetic.
Require Import Crypto.Arithmetic.ModularArithmeticTheorems.
Require Import Crypto.Bedrock.Specs.Field.
... | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import bedrock2.Syntax.
Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Spec.ModularArithmetic.
Require Import Crypto.Arithmetic.ModularArithmeticTheorems.
Require Import Crypto.Bedrock.Specs.Field.
... | [] | diff --git a/src/Bedrock/Field/Synthesis/New/UnsaturatedSolinas.v b/src/Bedrock/Field/Synthesis/New/UnsaturatedSolinas.v
index f2a6719dd..8aa55572a 100644
--- a/src/Bedrock/Field/Synthesis/New/UnsaturatedSolinas.v
+++ b/src/Bedrock/Field/Synthesis/New/UnsaturatedSolinas.v
@@ -39,6 +39,10 @@ Class unsaturated_solinas_op... | Write or extend the proof(s) in src/Bedrock/Field/Synthesis/New/UnsaturatedSolinas.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff is substantive proof engineering: it adds a new operation (`carry_add_op`) to the class definition, introduces associated proof obligations (`carry_add_func_correct` lemma with full tactic proof), updates context parameters and equational hypotheses, extends the tactic automation (`begin_derive_bedrock2_func`... |
fiat-crypto_b9bf8fe5_fea15fe7 | fiat-crypto | coq | b9bf8fe570c02248cc55e9164e817623963f5db9 | 248bf0c5458f428fa7c9f5d972217fe7d02936f3 | Pipe through carry_add function (#1635) | src/Bedrock/Field/Synthesis/New/WordByWordMontgomery.v | proof_add | Require Import Coq.micromega.Lia.
Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import bedrock2.Syntax.
Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Spec.ModularArithmetic.
Require Import Crypto.Arithmetic.ModularArithmeticTheorems.
Require I... | Require Import Coq.micromega.Lia.
Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import bedrock2.Syntax.
Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Spec.ModularArithmetic.
Require Import Crypto.Arithmetic.ModularArithmeticTheorems.
Require I... | [] | diff --git a/src/Bedrock/Field/Synthesis/New/WordByWordMontgomery.v b/src/Bedrock/Field/Synthesis/New/WordByWordMontgomery.v
index 9a5813ae4..ab376877e 100644
--- a/src/Bedrock/Field/Synthesis/New/WordByWordMontgomery.v
+++ b/src/Bedrock/Field/Synthesis/New/WordByWordMontgomery.v
@@ -758,6 +758,7 @@ Definition field_pa... | Write or extend the proof(s) in src/Bedrock/Field/Synthesis/New/WordByWordMontgomery.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds a single string literal argument to a definition (the `field_parameters_prefixed` function call), which is a minor configuration change to the synthesis pipeline that wires in a new operation; while substantive in intent (piping through a carry_add function), the actual code change is a one-line string a... |
fiat-crypto_b9bf8fe5_984e4ad2 | fiat-crypto | coq | b9bf8fe570c02248cc55e9164e817623963f5db9 | 248bf0c5458f428fa7c9f5d972217fe7d02936f3 | Pipe through carry_add function (#1635) | src/Bedrock/Specs/Field.v | proof_add | Require Import coqutil.Byte coqutil.Word.LittleEndianList.
Require Import Rupicola.Lib.Api.
Require Import Crypto.Algebra.Hierarchy.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Field.Synthesis.Generic.Bignum.
Require Import Crypto.Bedrock.Field.Common.Arrays.MaxBounds.
Require Imp... | Require Import coqutil.Byte coqutil.Word.LittleEndianList.
Require Import Rupicola.Lib.Api.
Require Import Crypto.Algebra.Hierarchy.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Field.Synthesis.Generic.Bignum.
Require Import Crypto.Bedrock.Field.Common.Arrays.MaxBounds.
Require Imp... | [] | diff --git a/src/Bedrock/Specs/Field.v b/src/Bedrock/Specs/Field.v
index 9f8d763ac..a9beee325 100644
--- a/src/Bedrock/Specs/Field.v
+++ b/src/Bedrock/Specs/Field.v
@@ -19,7 +19,7 @@ Class FieldParameters :=
fe_copy := (@id (F M_pos));
(** function names **)
- mul : string; add : string; sub : string; op... | Write or extend the proof(s) in src/Bedrock/Specs/Field.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds a new field `carry_add : string` to the `FieldParameters` record class and defines a corresponding `BinOp` instance with a specification — substantive structural/specification changes to a hand-written Bedrock specs file that require proof engineering consideration for dependent definitions/theorems that... |
fiat-crypto_07de4cfa_301fd38e | fiat-crypto | coq | 07de4cfa454d3761c74a49f7d20c542e1fa3cb46 | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | Print more casts when stringification fails (#1634) | src/BoundsPipeline.v | proof_add | (** * BoundsPipeline *)
(** This file assembles the various compiler stages together into a
composed pipeline. It is the final interface for the compiler,
right before integration with Arithmetic. *)
Require Import Coq.ZArith.ZArith.
Require Import Coq.QArith.QArith_base.
Require Import Coq.Lists.List.
Require... | (** * BoundsPipeline *)
(** This file assembles the various compiler stages together into a
composed pipeline. It is the final interface for the compiler,
right before integration with Arithmetic. *)
Require Import Coq.ZArith.ZArith.
Require Import Coq.QArith.QArith_base.
Require Import Coq.Lists.List.
Require... | [] | diff --git a/src/BoundsPipeline.v b/src/BoundsPipeline.v
index b398e3f02..5df6d6a5e 100644
--- a/src/BoundsPipeline.v
+++ b/src/BoundsPipeline.v
@@ -536,6 +536,13 @@ Module Pipeline.
(fun '(b1, b2) => "The bounds " ++ show b1 ++ " are looser than the expected bounds " ++ show b2)
... | Write or extend the proof(s) in src/BoundsPipeline.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff introduces a substantive proof engineering change: it extracts a repeated pattern (showing expressions with and without casts) into a reusable definition `show_lines_Expr_with_and_without_casts`, then applies this definition in three places. This is a real refactoring that changes how proofs/definitions are s... |
fiat-crypto_703f19d0_2db6d157 | fiat-crypto | coq | 703f19d0378226bd170e0cd67b8fd6b3b0fd1dca | 5a7b84baa9f66a4f639dffaab66206b239adca5e | update to rupicola/bedrock2 where Module WP is gone | src/Bedrock/End2End/X25519/GarageDoorTop.v | proof_add | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | [] | diff --git a/src/Bedrock/End2End/X25519/GarageDoorTop.v b/src/Bedrock/End2End/X25519/GarageDoorTop.v
index a412768b7..030a84604 100644
--- a/src/Bedrock/End2End/X25519/GarageDoorTop.v
+++ b/src/Bedrock/End2End/X25519/GarageDoorTop.v
@@ -105,7 +105,7 @@ Proof.
assert (spec_of_montladder (map.of_list funcs)). {
u... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/GarageDoorTop.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This is a substantive proof-body tactic change: the call to `WP.extend_env_wp_call` is replaced with `Semantics.extend_env_call` due to an API migration in the rupicola/bedrock2 dependency (Module WP removal), which alters the proof term and requires proof engineering adjustment. |
fiat-crypto_703f19d0_f19cf447 | fiat-crypto | coq | 703f19d0378226bd170e0cd67b8fd6b3b0fd1dca | 5a7b84baa9f66a4f639dffaab66206b239adca5e | update to rupicola/bedrock2 where Module WP is gone | src/Bedrock/Field/Synthesis/Examples/redc.v | proof_add | Require Import bedrock2.NotationsCustomEntry.
Import Syntax BinInt String List.ListNotations.
Local Open Scope string_scope. Local Open Scope Z_scope. Local Open Scope list_scope.
From coqutil.Word Require Import Interface Properties.
From bedrock2 Require Import WeakestPrecondition WeakestPreconditionProperties
Sy... | Require Import bedrock2.NotationsCustomEntry.
Import Syntax BinInt String List.ListNotations.
Local Open Scope string_scope. Local Open Scope Z_scope. Local Open Scope list_scope.
From coqutil.Word Require Import Interface Properties.
From bedrock2 Require Import WeakestPrecondition WeakestPreconditionProperties
Sy... | [] | diff --git a/src/Bedrock/Field/Synthesis/Examples/redc.v b/src/Bedrock/Field/Synthesis/Examples/redc.v
index 0394777ed..0576fec92 100644
--- a/src/Bedrock/Field/Synthesis/Examples/redc.v
+++ b/src/Bedrock/Field/Synthesis/Examples/redc.v
@@ -60,7 +60,7 @@ Section WithParameters.
(* redc_step ought to take in small ... | Write or extend the proof(s) in src/Bedrock/Field/Synthesis/Examples/redc.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff is substantive proof engineering: it adds a new Ltac tactic definition (`no_call`) and redefines the `eexists` tactic notation to prevent unintended call semantics in proofs, which is a meaningful change to the proof infrastructure for the `redc_alt_ok` theorem, along with a whitespace cleanup that is negligi... |
fiat-crypto_5a7b84ba_81a12981 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/End2End/Poly1305/Field1305.v | proof_add | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Field.Interface.Representation.
Require Import Crypto.Bedrock.Field.Synthesis.New.ComputedOp.
Require Import Crypto.Bedrock.Field.Synthes... | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Field.Interface.Representation.
Require Import Crypto.Bedrock.Field.Synthesis.New.ComputedOp.
Require Import Crypto.Bedrock.Field.Synthes... | [] | diff --git a/src/Bedrock/End2End/Poly1305/Field1305.v b/src/Bedrock/End2End/Poly1305/Field1305.v
index 2be9606be..9e65932f2 100644
--- a/src/Bedrock/End2End/Poly1305/Field1305.v
+++ b/src/Bedrock/End2End/Poly1305/Field1305.v
@@ -38,51 +38,60 @@ Section Field.
(**** Translate each field operation into bedrock2 and ap... | Write or extend the proof(s) in src/Bedrock/End2End/Poly1305/Field1305.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff includes substantive proof-engineering changes: (1) a new Local Notation `functions_contain` is introduced, which changes the specification structure of all six `Derive` statements; (2) each `Derive` statement's `SuchThat` clause is updated to use this new notation and remove list-cons syntax (`f :: functions`... |
fiat-crypto_5a7b84ba_bfaaf4d9 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/End2End/RupicolaCrypto/Broadcast.v | proof_add |
Require Import Coq.Unicode.Utf8.
Require Import Rupicola.Lib.Api.
Require Import Rupicola.Lib.Loops.
Require Coq.Init.Byte Coq.Strings.String. Import Init.Byte(byte(..)) String.
Require Import coqutil.Datatypes.List. Import Lists.List List.ListNotations.
Require Import Coq.ZArith.BinInt. Import Zdiv. Local Open Scope... | Require Import Coq.Unicode.Utf8.
Require Import Rupicola.Lib.Api.
Require Import Rupicola.Lib.Loops.
Require Coq.Init.Byte Coq.Strings.String. Import Init.Byte(byte(..)) String.
Require Import coqutil.Datatypes.List. Import Lists.List List.ListNotations.
Require Import Coq.ZArith.BinInt. Import Zdiv. Local Open Scope ... | [] | diff --git a/src/Bedrock/End2End/RupicolaCrypto/Broadcast.v b/src/Bedrock/End2End/RupicolaCrypto/Broadcast.v
index eda65c911..c8680322c 100644
--- a/src/Bedrock/End2End/RupicolaCrypto/Broadcast.v
+++ b/src/Bedrock/End2End/RupicolaCrypto/Broadcast.v
@@ -1,4 +1,3 @@
-
Require Import Coq.Unicode.Utf8.
Require Import Rup... | Write or extend the proof(s) in src/Bedrock/End2End/RupicolaCrypto/Broadcast.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff is primarily whitespace/trailing-space cleanup (lines 245, 265-266, 278, 291, 314, 335, 340, 401, 487, 505, 509, 534, 586, 740, 818, 831, 897) with two substantive changes: removal of `env` and `env_ok` context parameters (lines 145–146, 149) and removal of `env_ok` from a `Proof using` clause (line 586), whic... |
fiat-crypto_5a7b84ba_477be6ff | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/End2End/RupicolaCrypto/Low.v | proof_add | (* Rewritten versions of poly1305 and chacha20 that you can compile with Rupicola *)
Require Import Coq.Unicode.Utf8.
Require Import Rupicola.Lib.Api.
Require Import Rupicola.Examples.Loops Rupicola.Lib.Loops.
(*TODO: move this file to Rupicola.Lib*)
Require Import Crypto.Bedrock.End2End.RupicolaCrypto.Broadcast.
Requi... | (* Rewritten versions of poly1305 and chacha20 that you can compile with Rupicola *)
Require Import Coq.Unicode.Utf8.
Require Import Rupicola.Lib.Api.
Require Import Rupicola.Examples.Loops Rupicola.Lib.Loops.
(*TODO: move this file to Rupicola.Lib*)
Require Import Crypto.Bedrock.End2End.RupicolaCrypto.Broadcast.
Requi... | [] | diff --git a/src/Bedrock/End2End/RupicolaCrypto/Low.v b/src/Bedrock/End2End/RupicolaCrypto/Low.v
index 6449ee89f..c8c0ab6d8 100644
--- a/src/Bedrock/End2End/RupicolaCrypto/Low.v
+++ b/src/Bedrock/End2End/RupicolaCrypto/Low.v
@@ -157,7 +157,7 @@ Definition buf_pad {T} (buf: buffer_t T) (len: nat) (t: T) : buffer_t T := ... | Write or extend the proof(s) in src/Bedrock/End2End/RupicolaCrypto/Low.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff contains substantive type/signature changes (`list (String.string * Syntax.func)` → `env`) and proof-body tactic edits (removing `eapply Proper_call` from three locations), which are ACCEPT categories, mixed with whitespace-only changes; the signature changes and tactic modifications constitute real proof engi... |
fiat-crypto_5a7b84ba_35fa3cd8 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/End2End/X25519/Field25519.v | proof_add | Require Import Coq.Strings.String. Local Open Scope string_scope.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import coqutil.Word.Bitwidth32.
Require Import coqutil.Macros.WithBaseName.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Field.Common.Names.Var... | Require Import Coq.Strings.String. Local Open Scope string_scope.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import coqutil.Word.Bitwidth32.
Require Import coqutil.Macros.WithBaseName.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Field.Common.Names.Var... | [] | diff --git a/src/Bedrock/End2End/X25519/Field25519.v b/src/Bedrock/End2End/X25519/Field25519.v
index b9a892d01..f3afef1cd 100644
--- a/src/Bedrock/End2End/X25519/Field25519.v
+++ b/src/Bedrock/End2End/X25519/Field25519.v
@@ -58,76 +58,85 @@ Section Field.
field pipeline proofs to prove the bedrock2 functions a... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/Field25519.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff changes the specifications of 9 `Derive` statements by replacing the old `(&,function :: functions)` pattern with explicit `Interface.map.get functions "name" = Some function` conditions, which is a substantive specification/signature change reflecting an API migration to match the updated bedrock2/rupicola s... |
fiat-crypto_5a7b84ba_8f7db635 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/End2End/X25519/GarageDoorTop.v | proof_add | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | [] | diff --git a/src/Bedrock/End2End/X25519/GarageDoorTop.v b/src/Bedrock/End2End/X25519/GarageDoorTop.v
index 8829a959d..a412768b7 100644
--- a/src/Bedrock/End2End/X25519/GarageDoorTop.v
+++ b/src/Bedrock/End2End/X25519/GarageDoorTop.v
@@ -64,27 +64,62 @@ Compute (length funcs-3 - (length MontgomeryLadder.funcs - 2 + 3))%... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/GarageDoorTop.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff makes substantive changes to proof bodies: the `chacha20_ok` lemma signature and proof are modified (adding parameters and changing tactic structure), `link_loopfn` and `link_initfn` proofs are significantly refactored using a new `pose_correctness` tactic and function application logic, and the `garagedoor_i... |
fiat-crypto_5a7b84ba_bd92e012 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/End2End/X25519/MontgomeryLadderProperties.v | proof_add | Require Import Coq.ZArith.ZArith.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.MMIO.
Require Import compiler.NaiveRiscvWordProperties.
Require Import coqutil.Map.SortedListWord.
Require Impo... | Require Import Coq.ZArith.ZArith.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.MMIO.
Require Import compiler.NaiveRiscvWordProperties.
Require Import coqutil.Map.SortedListWord.
Require Impo... | [] | diff --git a/src/Bedrock/End2End/X25519/MontgomeryLadderProperties.v b/src/Bedrock/End2End/X25519/MontgomeryLadderProperties.v
index 2b0cef4ee..cf491b9ce 100644
--- a/src/Bedrock/End2End/X25519/MontgomeryLadderProperties.v
+++ b/src/Bedrock/End2End/X25519/MontgomeryLadderProperties.v
@@ -54,110 +54,40 @@ Local Instance... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/MontgomeryLadderProperties.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff removes substantial proof-engineering machinery (custom `prepare_call` tactic, `peel_func_binop`/`peel_func_unop` lemmas) and replaces them with simpler proof arguments (`reflexivity`), reflecting an update to the Bedrock2/Rupicola backend where the wp (weakest precondition) semantics became complete with res... |
fiat-crypto_5a7b84ba_b355d899 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Field/Common/Arrays/MakeListLengths.v | proof_add | Require Import Coq.ZArith.ZArith.
Require Import Coq.Lists.List.
Require Import Crypto.AbstractInterpretation.AbstractInterpretation.
Require Import Crypto.Bedrock.Field.Common.Types.
Require Import Crypto.Language.API.
Require Import Crypto.Util.Option.
Import Language.API.Compilers AbstractInterpretation.Compilers.
... | Require Import Coq.ZArith.ZArith.
Require Import Coq.Lists.List.
Require Import Crypto.AbstractInterpretation.AbstractInterpretation.
Require Import Crypto.Bedrock.Field.Common.Types.
Require Import Crypto.Language.API.
Require Import Crypto.Util.Option.
Import Language.API.Compilers AbstractInterpretation.Compilers.
... | [] | diff --git a/src/Bedrock/Field/Common/Arrays/MakeListLengths.v b/src/Bedrock/Field/Common/Arrays/MakeListLengths.v
index a6dc4192b..cde86dca5 100644
--- a/src/Bedrock/Field/Common/Arrays/MakeListLengths.v
+++ b/src/Bedrock/Field/Common/Arrays/MakeListLengths.v
@@ -11,9 +11,9 @@ Import Types.Notations.
Existing Instanc... | Write or extend the proof(s) in src/Bedrock/Field/Common/Arrays/MakeListLengths.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff removes `mem` from a `Context` declaration and its corresponding `parameters_sentinel` type signature — a substantive type/signature change affecting how the module's definitions depend on their context, not merely whitespace or formatting adjustment. |
fiat-crypto_5a7b84ba_dd2d8ec9 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Field/Common/Types.v | proof_add | Require Import Coq.ZArith.ZArith.
Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require bedrock2.Syntax.
Require bedrock2.Semantics.
Require bedrock2.WeakestPrecondition.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Array bedrock2.Scalars.
Require Import coqutil.Map.Interface.
Req... | Require Import Coq.ZArith.ZArith.
Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require bedrock2.Syntax.
Require bedrock2.Semantics.
Require bedrock2.WeakestPrecondition.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Array bedrock2.Scalars.
Require Import coqutil.Map.Interface.
Req... | [] | diff --git a/src/Bedrock/Field/Common/Types.v b/src/Bedrock/Field/Common/Types.v
index f257844d0..fac2dbeef 100644
--- a/src/Bedrock/Field/Common/Types.v
+++ b/src/Bedrock/Field/Common/Types.v
@@ -35,16 +35,15 @@ End Notations.
Class parameters
{width: Z} {BW: Bitwidth.Bitwidth width} {word: word.word width} {mem: ... | Write or extend the proof(s) in src/Bedrock/Field/Common/Types.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff removes the `env` parameter from the `parameters` class and all dependent contexts/instances, which is a substantive signature/spec change to a core type definition in a hand-written proof file (`src/Bedrock/Field/Common/Types.v` in the non-generated `src/Bedrock/` tree), reflecting an API migration to match ... |
fiat-crypto_5a7b84ba_783315bc | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Field/Common/Util.v | proof_add | Require Import Coq.ZArith.ZArith.
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.Classes.Morphisms.
Require Import Coq.Classes.RelationClasses.
Require Import bedrock2.Array.
Require Import bedrock2.Scalars.
Require Import bedrock2.Syntax.
Require Import bedrock2.Map.Separation.... | Require Import Coq.ZArith.ZArith.
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.Classes.Morphisms.
Require Import Coq.Classes.RelationClasses.
Require Import bedrock2.Array.
Require Import bedrock2.Scalars.
Require Import bedrock2.Syntax.
Require Import bedrock2.Map.Separation.... | [] | diff --git a/src/Bedrock/Field/Common/Util.v b/src/Bedrock/Field/Common/Util.v
index 0f9fcd8b0..1b4a3130a 100644
--- a/src/Bedrock/Field/Common/Util.v
+++ b/src/Bedrock/Field/Common/Util.v
@@ -796,11 +796,9 @@ Section WeakestPrecondition.
Import Bitwidth bedrock2.WeakestPrecondition.
Context {width: Z} {BW: Bitwi... | Write or extend the proof(s) in src/Bedrock/Field/Common/Util.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff removes unused context arguments (`env` and `env_ok`) from a section header and updates two proof-body tactic applications (`expr_sound`) to match a changed API (removing `MetricLogging.EmptyMetricLog` parameter and adjusting destructuring), which is a substantive proof-engineering change aligned with an upst... |
fiat-crypto_5a7b84ba_41e11ea0 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Field/Interface/Compilation2.v | proof_add | Require Import Rupicola.Lib.Api.
Require Import Rupicola.Lib.Alloc.
Require Import Crypto.Bedrock.Specs.Field.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Local Open Scope Z_scope.
Section Compile.
Context {width: Z} {BW: Bitwidth width} {word: word.word width} {mem: map.map word Byte.byte}.
Context {loca... | Require Import Rupicola.Lib.Api.
Require Import Rupicola.Lib.Alloc.
Require Import Crypto.Bedrock.Specs.Field.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Local Open Scope Z_scope.
Section Compile.
Context {width: Z} {BW: Bitwidth width} {word: word.word width} {mem: map.map word Byte.byte}.
Context {loca... | [] | diff --git a/src/Bedrock/Field/Interface/Compilation2.v b/src/Bedrock/Field/Interface/Compilation2.v
index ddb5fe74e..c666a029b 100644
--- a/src/Bedrock/Field/Interface/Compilation2.v
+++ b/src/Bedrock/Field/Interface/Compilation2.v
@@ -7,11 +7,9 @@ Local Open Scope Z_scope.
Section Compile.
Context {width: Z} {BW:... | Write or extend the proof(s) in src/Bedrock/Field/Interface/Compilation2.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff removes an unused context variable `env` and its `env_ok` witness from the section, then updates six `Proof using` declarations to reflect this removal—these are semantically meaningful changes to the proof-engineering context (the proofs still type-check and work correctly without the unused variable), making... |
fiat-crypto_5a7b84ba_1277525a | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Field/Interface/Representation.v | proof_add | Require Import Coq.ZArith.ZArith.
Require Import Coq.Lists.List.
Require Import Coq.micromega.Lia.
Require Import coqutil.Byte.
Require Import coqutil.Word.Interface.
Require Import bedrock2.Semantics.
Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Arithmetic.ModOps.
Require Import Crypto.Arithmetic.Prime... | Require Import Coq.ZArith.ZArith.
Require Import Coq.Lists.List.
Require Import Coq.micromega.Lia.
Require Import coqutil.Byte.
Require Import coqutil.Word.Interface.
Require Import bedrock2.Semantics.
Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Arithmetic.ModOps.
Require Import Crypto.Arithmetic.Prime... | [] | diff --git a/src/Bedrock/Field/Interface/Representation.v b/src/Bedrock/Field/Interface/Representation.v
index 48c167128..774c2f3f5 100644
--- a/src/Bedrock/Field/Interface/Representation.v
+++ b/src/Bedrock/Field/Interface/Representation.v
@@ -17,9 +17,9 @@ Require Import Crypto.Util.ZUtil.Tactics.PullPush.Modulo.
Re... | Write or extend the proof(s) in src/Bedrock/Field/Interface/Representation.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff makes a substantive change to the `Context` declaration by removing the `env` parameter from the `parameters_sentinel` type class instantiation—this is a signature/specification change that reflects an upstream API migration in rupicola/bedrock2, plus minor trailing-whitespace cleanups; this is proof engineeri... |
fiat-crypto_5a7b84ba_37a68663 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Field/Stringification/Stringification.v | proof_add | Require Import Coq.ZArith.ZArith.
Require Import Coq.Lists.List.
Require Import Coq.Strings.String.
Require Import bedrock2.Syntax.
Require Import bedrock2.ToCString.
Require Import coqutil.Word.Naive coqutil.Map.SortedListWord coqutil.Map.SortedListString.
Require Import Crypto.Stringification.Language.
Require Import... | Require Import Coq.ZArith.ZArith.
Require Import Coq.Lists.List.
Require Import Coq.Strings.String.
Require Import bedrock2.Syntax.
Require Import bedrock2.ToCString.
Require Import coqutil.Word.Naive coqutil.Map.SortedListWord coqutil.Map.SortedListString.
Require Import Crypto.Stringification.Language.
Require Import... | [] | diff --git a/src/Bedrock/Field/Stringification/Stringification.v b/src/Bedrock/Field/Stringification/Stringification.v
index 1614a80e5..9ae50c049 100644
--- a/src/Bedrock/Field/Stringification/Stringification.v
+++ b/src/Bedrock/Field/Stringification/Stringification.v
@@ -28,9 +28,9 @@ Local Open Scope string_scope.
L... | Write or extend the proof(s) in src/Bedrock/Field/Stringification/Stringification.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff removes the `env` parameter from the `parameters` context/instance in a hand-written Bedrock proof file, which is a signature change affecting how the proof infrastructure is set up; while mostly whitespace/formatting, the substantive parameter removal and reordering require proof-body adjustments to remain v... |
fiat-crypto_5a7b84ba_d1f2403e | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Field/Synthesis/Examples/p224_64_new.v | proof_add | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Field.Interface.Representation.
Require Import Crypto.Bedrock.Field.Synthesis.New.ComputedOp.
Require Import Crypto.Bedrock.Field.Synthes... | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Field.Interface.Representation.
Require Import Crypto.Bedrock.Field.Synthesis.New.ComputedOp.
Require Import Crypto.Bedrock.Field.Synthes... | [] | diff --git a/src/Bedrock/Field/Synthesis/Examples/p224_64_new.v b/src/Bedrock/Field/Synthesis/Examples/p224_64_new.v
index 25dc8f6eb..ecb743e16 100644
--- a/src/Bedrock/Field/Synthesis/Examples/p224_64_new.v
+++ b/src/Bedrock/Field/Synthesis/Examples/p224_64_new.v
@@ -46,7 +46,7 @@ Section Field.
Definition from_mon... | Write or extend the proof(s) in src/Bedrock/Field/Synthesis/Examples/p224_64_new.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff is substantive proof engineering: it refactors proof specifications to use a new abstraction (`functions_contain` notation) that reflects changes in the underlying Bedrock2/Rupicola framework, adds a helper tactic `epair`, updates multiple `Derive ... SuchThat` statements to match the new API, and adjusts pro... |
fiat-crypto_5a7b84ba_a2295c1a | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Field/Synthesis/New/ComputedOp.v | proof_add | Require Import bedrock2.Syntax.
Require Import Crypto.Bedrock.Field.Common.Types.
Require Import Crypto.BoundsPipeline.
Require Import Crypto.Bedrock.Field.Synthesis.New.Signature.
Require Import Crypto.Language.API.
Import API.Compilers.
Record computed_op
{width BW word mem locals env ext_spec varname_gen erro... | Require Import bedrock2.Syntax.
Require Import Crypto.Bedrock.Field.Common.Types.
Require Import Crypto.BoundsPipeline.
Require Import Crypto.Bedrock.Field.Synthesis.New.Signature.
Require Import Crypto.Language.API.
Import API.Compilers.
Record computed_op
{width BW word mem locals ext_spec varname_gen error}
... | [] | diff --git a/src/Bedrock/Field/Synthesis/New/ComputedOp.v b/src/Bedrock/Field/Synthesis/New/ComputedOp.v
index faf87855e..05771d0f8 100644
--- a/src/Bedrock/Field/Synthesis/New/ComputedOp.v
+++ b/src/Bedrock/Field/Synthesis/New/ComputedOp.v
@@ -6,8 +6,8 @@ Require Import Crypto.Language.API.
Import API.Compilers.
R... | Write or extend the proof(s) in src/Bedrock/Field/Synthesis/New/ComputedOp.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff removes the `env` parameter from the `computed_op` record signature and its `parameters_sentinel` constraint, updating the `Global Arguments` declaration accordingly—a substantive type/signature change to a core definition in the Bedrock synthesis infrastructure, reflecting an API migration to a newer rupicol... |
fiat-crypto_5a7b84ba_6936656f | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Field/Synthesis/New/Signature.v | proof_add | Require Rupicola.Lib.Tactics.
Require Import Coq.micromega.Lia.
Require Import Coq.Strings.String.
Require Import Coq.Lists.List. (* after strings *)
Require Import Coq.QArith.QArith.
Require Import Coq.ZArith.ZArith.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import be... | Require Rupicola.Lib.Tactics.
Require Import Coq.micromega.Lia.
Require Import Coq.Strings.String.
Require Import Coq.Lists.List. (* after strings *)
Require Import Coq.QArith.QArith.
Require Import Coq.ZArith.ZArith.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import be... | [] | diff --git a/src/Bedrock/Field/Synthesis/New/Signature.v b/src/Bedrock/Field/Synthesis/New/Signature.v
index 0e5a567f7..1aaac6b30 100644
--- a/src/Bedrock/Field/Synthesis/New/Signature.v
+++ b/src/Bedrock/Field/Synthesis/New/Signature.v
@@ -36,9 +36,9 @@ Import Syntax.Coercions.
Local Open Scope Z_scope.
Section Ge... | Write or extend the proof(s) in src/Bedrock/Field/Synthesis/New/Signature.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This is a substantive proof engineering change involving: (1) removing the `env` parameter from context declarations and function signatures across multiple sections (signature-level change), (2) significant refactoring of the `use_translate_func_correct` tactic to extract and match hypothesis patterns with explicit va... |
fiat-crypto_5a7b84ba_47ff17e6 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Field/Synthesis/New/UnsaturatedSolinas.v | proof_add | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import bedrock2.Syntax.
Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Spec.ModularArithmetic.
Require Import Crypto.Arithmetic.ModularArithmeticTheorems.
Require Import Crypto.Bedrock.Specs.Field.
... | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import bedrock2.Syntax.
Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Spec.ModularArithmetic.
Require Import Crypto.Arithmetic.ModularArithmeticTheorems.
Require Import Crypto.Bedrock.Specs.Field.
... | [] | diff --git a/src/Bedrock/Field/Synthesis/New/UnsaturatedSolinas.v b/src/Bedrock/Field/Synthesis/New/UnsaturatedSolinas.v
index a245c75e1..f2a6719dd 100644
--- a/src/Bedrock/Field/Synthesis/New/UnsaturatedSolinas.v
+++ b/src/Bedrock/Field/Synthesis/New/UnsaturatedSolinas.v
@@ -27,8 +27,8 @@ Require Import Crypto.Util.Ta... | Write or extend the proof(s) in src/Bedrock/Field/Synthesis/New/UnsaturatedSolinas.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This is a substantive proof engineering change: the diff modifies function signatures (removing `env` parameter from class contexts), updates lemma statements (changing from cons-list pattern to map.get condition), and refactors proof bodies with tactic reorganization (moving `cbv` before `intros`, adding `[ .. | eassu... |
fiat-crypto_5a7b84ba_4db7e812 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Field/Synthesis/New/WordByWordMontgomery.v | proof_add | Require Import Coq.micromega.Lia.
Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import bedrock2.Syntax.
Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Spec.ModularArithmetic.
Require Import Crypto.Arithmetic.ModularArithmeticTheorems.
Require I... | Require Import Coq.micromega.Lia.
Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import bedrock2.Syntax.
Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Spec.ModularArithmetic.
Require Import Crypto.Arithmetic.ModularArithmeticTheorems.
Require I... | [] | diff --git a/src/Bedrock/Field/Synthesis/New/WordByWordMontgomery.v b/src/Bedrock/Field/Synthesis/New/WordByWordMontgomery.v
index 170c39f16..9a5813ae4 100644
--- a/src/Bedrock/Field/Synthesis/New/WordByWordMontgomery.v
+++ b/src/Bedrock/Field/Synthesis/New/WordByWordMontgomery.v
@@ -30,8 +30,8 @@ Import ListNotations ... | Write or extend the proof(s) in src/Bedrock/Field/Synthesis/New/WordByWordMontgomery.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff involves substantive proof-engineering changes: removing an `env` parameter from type signatures and class definitions, updating tactic sequences in multiple lemma proofs (adding `[ .. | eassumption ]` structured proofs, reordering tactics and intros), changing function signatures and hypothesis references th... |
fiat-crypto_5a7b84ba_8922e056 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Field/Translation/Flatten.v | proof_add | (* IF YOU CHANGE THIS FILE YOU MUST ALSO CHANGE src/Bedrock/Field/Stringification/FlattenVarData.v ! *)
Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import bedrock2.Array.
Require Import bedrock2.Syntax.
Require Import bedrock2.Semantics.
Require Import Crypto.Bedrock.Field.Common.Types.
Re... | (* IF YOU CHANGE THIS FILE YOU MUST ALSO CHANGE src/Bedrock/Field/Stringification/FlattenVarData.v ! *)
Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import bedrock2.Array.
Require Import bedrock2.Syntax.
Require Import bedrock2.Semantics.
Require Import Crypto.Bedrock.Field.Common.Types.
Re... | [] | diff --git a/src/Bedrock/Field/Translation/Flatten.v b/src/Bedrock/Field/Translation/Flatten.v
index cb8fe5f20..c10e4bc10 100644
--- a/src/Bedrock/Field/Translation/Flatten.v
+++ b/src/Bedrock/Field/Translation/Flatten.v
@@ -16,9 +16,9 @@ Import Types.Notations.
conversions between the two. *)
Section Flatten.
-... | Write or extend the proof(s) in src/Bedrock/Field/Translation/Flatten.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff changes a `Context` declaration by removing the `env` parameter from the context binders and from the `@parameters` signature, which is a substantive type/signature change affecting the proof context; however, the change is minimal (single parameter removal) and appears to be a mechanical API migration to mat... |
fiat-crypto_5a7b84ba_d6be5cb6 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Field/Translation/LoadStoreList.v | proof_add | (* IF YOU CHANGE THIS FILE YOU MUST ALSO CHANGE src/Bedrock/Field/Stringification/LoadStoreListVarData.v ! *)
Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import bedrock2.Array.
Require Import bedrock2.Scalars.
Require Impo... | (* IF YOU CHANGE THIS FILE YOU MUST ALSO CHANGE src/Bedrock/Field/Stringification/LoadStoreListVarData.v ! *)
Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import bedrock2.Array.
Require Import bedrock2.Scalars.
Require Impo... | [] | diff --git a/src/Bedrock/Field/Translation/LoadStoreList.v b/src/Bedrock/Field/Translation/LoadStoreList.v
index aba10a1f7..ef5c8ea03 100644
--- a/src/Bedrock/Field/Translation/LoadStoreList.v
+++ b/src/Bedrock/Field/Translation/LoadStoreList.v
@@ -27,9 +27,9 @@ Import Types.Notations.
then returns local variables ... | Write or extend the proof(s) in src/Bedrock/Field/Translation/LoadStoreList.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This is a substantive signature/type change to a `Context` declaration in a hand-written Bedrock file (not a generated template), removing the `env` parameter from the context and its use in the `@parameters` type-class constraint — this alters the proof environment and any proofs depending on this context must be re-v... |
fiat-crypto_5a7b84ba_5d032540 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Field/Translation/Proofs/Cmd.v | proof_add | Require Import Coq.ZArith.ZArith.
Require Import Coq.Lists.List.
Require Import Coq.micromega.Lia.
Require Import Coq.Strings.String.
Require Import bedrock2.ProgramLogic.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import bedrock2.WeakestPreconditionProperties.
Require ... | Require Import Coq.ZArith.ZArith.
Require Import Coq.Lists.List.
Require Import Coq.micromega.Lia.
Require Import Coq.Strings.String.
Require Import bedrock2.ProgramLogic.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import bedrock2.WeakestPreconditionProperties.
Require ... | [] | diff --git a/src/Bedrock/Field/Translation/Proofs/Cmd.v b/src/Bedrock/Field/Translation/Proofs/Cmd.v
index b78c44a15..f5e55e561 100644
--- a/src/Bedrock/Field/Translation/Proofs/Cmd.v
+++ b/src/Bedrock/Field/Translation/Proofs/Cmd.v
@@ -33,9 +33,9 @@ Import Wf.Compilers.expr.
Import Types.Notations.
Section Cmd.
- ... | Write or extend the proof(s) in src/Bedrock/Field/Translation/Proofs/Cmd.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff removes `mem` parameter from a Context declaration and replaces multiple instances of `WeakestPrecondition.call functions` with just `functions`, along with removing `solve [apply Proper_call]` arguments from `Proper_cmd` applications—substantive changes to proof obligations and function signatures that refle... |
fiat-crypto_5a7b84ba_ff61976c | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Field/Translation/Proofs/Expr.v | proof_add | Require Import Coq.ZArith.ZArith.
Require Import Coq.Lists.List.
Require Import Coq.micromega.Lia.
Require Import bedrock2.Syntax.
Require Import bedrock2.WeakestPreconditionProperties.
Require Import coqutil.Word.Interface coqutil.Word.Properties.
Require Import coqutil.Map.Interface.
Require Import Crypto.CastLemmas.... | Require Import Coq.ZArith.ZArith.
Require Import Coq.Lists.List.
Require Import Coq.micromega.Lia.
Require Import bedrock2.Syntax.
Require Import bedrock2.WeakestPreconditionProperties.
Require Import coqutil.Word.Interface coqutil.Word.Properties.
Require Import coqutil.Map.Interface.
Require Import Crypto.CastLemmas.... | [] | diff --git a/src/Bedrock/Field/Translation/Proofs/Expr.v b/src/Bedrock/Field/Translation/Proofs/Expr.v
index 9b19f359f..3fffc6fb6 100644
--- a/src/Bedrock/Field/Translation/Proofs/Expr.v
+++ b/src/Bedrock/Field/Translation/Proofs/Expr.v
@@ -30,9 +30,9 @@ Import Wf.Compilers.expr.
Import Types.Notations.
Section Exp... | Write or extend the proof(s) in src/Bedrock/Field/Translation/Proofs/Expr.v. Complete any unfinished proofs or add missing proof content. | accept | claude-sonnet-4-6 | This changes the type signature of the `Section Expr` context by removing the `env` type parameter from the `@parameters` typeclass instantiation, which is a substantive type/signature change. |
fiat-crypto_5a7b84ba_d7621bc6 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Field/Translation/Proofs/Flatten.v | proof_add | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.micromega.Lia.
Require Import bedrock2.Syntax.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import coqutil.Word.Interface coqutil.Word.Properties.
Require Import coqutil.Map.Interface coq... | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.micromega.Lia.
Require Import bedrock2.Syntax.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import coqutil.Word.Interface coqutil.Word.Properties.
Require Import coqutil.Map.Interface coq... | [] | diff --git a/src/Bedrock/Field/Translation/Proofs/Flatten.v b/src/Bedrock/Field/Translation/Proofs/Flatten.v
index b1797c5da..5294a76d0 100644
--- a/src/Bedrock/Field/Translation/Proofs/Flatten.v
+++ b/src/Bedrock/Field/Translation/Proofs/Flatten.v
@@ -29,9 +29,9 @@ Import Types.Notations.
conversions between the t... | Write or extend the proof(s) in src/Bedrock/Field/Translation/Proofs/Flatten.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff contains substantive signature/context changes (removing `env` parameter from the context declaration and its use in `@parameters`), which is a real type/signature modification, though mixed with whitespace-only changes; the signature edit alone qualifies as ACCEPT despite the trailing whitespace cleanup. |
fiat-crypto_5a7b84ba_871bd6e4 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Field/Translation/Proofs/Func.v | proof_add | Require Import Coq.ZArith.ZArith.
Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.micromega.Lia.
Require Import bedrock2.Syntax.
Require Import bedrock2.ProgramLogic.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import bedrock2.Weakest... | Require Import Coq.ZArith.ZArith.
Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.micromega.Lia.
Require Import bedrock2.Syntax.
Require Import bedrock2.ProgramLogic.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import bedrock2.Weakest... | [] | diff --git a/src/Bedrock/Field/Translation/Proofs/Func.v b/src/Bedrock/Field/Translation/Proofs/Func.v
index 86364aabc..3e259d2ff 100644
--- a/src/Bedrock/Field/Translation/Proofs/Func.v
+++ b/src/Bedrock/Field/Translation/Proofs/Func.v
@@ -36,9 +36,9 @@ Import Wf.Compilers.expr.
Import Types.Notations.
Section Fun... | Write or extend the proof(s) in src/Bedrock/Field/Translation/Proofs/Func.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains substantive proof-body tactic changes (removing `solve [apply Proper_call]` arguments to `Proper_cmd`, changing the function call representation, adding `eapply start_func`, and simplifying `cbn` calls), as well as signature/context changes (removing `env` parameter, changing `functions` type from `l... |
fiat-crypto_5a7b84ba_bb2f81c5 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Field/Translation/Proofs/LoadStoreList.v | proof_add | Require Import Coq.ZArith.ZArith.
Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.micromega.Lia.
Require Import bedrock2.Array.
Require Import bedrock2.Scalars.
Require Import bedrock2.Syntax.
Require Import bedrock2.ProgramLogic.
Require Import bedrock2.Map.Separation.
Require Impo... | Require Import Coq.ZArith.ZArith.
Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.micromega.Lia.
Require Import bedrock2.Array.
Require Import bedrock2.Scalars.
Require Import bedrock2.Syntax.
Require Import bedrock2.ProgramLogic.
Require Import bedrock2.Map.Separation.
Require Impo... | [] | diff --git a/src/Bedrock/Field/Translation/Proofs/LoadStoreList.v b/src/Bedrock/Field/Translation/Proofs/LoadStoreList.v
index 8fb5e655d..8e45c8835 100644
--- a/src/Bedrock/Field/Translation/Proofs/LoadStoreList.v
+++ b/src/Bedrock/Field/Translation/Proofs/LoadStoreList.v
@@ -34,9 +34,9 @@ Import API.Compilers.
Import... | Write or extend the proof(s) in src/Bedrock/Field/Translation/Proofs/LoadStoreList.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff makes substantive changes to proof bodies: removing `solve [apply Proper_call]` arguments from `Proper_cmd` applications, changing `WeakestPrecondition.call functions` to just `functions`, and reorganizing tactic applications, which reflect API changes in the underlying rupicola/bedrock2 libraries and require... |
fiat-crypto_5a7b84ba_caa194e3 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Field/Translation/Proofs/ValidComputable/Cmd.v | proof_add | Require Import Coq.ZArith.ZArith.
Require Import Coq.Bool.Bool.
Require Import Coq.Lists.List.
Require Import Coq.micromega.Lia.
Require Import (*hints*) Coq.btauto.Algebra.
Require Import bedrock2.Syntax.
Require Import coqutil.Word.Interface coqutil.Word.Properties.
Require Import coqutil.Map.Interface.
Require Impor... | Require Import Coq.ZArith.ZArith.
Require Import Coq.Bool.Bool.
Require Import Coq.Lists.List.
Require Import Coq.micromega.Lia.
Require Import (*hints*) Coq.btauto.Algebra.
Require Import bedrock2.Syntax.
Require Import coqutil.Word.Interface coqutil.Word.Properties.
Require Import coqutil.Map.Interface.
Require Impor... | [] | diff --git a/src/Bedrock/Field/Translation/Proofs/ValidComputable/Cmd.v b/src/Bedrock/Field/Translation/Proofs/ValidComputable/Cmd.v
index f5c26ea96..4227898e5 100644
--- a/src/Bedrock/Field/Translation/Proofs/ValidComputable/Cmd.v
+++ b/src/Bedrock/Field/Translation/Proofs/ValidComputable/Cmd.v
@@ -24,9 +24,9 @@ Impor... | Write or extend the proof(s) in src/Bedrock/Field/Translation/Proofs/ValidComputable/Cmd.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff removes the `env` parameter from the context definition and its use in the `@parameters` typeclass instantiation—a signature/context change that affects how proofs interact with the bedrock2 framework after a rupicola/bedrock2 update, making it a substantive proof engineering change; however, the actual proof... |
fiat-crypto_5a7b84ba_224158bb | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Field/Translation/Proofs/ValidComputable/Expr.v | proof_add | Require Import Coq.ZArith.ZArith.
Require Import Coq.Bool.Bool.
Require Import Coq.Lists.List.
Require Import Coq.micromega.Lia.
Require Import (*hints*) Coq.btauto.Algebra.
Require Import bedrock2.Syntax.
Require Import coqutil.Word.Interface coqutil.Word.Properties.
Require Import coqutil.Map.Interface.
Require Impor... | Require Import Coq.ZArith.ZArith.
Require Import Coq.Bool.Bool.
Require Import Coq.Lists.List.
Require Import Coq.micromega.Lia.
Require Import (*hints*) Coq.btauto.Algebra.
Require Import bedrock2.Syntax.
Require Import coqutil.Word.Interface coqutil.Word.Properties.
Require Import coqutil.Map.Interface.
Require Impor... | [] | diff --git a/src/Bedrock/Field/Translation/Proofs/ValidComputable/Expr.v b/src/Bedrock/Field/Translation/Proofs/ValidComputable/Expr.v
index e511e486d..e2fb50f6a 100644
--- a/src/Bedrock/Field/Translation/Proofs/ValidComputable/Expr.v
+++ b/src/Bedrock/Field/Translation/Proofs/ValidComputable/Expr.v
@@ -22,9 +22,9 @@ I... | Write or extend the proof(s) in src/Bedrock/Field/Translation/Proofs/ValidComputable/Expr.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff removes a context parameter (`env`) from the section context and its corresponding use in the `@parameters` typeclass invocation, which constitutes a substantive signature/specification change to the proof environment, even though the line formatting also changed slightly. |
fiat-crypto_5a7b84ba_cfe619a1 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Group/AdditionChains.v | proof_add | Require Import Rupicola.Lib.Api.
Require Import Rupicola.Lib.Loops.
Require Import Rupicola.Lib.ControlFlow.DownTo.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Arithmetic.FLia.
Require Import Crypto.Bedrock.Specs.Field.
Require Import Crypto.Bedrock.Field.Interface.Compilation2.
Require I... | Require Import Rupicola.Lib.Api.
Require Import Rupicola.Lib.Loops.
Require Import Rupicola.Lib.ControlFlow.DownTo.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Arithmetic.FLia.
Require Import Crypto.Bedrock.Specs.Field.
Require Import Crypto.Bedrock.Field.Interface.Compilation2.
Require I... | [] | diff --git a/src/Bedrock/Group/AdditionChains.v b/src/Bedrock/Group/AdditionChains.v
index 0d5804a6a..a96432a51 100644
--- a/src/Bedrock/Group/AdditionChains.v
+++ b/src/Bedrock/Group/AdditionChains.v
@@ -29,11 +29,9 @@ Section FElems.
Context {width: Z} {BW: Bitwidth width} {word: word.word width} {mem: map.map w... | Write or extend the proof(s) in src/Bedrock/Group/AdditionChains.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff removes `env` and `env_ok` context declarations and updates `Proof using` clauses to match—a substantive signature/context change that reflects an API migration in the bedrock2/rupicola dependency, not a mere whitespace or import-only edit. |
fiat-crypto_5a7b84ba_764ce2e8 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Group/Point.v | proof_add | Require Import Rupicola.Lib.Api.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Specs.Field.
Section Gallina.
Definition point {field_parameters : FieldParameters} : Type
:= (F M_pos * F M_pos).
End Gallina.
Section Compile.
Context {width: Z} {BW: Bitwidth width} {word: wo... | Require Import Rupicola.Lib.Api.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Specs.Field.
Section Gallina.
Definition point {field_parameters : FieldParameters} : Type
:= (F M_pos * F M_pos).
End Gallina.
Section Compile.
Context {width: Z} {BW: Bitwidth width} {word: wo... | [] | diff --git a/src/Bedrock/Group/Point.v b/src/Bedrock/Group/Point.v
index 3c8f5cfbf..0f7ba7c4a 100644
--- a/src/Bedrock/Group/Point.v
+++ b/src/Bedrock/Group/Point.v
@@ -10,11 +10,9 @@ End Gallina.
Section Compile.
Context {width: Z} {BW: Bitwidth width} {word: word.word width} {mem: map.map word Byte.byte}.
Cont... | Write or extend the proof(s) in src/Bedrock/Group/Point.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff removes two context declarations (`env` and `env_ok`) from the Section header in a Bedrock2 verification file, which is a substantive change to the proof environment/signature that affects how subsequent proofs are formulated — this is a real proof-engineering adaptation to an upstream API change ("wp is comp... |
fiat-crypto_5a7b84ba_cdc1732c | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Group/ScalarMult/CSwap.v | proof_add | Require Import Coq.Program.Tactics.
Require Import Rupicola.Lib.Api.
Require Import Rupicola.Lib.Loops.
Require Import bedrock2.Semantics.
Require Import coqutil.Word.Interface coqutil.Byte.
Local Open Scope Z_scope.
Require Import Rupicola.Lib.Arrays.
Require Import Rupicola.Lib.Api.
Require Import Rupicola.Lib.Allo... | Require Import Coq.Program.Tactics.
Require Import Rupicola.Lib.Api.
Require Import Rupicola.Lib.Loops.
Require Import bedrock2.Semantics.
Require Import coqutil.Word.Interface coqutil.Byte.
Local Open Scope Z_scope.
Require Import Rupicola.Lib.Arrays.
Require Import Rupicola.Lib.Api.
Require Import Rupicola.Lib.Allo... | [] | diff --git a/src/Bedrock/Group/ScalarMult/CSwap.v b/src/Bedrock/Group/ScalarMult/CSwap.v
index be4291ee5..5cb176ab3 100644
--- a/src/Bedrock/Group/ScalarMult/CSwap.v
+++ b/src/Bedrock/Group/ScalarMult/CSwap.v
@@ -24,11 +24,9 @@ Section __.
Context {width: Z} {BW: Bitwidth width} {word: word.word width} {mem: map.m... | Write or extend the proof(s) in src/Bedrock/Group/ScalarMult/CSwap.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff removes unused Context declarations (`env` and `env_ok`) and updates a `Proof using` clause to match, which is a substantive signature/specification change to the proof environment — not mere whitespace or `Proof using` addition to unchanged proofs, but rather trimming the proof's stated dependencies after re... |
fiat-crypto_5a7b84ba_a59c7509 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Group/ScalarMult/LadderStep.v | proof_add | Require Import Rupicola.Lib.Api. Import bedrock2.WeakestPrecondition.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Specs.Field.
Require Import Crypto.Bedrock.Field.Interface.Compilation2.
Local Open Scope Z_scope.
Section Gallina.
Local Open Scope F_scope.
Definition ladderst... | Require Import Rupicola.Lib.Api. Import bedrock2.WeakestPrecondition.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Specs.Field.
Require Import Crypto.Bedrock.Field.Interface.Compilation2.
Local Open Scope Z_scope.
Section Gallina.
Local Open Scope F_scope.
Definition ladderst... | [] | diff --git a/src/Bedrock/Group/ScalarMult/LadderStep.v b/src/Bedrock/Group/ScalarMult/LadderStep.v
index 3313e7af9..e5e5263a3 100644
--- a/src/Bedrock/Group/ScalarMult/LadderStep.v
+++ b/src/Bedrock/Group/ScalarMult/LadderStep.v
@@ -33,11 +33,9 @@ End Gallina.
Section __.
Context {width: Z} {BW: Bitwidth width} {wo... | Write or extend the proof(s) in src/Bedrock/Group/ScalarMult/LadderStep.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff removes unused context declarations (`env` and `env_ok`) and updates a `Proof using` clause to reflect those removals—substantive proof-engineering maintenance that adjusts proof dependencies to match a bedrock2/rupicola API change where environment handling was refactored, which qualifies as a real proof-bod... |
fiat-crypto_5a7b84ba_91f46749 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Group/ScalarMult/MontgomeryLadder.v | proof_add | Require Import Rupicola.Lib.Api.
Require Import Rupicola.Lib.Alloc.
Require Import Rupicola.Lib.SepLocals.
Require Import Rupicola.Lib.ControlFlow.DownTo.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Group.ScalarMult.LadderStep.
Require Import Crypto.Bedrock.Group.ScalarMult.CSwap.... | Require Import Rupicola.Lib.Api.
Require Import Rupicola.Lib.Alloc.
Require Import Rupicola.Lib.SepLocals.
Require Import Rupicola.Lib.ControlFlow.DownTo.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Group.ScalarMult.LadderStep.
Require Import Crypto.Bedrock.Group.ScalarMult.CSwap.... | [] | diff --git a/src/Bedrock/Group/ScalarMult/MontgomeryLadder.v b/src/Bedrock/Group/ScalarMult/MontgomeryLadder.v
index 4410de585..fa6f90ad8 100644
--- a/src/Bedrock/Group/ScalarMult/MontgomeryLadder.v
+++ b/src/Bedrock/Group/ScalarMult/MontgomeryLadder.v
@@ -75,11 +75,9 @@ Section __.
Context {width: Z} {BW: Bitwidt... | Write or extend the proof(s) in src/Bedrock/Group/ScalarMult/MontgomeryLadder.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff removes two Context declarations (`env` and `env_ok`) and fixes trailing whitespace, which are mostly mechanical; however, removing context parameters from the section is a type-signature/scope change that could affect proof validity and should be verified as substantive code engineering rather than pure forma... |
fiat-crypto_5a7b84ba_d9776fd0 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Group/ScalarMult/ScalarMult.v | proof_add | (* NOTE: broken, fix after Crypto.Bedrock.Group.ScalarMult.MontgomeryLadder. *)
Require Import Rupicola.Lib.Api. (* for helpful tactics + notations *)
Require Import coqutil.Byte.
Require Import Crypto.Algebra.Hierarchy.
Require Import Crypto.Algebra.ScalarMult.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Requ... | (* NOTE: broken, fix after Crypto.Bedrock.Group.ScalarMult.MontgomeryLadder. *)
Require Import Rupicola.Lib.Api. (* for helpful tactics + notations *)
Require Import coqutil.Byte.
Require Import Crypto.Algebra.Hierarchy.
Require Import Crypto.Algebra.ScalarMult.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Requ... | [] | diff --git a/src/Bedrock/Group/ScalarMult/ScalarMult.v b/src/Bedrock/Group/ScalarMult/ScalarMult.v
index 7481fd3f9..549170c03 100644
--- a/src/Bedrock/Group/ScalarMult/ScalarMult.v
+++ b/src/Bedrock/Group/ScalarMult/ScalarMult.v
@@ -17,11 +17,9 @@ Module M.
Section __.
Context {width: Z} {BW: Bitwidth width} {w... | Write or extend the proof(s) in src/Bedrock/Group/ScalarMult/ScalarMult.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This is a substantive proof-body change: the lemma statement is modified (adding a `map.get` hypothesis and changing the spec quantification), context declarations are removed, and the proof tactic sequence is significantly rewritten (replacing manual `WeakestPrecondition.unfold1_call_goal` and conditional-checking log... |
fiat-crypto_5a7b84ba_2da746a7 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Specs/Field.v | proof_add | Require Import coqutil.Byte coqutil.Word.LittleEndianList.
Require Import Rupicola.Lib.Api.
Require Import Crypto.Algebra.Hierarchy.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Field.Synthesis.Generic.Bignum.
Require Import Crypto.Bedrock.Field.Common.Arrays.MaxBounds.
Require Imp... | Require Import coqutil.Byte coqutil.Word.LittleEndianList.
Require Import Rupicola.Lib.Api.
Require Import Crypto.Algebra.Hierarchy.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Field.Synthesis.Generic.Bignum.
Require Import Crypto.Bedrock.Field.Common.Arrays.MaxBounds.
Require Imp... | [] | diff --git a/src/Bedrock/Specs/Field.v b/src/Bedrock/Specs/Field.v
index 30d668fdc..9f8d763ac 100644
--- a/src/Bedrock/Specs/Field.v
+++ b/src/Bedrock/Specs/Field.v
@@ -116,11 +116,9 @@ End BignumToFieldRepresentationAdapterLemmas.
Section FunctionSpecs.
Context {width: Z} {BW: Bitwidth width} {word: word.word widt... | Write or extend the proof(s) in src/Bedrock/Specs/Field.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff removes unused `env` and `env_ok` context declarations from two `Section`s in a Bedrock2 specification file—this is a substantive signature/context change that simplifies the proof dependencies, though the core proof bodies remain unchanged and the modifications are primarily contextual cleanup rather than pro... |
fiat-crypto_5a7b84ba_d9f2eb04 | fiat-crypto | coq | 5a7b84baa9f66a4f639dffaab66206b239adca5e | eb9e5bcfffdd157e63a5776fcbefe5275f8d6448 | update to a rupicola/bedrock2 where wp is complete wrt exec | src/Bedrock/Specs/Group.v | proof_add | Require Import bedrock2.Semantics.
Require Import Rupicola.Lib.Api. Import bedrock2.WeakestPrecondition.
Require Import Crypto.Algebra.Group.
Require Import Crypto.Algebra.Hierarchy.
Require Import Crypto.Algebra.ScalarMult.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Class GroupParameters :=
{ (** mathemat... | Require Import bedrock2.Semantics.
Require Import Rupicola.Lib.Api. Import bedrock2.WeakestPrecondition.
Require Import Crypto.Algebra.Group.
Require Import Crypto.Algebra.Hierarchy.
Require Import Crypto.Algebra.ScalarMult.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Class GroupParameters :=
{ (** mathemat... | [] | diff --git a/src/Bedrock/Specs/Group.v b/src/Bedrock/Specs/Group.v
index a611c3290..1e09758e3 100644
--- a/src/Bedrock/Specs/Group.v
+++ b/src/Bedrock/Specs/Group.v
@@ -32,7 +32,6 @@ Class GroupRepresentation {G : Type} {width} {BW:Bitwidth.Bitwidth width} {word
Section FunctionSpecs.
Context {width: Z} {BW: Bitwid... | Write or extend the proof(s) in src/Bedrock/Specs/Group.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff removes a `Context` declaration (the `env` parameter) from the `FunctionSpecs` section, which is a signature/context-parameter change affecting the specifications that follow; while minimal, it represents a substantive modification to the proof setup that would require verification that dependent proofs still... |
fiat-crypto_60efd195_03c8880d | fiat-crypto | coq | 60efd195b71a696a9f36f5f001d0a92eba96e4a6 | be2bfa67d9eda9fc86bc1ad94bfa696ce476a1fc | Qualifying M.eq coming from MontgomeryCurve. | src/Curves/Montgomery/XZProofs.v | proof_add | Require Import Crypto.Algebra.Field.
Require Import Crypto.Algebra.ScalarMult.
Require Import Crypto.Util.Sum Crypto.Util.Prod Crypto.Util.LetIn.
Require Import Crypto.Util.Decidable.
Require Import Crypto.Util.Tuple.
Require Import Crypto.Util.ZUtil.Notations.
Require Import Crypto.Util.ZUtil.Tactics.LtbToLt.
Require ... | Require Import Crypto.Algebra.Field.
Require Import Crypto.Algebra.ScalarMult.
Require Import Crypto.Util.Sum Crypto.Util.Prod Crypto.Util.LetIn.
Require Import Crypto.Util.Decidable.
Require Import Crypto.Util.Tuple.
Require Import Crypto.Util.ZUtil.Notations.
Require Import Crypto.Util.ZUtil.Tactics.LtbToLt.
Require ... | [] | diff --git a/src/Curves/Montgomery/XZProofs.v b/src/Curves/Montgomery/XZProofs.v
index 4cb2231e0..331288596 100644
--- a/src/Curves/Montgomery/XZProofs.v
+++ b/src/Curves/Montgomery/XZProofs.v
@@ -172,7 +172,7 @@ Module M.
Proof. specialize (a2m4_nonsquare 0). fsatz. Qed.
Lemma difference_preserved Q Q' :
-... | Write or extend the proof(s) in src/Curves/Montgomery/XZProofs.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff changes identifier references in proof bodies and type signatures from `M.eq` to `MontgomeryCurve.M.eq` (a module-qualification migration), including updates to tactic arguments (`cbv [...]`), hint declarations, and instance/lemma signatures — all substantive proof-engineering changes that affect how proofs a... |
fiat-crypto_383842d1_e208311e | fiat-crypto | coq | 383842d19d1c979aae1b723cdde68e3f4d3fd5cf | 7f23bce57879a856e74630be7cd635f07b25a6cc | Fix Qed! Final cleanup | src/Bedrock/End2End/X25519/AddPrecomputed.v | proof_add | Require Import bedrock2.Array.
Require Import bedrock2.FE310CSemantics.
Require Import bedrock2.Loops.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import bedrock2.NotationsCustomEntry.
Require Import bedrock2.ProgramLogic.
Require Import bedrock2.Scalars.
Require Import ... | Require Import bedrock2.Array.
Require Import bedrock2.FE310CSemantics.
Require Import bedrock2.Loops.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import bedrock2.NotationsCustomEntry.
Require Import bedrock2.ProgramLogic.
Require Import bedrock2.Scalars.
Require Import ... | [] | diff --git a/src/Bedrock/End2End/X25519/AddPrecomputed.v b/src/Bedrock/End2End/X25519/AddPrecomputed.v
index de83d819f..7afcbc1bf 100644
--- a/src/Bedrock/End2End/X25519/AddPrecomputed.v
+++ b/src/Bedrock/End2End/X25519/AddPrecomputed.v
@@ -122,15 +122,16 @@ Local Arguments word.wrap : simpl never.
Local Arguments wor... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/AddPrecomputed.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff includes substantive proof-body changes: removal of an `AdmitAxiom` dependency (indicating a completed proof), addition of a new `cbv_bounds` Ltac helper, a refactored `solve_bounds` tactic, a new demonstrative `Example` with a `Qed`, strategic changes to handle performance issues, variable renaming in `remem... |
fiat-crypto_7f23bce5_451315ea | fiat-crypto | coq | 7f23bce57879a856e74630be7cd635f07b25a6cc | 5007e3debda89c40f2588e2ebe91f2e917ea02f5 | Remove unnecessary frep_ok steps | src/Bedrock/End2End/X25519/MontgomeryLadderProperties.v | proof_add | Require Import Coq.ZArith.ZArith.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.MMIO.
Require Import compiler.NaiveRiscvWordProperties.
Require Import coqutil.Map.SortedListWord.
Require Impo... | Require Import Coq.ZArith.ZArith.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.MMIO.
Require Import compiler.NaiveRiscvWordProperties.
Require Import coqutil.Map.SortedListWord.
Require Impo... | [] | diff --git a/src/Bedrock/End2End/X25519/MontgomeryLadderProperties.v b/src/Bedrock/End2End/X25519/MontgomeryLadderProperties.v
index 00d85ac96..2b0cef4ee 100644
--- a/src/Bedrock/End2End/X25519/MontgomeryLadderProperties.v
+++ b/src/Bedrock/End2End/X25519/MontgomeryLadderProperties.v
@@ -127,8 +127,6 @@ Proof.
(* ... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/MontgomeryLadderProperties.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff removes three instances of field representation validity proofs (`apply Signature.field_representation_ok` with `apply UnsaturatedSolinas.relax_valid`) from proof bodies, indicating these proof obligations were either discharged by typeclass resolution or made redundant by other changes—a genuine proof-body t... |
fiat-crypto_5d18f5db_1d539b52 | fiat-crypto | coq | 5d18f5db6a3acdd06f2915bda50b81b7199e0dcb | f3e02dab38789e02ea2daa58409d0809062f8a60 | cleaning up | src/Bedrock/End2End/X25519/AddPrecomputed.v | proof_add | Require Import bedrock2.Array.
Require Import bedrock2.FE310CSemantics.
Require Import bedrock2.Loops.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import bedrock2.NotationsCustomEntry.
Require Import bedrock2.ProgramLogic.
Require Import bedrock2.Scalars.
Require Import ... | Require Import bedrock2.Array.
Require Import bedrock2.FE310CSemantics.
Require Import bedrock2.Loops.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import bedrock2.NotationsCustomEntry.
Require Import bedrock2.ProgramLogic.
Require Import bedrock2.Scalars.
Require Import ... | [] | diff --git a/src/Bedrock/End2End/X25519/AddPrecomputed.v b/src/Bedrock/End2End/X25519/AddPrecomputed.v
index 7f8653323..ba899366c 100644
--- a/src/Bedrock/End2End/X25519/AddPrecomputed.v
+++ b/src/Bedrock/End2End/X25519/AddPrecomputed.v
@@ -47,6 +47,7 @@ Import WeakestPrecondition.
Local Existing Instance field_para... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/AddPrecomputed.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff contains substantive proof-engineering changes: (1) a new local tactic definition `clear_extras`, (2) a commented-out instance declaration (active change to the context), (3) a comment addition marking a TODO, (4) removal of a comment `(* eexists? *)`, and (5) changing the proof terminator from `Qed.` to `Admi... |
fiat-crypto_5d18f5db_538db6fb | fiat-crypto | coq | 5d18f5db6a3acdd06f2915bda50b81b7199e0dcb | f3e02dab38789e02ea2daa58409d0809062f8a60 | cleaning up | src/Bedrock/End2End/X25519/Field25519.v | proof_add | Require Import Coq.Strings.String. Local Open Scope string_scope.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import coqutil.Word.Bitwidth32.
Require Import coqutil.Macros.WithBaseName.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Field.Common.Names.Var... | Require Import Coq.Strings.String. Local Open Scope string_scope.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import coqutil.Word.Bitwidth32.
Require Import coqutil.Macros.WithBaseName.
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Bedrock.Field.Common.Names.Var... | [] | diff --git a/src/Bedrock/End2End/X25519/Field25519.v b/src/Bedrock/End2End/X25519/Field25519.v
index a155e7e2a..b9a892d01 100644
--- a/src/Bedrock/End2End/X25519/Field25519.v
+++ b/src/Bedrock/End2End/X25519/Field25519.v
@@ -129,4 +129,10 @@ Section Field.
(&,fe25519_scmula24 :: functions))
... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/Field25519.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds a substantive new instance definition with a real proof body (two tactic lines applying lemmas), which constitutes proof engineering content that belongs in an evaluation dataset, despite the generic commit message. |
fiat-crypto_5d18f5db_963e8c86 | fiat-crypto | coq | 5d18f5db6a3acdd06f2915bda50b81b7199e0dcb | f3e02dab38789e02ea2daa58409d0809062f8a60 | cleaning up | src/Bedrock/End2End/X25519/MontgomeryLadder.v | proof_add | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | [] | diff --git a/src/Bedrock/End2End/X25519/MontgomeryLadder.v b/src/Bedrock/End2End/X25519/MontgomeryLadder.v
index c7bd0f38d..0c0cf25ab 100644
--- a/src/Bedrock/End2End/X25519/MontgomeryLadder.v
+++ b/src/Bedrock/End2End/X25519/MontgomeryLadder.v
@@ -16,60 +16,35 @@ Require Import Crypto.Bedrock.Group.ScalarMult.LadderSt... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/MontgomeryLadder.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff removes obsolete definitions (square_and_add, mul_and_add, add_precomputed) and their specifications, replaces them with new x25519 function definitions and a new spec_of_x25519 specification that uses derived montladder functions, and substantially rewrites the proof content (removing old specs and adding new... |
fiat-crypto_f3e02dab_7e19429d | fiat-crypto | coq | f3e02dab38789e02ea2daa58409d0809062f8a60 | a0448b4f1ae9a08bdd398fa382088481abe61458 | Small tidying | src/Bedrock/End2End/X25519/AddPrecomputed.v | proof_add | Require Import bedrock2.Array.
Require Import bedrock2.FE310CSemantics.
Require Import bedrock2.Loops.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import bedrock2.NotationsCustomEntry.
Require Import bedrock2.ProgramLogic.
Require Import bedrock2.Scalars.
Require Import ... | Require Import bedrock2.Array.
Require Import bedrock2.FE310CSemantics.
Require Import bedrock2.Loops.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import bedrock2.NotationsCustomEntry.
Require Import bedrock2.ProgramLogic.
Require Import bedrock2.Scalars.
Require Import ... | [] | diff --git a/src/Bedrock/End2End/X25519/AddPrecomputed.v b/src/Bedrock/End2End/X25519/AddPrecomputed.v
index 3abe604f8..7f8653323 100644
--- a/src/Bedrock/End2End/X25519/AddPrecomputed.v
+++ b/src/Bedrock/End2End/X25519/AddPrecomputed.v
@@ -36,6 +36,7 @@ Require Import Crypto.Bedrock.End2End.X25519.Field25519.
Require... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/AddPrecomputed.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff is primarily housekeeping: adding `Require Import Lia`, removing comments (`(* Better way... *)`, `(* Need to specify... *)`, `(* experiment*)`), changing comments to TODOs, and replacing `Lia.lia` with lowercase `lia` (which is substantive tactic change but minimal). The only semantically meaningful change i... |
fiat-crypto_a0448b4f_1e338011 | fiat-crypto | coq | a0448b4f1ae9a08bdd398fa382088481abe61458 | cf42f1069784f54f821487bcd0337c508ed11c03 | Fix admits and clean up | src/Bedrock/End2End/X25519/AddPrecomputed.v | proof_add | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | Require Import bedrock2.Array.
Require Import bedrock2.FE310CSemantics.
Require Import bedrock2.Loops.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Map.SeparationLogic.
Require Import bedrock2.NotationsCustomEntry.
Require Import bedrock2.ProgramLogic.
Require Import bedrock2.Scalars.
Require Import ... | [] | diff --git a/src/Bedrock/End2End/X25519/AddPrecomputed.v b/src/Bedrock/End2End/X25519/AddPrecomputed.v
index 4de29613c..3abe604f8 100644
--- a/src/Bedrock/End2End/X25519/AddPrecomputed.v
+++ b/src/Bedrock/End2End/X25519/AddPrecomputed.v
@@ -1,36 +1,51 @@
-Require Import Coq.Strings.String.
-Require Import Coq.Lists.Lis... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/AddPrecomputed.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff is substantive proof engineering: it reorganizes imports (which alone would be reject-worthy), but critically it converts an `Admitted` proof (`frep_ok`) into a real proof with `Proof. apply... Qed.`, refactors tactic definitions (`unwrap_fn_step` → `single_step`), restructures the main proof (`add_precompute... |
fiat-crypto_cf42f106_dd88da72 | fiat-crypto | coq | cf42f1069784f54f821487bcd0337c508ed11c03 | 36db466a6296353dda50596d912afe8ffb6aeb4e | 2 does, in fact, fit the bounds | src/Bedrock/End2End/X25519/AddPrecomputed.v | proof_add | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | [] | diff --git a/src/Bedrock/End2End/X25519/AddPrecomputed.v b/src/Bedrock/End2End/X25519/AddPrecomputed.v
index 330d6f032..4de29613c 100644
--- a/src/Bedrock/End2End/X25519/AddPrecomputed.v
+++ b/src/Bedrock/End2End/X25519/AddPrecomputed.v
@@ -159,7 +159,7 @@ Proof.
unwrap_fn_step. 3,4:solve_mem. 1,2:solve_bounds. solv... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/AddPrecomputed.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This is a substantive proof-body change in a hand-written Bedrock file (not a generated artifact), where `admit` is replaced with `1,2:solve_bounds`, completing a previously unfinished proof obligation regarding bounds checking for the constant 2 in X25519 field arithmetic. |
fiat-crypto_63a6ba42_9b5fda9a | fiat-crypto | coq | 63a6ba42f418d2031342cf8e63d3e4428c88473d | e34854f80833d0976cc4ba98a540481a7ea91c0a | remove some dead code from garagedoor funcs, tidy | src/Bedrock/End2End/X25519/GarageDoorTop.v | proof_add | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | [] | diff --git a/src/Bedrock/End2End/X25519/GarageDoorTop.v b/src/Bedrock/End2End/X25519/GarageDoorTop.v
index 51c54b468..8829a959d 100644
--- a/src/Bedrock/End2End/X25519/GarageDoorTop.v
+++ b/src/Bedrock/End2End/X25519/GarageDoorTop.v
@@ -25,6 +25,7 @@ Require Import bedrock2Examples.memconst.
Require Import Rupicola.Ex... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/GarageDoorTop.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff removes dead code and adds comments/organizational structure to a function list, but also includes a new `Import` statement (line 28) and commented-out `Compute` directives for display/debugging; the substantive changes are mainly organizational tidying with comment-based grouping of existing functions, which ... |
fiat-crypto_36db466a_597488ca | fiat-crypto | coq | 36db466a6296353dda50596d912afe8ffb6aeb4e | 2ec98950f1a69703d832e861994912e8e080a7fe | Clean up add_precomputed_partial | src/Bedrock/End2End/X25519/AddPrecomputed.v | proof_add | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | [] | diff --git a/src/Bedrock/End2End/X25519/AddPrecomputed.v b/src/Bedrock/End2End/X25519/AddPrecomputed.v
index 57adf9e1b..330d6f032 100644
--- a/src/Bedrock/End2End/X25519/AddPrecomputed.v
+++ b/src/Bedrock/End2End/X25519/AddPrecomputed.v
@@ -58,25 +58,6 @@ Definition add_precomputed := func! (ox, oy, oz, ot, X1, Y1, Z1,... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/AddPrecomputed.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff removes function definitions and specifications (`add_precomputed_partial` function body and its `spec_of` instance) plus a commented-out line, which constitutes deletion of substantive proof engineering artifacts (even though they appear to be unused/cleanup); this is a real code change affecting the module's... |
fiat-crypto_0ff53209_e84a7e60 | fiat-crypto | coq | 0ff53209188b9b75cf6916f166277feaea9e2556 | b1cfb950f4e517fe6e41a44488788cf687da85b7 | some outputs | src/Bedrock/End2End/X25519/AddPrecomputed.v | proof_add | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | [] | diff --git a/src/Bedrock/End2End/X25519/AddPrecomputed.v b/src/Bedrock/End2End/X25519/AddPrecomputed.v
index 471278b69..d4e3926a0 100644
--- a/src/Bedrock/End2End/X25519/AddPrecomputed.v
+++ b/src/Bedrock/End2End/X25519/AddPrecomputed.v
@@ -56,7 +56,7 @@ Definition add_precomputed := func! (ox, oy, oz, ot, X1, Y1, Z1, ... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/AddPrecomputed.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This is substantive proof engineering: the diff modifies function signatures (adding `ox` and `oy` parameters), updates the specification's preconditions/postconditions with existential quantifiers and new bounds, adds proof-body tactics handling the new outputs, and replaces a `Qed` with `Admitted` on incomplete proof... |
fiat-crypto_b1cfb950_9f23ab52 | fiat-crypto | coq | b1cfb950f4e517fe6e41a44488788cf687da85b7 | ede27d727a15fca8b9ffa90e2c5c270cf11d54f7 | automate stack solving! | src/Bedrock/End2End/X25519/AddPrecomputed.v | proof_add | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | [] | diff --git a/src/Bedrock/End2End/X25519/AddPrecomputed.v b/src/Bedrock/End2End/X25519/AddPrecomputed.v
index a1a06a482..471278b69 100644
--- a/src/Bedrock/End2End/X25519/AddPrecomputed.v
+++ b/src/Bedrock/End2End/X25519/AddPrecomputed.v
@@ -146,17 +146,6 @@ Local Arguments word.rep : simpl never.
Local Arguments word.... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/AddPrecomputed.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains substantive proof-body tactic changes: a new parameterized `solve_stack` Ltac definition (line 169–180) replaces and automates previous inline stack-solving code, and the main proof is refactored to call this tactic repeatedly, reducing duplication and changing hypothesis references (e.g., H10→H47), ... |
fiat-crypto_ede27d72_d50ba07b | fiat-crypto | coq | ede27d727a15fca8b9ffa90e2c5c270cf11d54f7 | 5a84060c475d9d927cd44e44b1284a33bc2ba68e | more steps in add_precomputed_partial | src/Bedrock/End2End/X25519/AddPrecomputed.v | proof_add | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | [] | diff --git a/src/Bedrock/End2End/X25519/AddPrecomputed.v b/src/Bedrock/End2End/X25519/AddPrecomputed.v
index 1aa7eb46e..a1a06a482 100644
--- a/src/Bedrock/End2End/X25519/AddPrecomputed.v
+++ b/src/Bedrock/End2End/X25519/AddPrecomputed.v
@@ -56,11 +56,17 @@ Definition add_precomputed := func! (ox, oy, oz, ot, X1, Y1, Z1... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/AddPrecomputed.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff substantively extends the proof body of `add_precomputed_partial_ok` with additional tactic steps to handle new function parameters and memory/bounds goals, reorganizes the function signature and spec to match expanded functionality, and refactors the `solve_bounds` Ltac to be more precise — all clearly proof... |
fiat-crypto_5a84060c_20918f7b | fiat-crypto | coq | 5a84060c475d9d927cd44e44b1284a33bc2ba68e | 5b278d324875967d83e4ddf8c058da95d2d26325 | Fix admit | src/Bedrock/End2End/X25519/AddPrecomputed.v | proof_add | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | [] | diff --git a/src/Bedrock/End2End/X25519/AddPrecomputed.v b/src/Bedrock/End2End/X25519/AddPrecomputed.v
index 9c3fb1381..1aa7eb46e 100644
--- a/src/Bedrock/End2End/X25519/AddPrecomputed.v
+++ b/src/Bedrock/End2End/X25519/AddPrecomputed.v
@@ -163,9 +163,11 @@ Local Ltac solve_mem :=
Lemma add_precomputed_partial_ok : ... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/AddPrecomputed.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This is a substantive proof-body change completing an unfinished proof: the tactics are modified throughout (`straightline_call`, `ssplit`, removal of `unwrap_calls`, restructured layout), an `admit` is replaced with `trivial`, hypothesis indices are corrected (H17→H19), and the final `Admitted` is replaced with `Qed`,... |
fiat-crypto_789a135d_6d8190a8 | fiat-crypto | coq | 789a135d2427ca49fa7dcc9fe4590285b5fb4f20 | 9c6fddc2da63766426827dd44fd1165434771814 | Definition and spec for point add fn | src/Bedrock/End2End/X25519/MontgomeryLadder.v | proof_add | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | [] | diff --git a/src/Bedrock/End2End/X25519/MontgomeryLadder.v b/src/Bedrock/End2End/X25519/MontgomeryLadder.v
index c607b2812..c7bd0f38d 100644
--- a/src/Bedrock/End2End/X25519/MontgomeryLadder.v
+++ b/src/Bedrock/End2End/X25519/MontgomeryLadder.v
@@ -35,6 +35,30 @@ Definition mul_and_add := func! (o, x, y) {
fe25519_a... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/MontgomeryLadder.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds a substantive new function definition (`add_precomputed`) with a complete specification (`spec_of_add_precomputed`), both of which represent real proof engineering work in the Bedrock2 verification framework—a hand-written non-templated file under `src/Bedrock/`. The only minor non-substantive element is... |
fiat-crypto_9c6fddc2_093f8a38 | fiat-crypto | coq | 9c6fddc2da63766426827dd44fd1165434771814 | 68f7408e98e5cd61b551e0c707d2273aef33b4f6 | cleanup | src/Bedrock/End2End/X25519/MontgomeryLadder.v | proof_add | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | [] | diff --git a/src/Bedrock/End2End/X25519/MontgomeryLadder.v b/src/Bedrock/End2End/X25519/MontgomeryLadder.v
index dfdef016a..c607b2812 100644
--- a/src/Bedrock/End2End/X25519/MontgomeryLadder.v
+++ b/src/Bedrock/End2End/X25519/MontgomeryLadder.v
@@ -25,12 +25,6 @@ Local Instance frep25519 : Field.FieldRepresentation(fie... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/MontgomeryLadder.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff removes a commented-out definition and an entire section of code (spec_of_x25519_base lemma, x25519_base_ok proof, compilation setup, and debugging module), which are deletions of proof-related content and definitions; this constitutes substantive proof engineering change despite being a cleanup (removal of in... |
fiat-crypto_68f7408e_657c092d | fiat-crypto | coq | 68f7408e98e5cd61b551e0c707d2273aef33b4f6 | fd26eec818c7533ac11530fedfb7fd5ccd979646 | simple square_and_add function | src/Bedrock/End2End/X25519/MontgomeryLadder.v | proof_add | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | Require Import Coq.Strings.String.
Require Import Coq.Lists.List.
Require Import Coq.ZArith.ZArith.
Require Import Crypto.Spec.Curve25519.
Require Import bedrock2.Map.Separation.
Require Import bedrock2.Syntax.
Require Import compiler.Pipeline.
Require Import compiler.Symbols.
Require Import compiler.MMIO.
Require Impo... | [] | diff --git a/src/Bedrock/End2End/X25519/MontgomeryLadder.v b/src/Bedrock/End2End/X25519/MontgomeryLadder.v
index e2e2ee4e3..dfdef016a 100644
--- a/src/Bedrock/End2End/X25519/MontgomeryLadder.v
+++ b/src/Bedrock/End2End/X25519/MontgomeryLadder.v
@@ -16,35 +16,42 @@ Require Import Crypto.Bedrock.Group.ScalarMult.LadderSt... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/MontgomeryLadder.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains substantive proof engineering: it removes old code (the `x25519` and `x25519_base` functions and their full specifications), adds new function definitions (`square_and_add`, `mul_and_add`), introduces new global instances with real proof obligations (`spec_of_square_and_add`, `spec_of_mul_and_add`), ... |
fiat-crypto_d4b48bd3_f112c2ea | fiat-crypto | coq | d4b48bd3fe8fc333b50230dbb691bb1fd5b96ad2 | 26112f62397f9864e132d6fd584a82993662867c | refactored dettman multiplication algorithm more nicely | src/Arithmetic/DettmanMultiplication.v | proof_add | Require Import Crypto.Arithmetic.Core.
Require Import Coq.ZArith.ZArith Coq.micromega.Lia.
Require Import Coq.Lists.List.
Require Import Crypto.Arithmetic.ModOps.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Local Open Scope list_scope.
Import Associational Positional.
Import ListNotations. Local Open Scop... | Require Import Crypto.Arithmetic.Core.
Require Import Coq.ZArith.ZArith Coq.micromega.Lia.
Require Import Coq.Lists.List.
Require Import Crypto.Arithmetic.ModOps.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Local Open Scope list_scope.
Import Associational Positional.
Import ListNotations. Local Open Scop... | [] | diff --git a/src/Arithmetic/DettmanMultiplication.v b/src/Arithmetic/DettmanMultiplication.v
index c9895e1ae..cf887c050 100644
--- a/src/Arithmetic/DettmanMultiplication.v
+++ b/src/Arithmetic/DettmanMultiplication.v
@@ -243,6 +243,51 @@ Module DettmanMultiplication.
Qed.
Hint Rewrite eval_carry_reduce_chain ... | Write or extend the proof(s) in src/Arithmetic/DettmanMultiplication.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff extracts a coherent subroutine (`move_to_weight_s` and `carry_reduce_s`) with complete proofs and hints from inline code, refactoring the `reduce_carry_borrow` definition and simplifying its proof—a clear substantive proof-engineering improvement involving definition extraction, new lemmas with real proofs, a... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.