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_63f21a8e_9f2752ed | fiat-crypto | coq | 63f21a8eea319991702cf4f7f58c7b76f2e022c1 | ded3b2bb99637cf13939f50662a6fafde70b62b1 | add comment about encoding of c; rename limbs, l into n | 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 41087c4c6..b497c6f45 100644
--- a/src/Arithmetic/DettmanMultiplication.v
+++ b/src/Arithmetic/DettmanMultiplication.v
@@ -16,17 +16,17 @@ Module DettmanMultiplication.
(s : Z)
(c' : Z)
(register... | 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 is substantive proof engineering: identifier renaming (`limbs` → `n`, `l` → removal) throughout definitions, lemmas, and proof bodies, plus a new multi-line comment explaining the encoding choice for `c`, which alters the semantic context of the definition. While mostly mechanical, the comment addition and consist... |
fiat-crypto_224f4d83_c0126ba8 | fiat-crypto | coq | 224f4d83595ceb74fda01be562d8df6b899105f4 | 13bab14afce257d05709a712b87120ef7df05b13 | small fixes | 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.
Require Import Coq.Program.Wf.
Local Open Scope list_scope.
Import Associational Positional.
Import... | 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 cbec8094c..f7e0d70a3 100644
--- a/src/Arithmetic/DettmanMultiplication.v
+++ b/src/Arithmetic/DettmanMultiplication.v
@@ -3,7 +3,6 @@ Require Import Coq.ZArith.ZArith Coq.micromega.Lia.
Require Import Coq.Lists.List.
Re... | 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 contains substantive proof-engineering changes—parameter name refactorings (e.g., `before` → `x`, `c_` → `c'`), removal of intermediate notation `Local Notation c'`, simplification of proof tactics (e.g., `rewrite assoc_eval. lia.` → `f_equal. cbv [...]. simpl. destruct c'; lia.`), and lemma renames (`p_nz'` ... |
fiat-crypto_224f4d83_d465f19a | fiat-crypto | coq | 224f4d83595ceb74fda01be562d8df6b899105f4 | 13bab14afce257d05709a712b87120ef7df05b13 | small fixes | src/PushButtonSynthesis/DettmanMultiplication.v | proof_add | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | [] | diff --git a/src/PushButtonSynthesis/DettmanMultiplication.v b/src/PushButtonSynthesis/DettmanMultiplication.v
index 7fee88ca8..cef8abffb 100644
--- a/src/PushButtonSynthesis/DettmanMultiplication.v
+++ b/src/PushButtonSynthesis/DettmanMultiplication.v
@@ -99,7 +99,14 @@ Section __.
s = 2^256
c ... | Write or extend the proof(s) in src/PushButtonSynthesis/DettmanMultiplication.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff includes substantive changes to proof/specification content (adding documented parameter examples and fixing identifier references from `c_` to `c` in reification calls), mixed with minor whitespace normalization, making it a genuine proof engineering modification that should be accepted. |
fiat-crypto_1ec2b83b_eca82038 | fiat-crypto | coq | 1ec2b83bd652adbaaa93d73b38fbc366b70d5a15 | e9bec6d1debcb5c11fa2520b81a8ce20a7e0d718 | Added the functions mul32, square32 to dettman_multiplication binary | src/PushButtonSynthesis/DettmanMultiplication.v | proof_add | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | [] | diff --git a/src/PushButtonSynthesis/DettmanMultiplication.v b/src/PushButtonSynthesis/DettmanMultiplication.v
index 0ed93ccfc..bb8681ba2 100644
--- a/src/PushButtonSynthesis/DettmanMultiplication.v
+++ b/src/PushButtonSynthesis/DettmanMultiplication.v
@@ -55,9 +55,11 @@ Local Coercion QArith_base.inject_Z : Z >-> Q.
... | Write or extend the proof(s) in src/PushButtonSynthesis/DettmanMultiplication.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds substantive new definitions (`mul32`, `square32`) and lemmas (`mul32_correct`, `square32_correct`, etc.) with real proof bodies using `prove_correctness` and `prove_pipeline_wf` tactics, along with corresponding pipeline wiring (`smul32`, `ssquare32`) and hint registrations — clear proof engineering addi... |
fiat-crypto_1ec2b83b_bb124de9 | fiat-crypto | coq | 1ec2b83bd652adbaaa93d73b38fbc366b70d5a15 | e9bec6d1debcb5c11fa2520b81a8ce20a7e0d718 | Added the functions mul32, square32 to dettman_multiplication binary | src/PushButtonSynthesis/DettmanMultiplicationReificationCache.v | proof_add | (** * Push-Button Synthesis of Bitcoin Multiplication: Reification Cache *)
Require Import Coq.derive.Derive.
Require Import Crypto.PushButtonSynthesis.ReificationCache.
Require Import Crypto.Arithmetic.DettmanMultiplication.
Local Set Keyed Unification. (* needed for making [autorewrite] fast, c.f. COQBUG(https://git... | (** * Push-Button Synthesis of Bitcoin Multiplication: Reification Cache *)
Require Import Coq.derive.Derive.
Require Import Crypto.PushButtonSynthesis.ReificationCache.
Require Import Crypto.Arithmetic.DettmanMultiplication.
Local Set Keyed Unification. (* needed for making [autorewrite] fast, c.f. COQBUG(https://git... | [] | diff --git a/src/PushButtonSynthesis/DettmanMultiplicationReificationCache.v b/src/PushButtonSynthesis/DettmanMultiplicationReificationCache.v
index a992e7d32..af7fa4f0f 100644
--- a/src/PushButtonSynthesis/DettmanMultiplicationReificationCache.v
+++ b/src/PushButtonSynthesis/DettmanMultiplicationReificationCache.v
@@ ... | Write or extend the proof(s) in src/PushButtonSynthesis/DettmanMultiplicationReificationCache.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds two new reified definitions (`reified_mul32_gen` and `reified_square32_gen`) with their correctness proofs and corresponding hint declarations—substantive proof engineering and definition additions that extend the reification cache, despite following a mechanical/templated pattern within the hand-written... |
fiat-crypto_e9bec6d1_988a9ea0 | fiat-crypto | coq | e9bec6d1debcb5c11fa2520b81a8ce20a7e0d718 | 5ca9f955b2febce0d4f242fb6c621a71cf7da9ec | Fixed a couple of errors in reduce_carry_borrow32. Also prepared to add a couple functions (mul32, square32) to dettman_multiplication binary | 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.
Require Import Coq.Program.Wf.
Local Open Scope list_scope.
Import Associational Positional.
Import... | 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.
Require Import Coq.Program.Wf.
Local Open Scope list_scope.
Import Associational Positional.
Import... | [] | diff --git a/src/Arithmetic/DettmanMultiplication.v b/src/Arithmetic/DettmanMultiplication.v
index 3e9ced2d6..9061d9b26 100644
--- a/src/Arithmetic/DettmanMultiplication.v
+++ b/src/Arithmetic/DettmanMultiplication.v
@@ -340,7 +340,7 @@ Module DettmanMultiplication.
(* begin a loop iteration *)
let from01... | 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 | The diff contains substantive proof engineering changes: bug fixes in `reduce_carry_borrow32` (changing `r0` to `r0'` and `r12` to `r12A`), new theorem definitions (`eval_mulmod32`, `eval_squaremod32`), hint additions, and corrected function name references in proofs (`reduce_carry_borrow` → `reduce_carry_borrow32`), a... |
fiat-crypto_5ca9f955_eefef948 | fiat-crypto | coq | 5ca9f955b2febce0d4f242fb6c621a71cf7da9ec | 35eba122eb9afe2bae9b8e00bfcd76f9e371a51b | Two more things: 1. Generalize the dettman arithmetic file to work with non-scalar values of c. Make c be expressed as a sum of digits at the weights given by the weight function. 2. Add the mulmod32 and squaremod32 functions, which are templates for the algorithms found here: https://github.com/bitcoin-core/secp256k1... | 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.
Require Import Coq.Program.Wf.
Local Open Scope list_scope.
Import Associational Positional.
Import... | [] | diff --git a/src/Arithmetic/DettmanMultiplication.v b/src/Arithmetic/DettmanMultiplication.v
index e1bd4e85c..3e9ced2d6 100644
--- a/src/Arithmetic/DettmanMultiplication.v
+++ b/src/Arithmetic/DettmanMultiplication.v
@@ -3,6 +3,7 @@ Require Import Coq.ZArith.ZArith Coq.micromega.Lia.
Require Import Coq.Lists.List.
Re... | 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 contains substantial proof-engineering work: new definitions (c, c_correct, Positional_from_N, num_digits, loop32, etc.), modified lemma statements (changing c to Associational.eval c), proof bodies for new lemmas (eval_loop_body, eval_loop32, c_correct), and Ltac-directive changes (Hint additions), which con... |
fiat-crypto_35eba122_5cbe1349 | fiat-crypto | coq | 35eba122eb9afe2bae9b8e00bfcd76f9e371a51b | fd26eec818c7533ac11530fedfb7fd5ccd979646 | Two things: 1. Add the function Positional.simple_encode, which is like Positional.encode except it doesn't use any reductions 2. Generalize the reduce_one function to work for non-scalar values of c | src/Arithmetic/Core.v | proof_add | (* Following http://adam.chlipala.net/theses/andreser.pdf chapter 3 *)
Require Import Coq.ZArith.ZArith Coq.micromega.Lia.
Require Import Coq.Structures.Orders.
Require Import Coq.Lists.List.
Require Import Crypto.Algebra.Nsatz.
Require Import Crypto.Arithmetic.ModularArithmeticTheorems.
Require Import Crypto.Util.Deci... | (* Following http://adam.chlipala.net/theses/andreser.pdf chapter 3 *)
Require Import Coq.ZArith.ZArith Coq.micromega.Lia.
Require Import Coq.Structures.Orders.
Require Import Coq.Lists.List.
Require Import Crypto.Algebra.Nsatz.
Require Import Crypto.Arithmetic.ModularArithmeticTheorems.
Require Import Crypto.Util.Deci... | [] | diff --git a/src/Arithmetic/Core.v b/src/Arithmetic/Core.v
index 46fc5829b..c46d4b2a0 100644
--- a/src/Arithmetic/Core.v
+++ b/src/Arithmetic/Core.v
@@ -219,23 +219,24 @@ Module Associational.
rewrite <- IHp'. ring.
Qed.
- Definition reduce_one (s:Z) (w fw : Z) (c: Z) (p:list _) : list (Z*Z) :=
+ Defini... | Write or extend the proof(s) in src/Arithmetic/Core.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains substantive proof engineering: (1) a signature change to `reduce_one` changing the type of parameter `c` from `Z` to `list (Z*Z)` with corresponding implementation changes, (2) a lemma statement update reflecting this generalization with `Associational.eval c` replacing bare `c`, (3) a non-trivial pr... |
fiat-crypto_fd26eec8_c6183913 | fiat-crypto | coq | fd26eec818c7533ac11530fedfb7fd5ccd979646 | c79cf6061a60ead08730658fa6f38a5f260ad7d3 | Prove dedicated doubling for Edwards curves | 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 1d327cd40..9a1915a77 100644
--- a/src/Curves/Edwards/XYZT/Basic.v
+++ b/src/Curves/Edwards/XYZT/Basic.v
@@ -24,6 +24,7 @@ Section ExtendedCoordinates.
{square_a : exists sqrt_a, sqrt_a^2 = a}
{nonsquare_d : forall... | 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 adds substantive proof engineering: a new `Local Notation` for convenience, a tactic adjustment (`try Field.fsatz`), and three new definitions with proofs (`m1double`, `double`, and supporting lemmas `m1double_correct`, `to_twisted_m1double`, `to_twisted_double`) that implement dedicated doubling operations f... |
fiat-crypto_ab4d8ac2_af8f1462 | fiat-crypto | coq | ab4d8ac2ed2473b591753d86f19d7f1915797ddf | 1dc6b3a05dcfcb1e94b2a26c3fd6af0bd6788837 | Disable removal of redundant & to workaround uint1 | 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 17c093280..b398e3f02 100644
--- a/src/BoundsPipeline.v
+++ b/src/BoundsPipeline.v
@@ -838,7 +838,6 @@ Module Pipeline.
=> wrap_debug_rewrite "RewriteNoSelect" (RewriteRules.RewriteNoSelect bitwidth opts) E
| None => Deb... | 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 removes a single rewrite rule application (`RewriteArithWithRelaxedCasts`) from a pipeline configuration in a non-generated hand-written file, which is a substantive change to proof/synthesis behavior (not mere display, comments, or whitespace), but the change is minimal and localized to disabling a specific ... |
fiat-crypto_2bba8e2d_6abafa77 | fiat-crypto | coq | 2bba8e2d62711919f53525698fe614801bf9e4a4 | c78648d953a1b4bc3f423a3e82b565d7bde3030e | slightly simplified a proof | src/Rewriter/RulesProofs.v | proof_add | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith Coq.ZArith.Znumtheory.
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.ZUtil.Definitions.
Require Import Crypto... | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith Coq.ZArith.Znumtheory.
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.ZUtil.Definitions.
Require Import Crypto... | [] | diff --git a/src/Rewriter/RulesProofs.v b/src/Rewriter/RulesProofs.v
index 5d6bcac9d..6e7cc2ddd 100644
--- a/src/Rewriter/RulesProofs.v
+++ b/src/Rewriter/RulesProofs.v
@@ -584,7 +584,7 @@ Lemma relaxed_rules_work rland rm1 rv v :
Proof.
intros H1 H2 H3 H4 H5 H6.
replace (ident.cast rland v) with (ident.cast rla... | Write or extend the proof(s) in src/Rewriter/RulesProofs.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff changes the proof-body tactic structure by consolidating two identical `interp_good_t_step_arith` calls into `do 3 interp_good_t_step_arith`, which is a substantive proof simplification (semantically equivalent but structurally refined), falling squarely under the ACCEPT category of "Proof-body tactic changes... |
fiat-crypto_aa4babdb_2824427a | fiat-crypto | coq | aa4babdb6d67ac5a5dd142b4453fad85763e05ba | 6e951d0f9d4e2b2d0473a48b298da15304e9c1bc | fixed error with generating C code I think? In this commit, I just removed the bit about dead code elimination that I added in BoundsPipeline.v. The C code synthesizes without error now, at least. I haven't built everything yet, so we'll see if things actually work nicely. | 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 12625628a..17c093280 100644
--- a/src/BoundsPipeline.v
+++ b/src/BoundsPipeline.v
@@ -838,7 +838,7 @@ Module Pipeline.
=> wrap_debug_rewrite "RewriteNoSelect" (RewriteRules.RewriteNoSelect bitwidth opts) E
| None => Deb... | 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 is a substantive proof/code change—replacing a function call (`RewriteAndEliminateDeadAndInline`) with a simpler one (`wrap_debug_rewrite`), removing arguments related to dead code elimination—which alters the synthesis pipeline logic and is not a whitespace, comment, or tooling-only edit. |
fiat-crypto_6e951d0f_d3cde5aa | fiat-crypto | coq | 6e951d0f9d4e2b2d0473a48b298da15304e9c1bc | 799c2124533a06897dc04415cc981c737d5261e6 | I moved the new rewriting pass (ArithWithRelaxedCasts) that I added. It now comes later in the rewriting process. Apparently it's important that it comes after the fancy stuff. For reasons that I don't understand, proofs in Barrett256 and Montgomery256 break if I put it before. | 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 6cd04025c..12625628a 100644
--- a/src/BoundsPipeline.v
+++ b/src/BoundsPipeline.v
@@ -805,8 +805,7 @@ Module Pipeline.
end;
match E' with
| inl E
- => (E <- RewriteAndEliminateDeadAndInline "RewriteArithWithRelaxedCasts" (R... | 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 is a substantive reordering of a rewriting pass within the proof pipeline—moving the `RewriteArithWithRelaxedCasts` pass to occur after `RewriteNoSelect` rather than before `RewriteMulSplit`. While the lines themselves are not new, this is a meaningful change to the control flow and ordering of pipeline stages tha... |
fiat-crypto_a70781b0_9296841b | fiat-crypto | coq | a70781b0f3b8d019dfbbd297ffa3e240b1ee402f | a559efddff517d5a511aee6c337ea421e7f35e85 | put the new rewrite rule in its own pass | 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 2590de9ab..bfbc99035 100644
--- a/src/BoundsPipeline.v
+++ b/src/BoundsPipeline.v
@@ -806,7 +806,8 @@ Module Pipeline.
match E' with
(* rewrites after bounds relaxation---add a new one named arithWithRelaxedCasts or something. *)
| in... | 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 adds a substantive new rewrite pass (`RewriteAndEliminateDeadAndInline "RewriteArithWithRelaxedCasts"`) into the proof pipeline's control flow, which is a real proof-engineering change to the bounded arithmetic synthesis algorithm, not a mechanical code-generation artifact or formatting change. |
fiat-crypto_a70781b0_cc25dc9f | fiat-crypto | coq | a70781b0f3b8d019dfbbd297ffa3e240b1ee402f | a559efddff517d5a511aee6c337ea421e7f35e85 | put the new rewrite rule in its own pass | src/Rewriter/Passes/ArithWithRelaxedCasts.v | proof_add | Require Import Rewriter.Language.Language.
Require Import Crypto.Language.API.
Require Import Rewriter.Language.Wf.
Require Import Crypto.Language.WfExtra.
Require Import Crypto.Rewriter.AllTacticsExtra.
Require Import Crypto.Rewriter.RulesProofs.
Module Compilers.
Import Language.Compilers.
Import Language.API.Co... | [] | diff --git a/src/Rewriter/Passes/ArithWithRelaxedCasts.v b/src/Rewriter/Passes/ArithWithRelaxedCasts.v
new file mode 100644
index 000000000..7c56f6b21
--- /dev/null
+++ b/src/Rewriter/Passes/ArithWithRelaxedCasts.v
@@ -0,0 +1,43 @@
+Require Import Rewriter.Language.Language.
+Require Import Crypto.Language.API.
+Requir... | Write the proof content for the declarations in src/Rewriter/Passes/ArithWithRelaxedCasts.v. | accept | claude-haiku-4-5 | This is a new file with substantive proof engineering content — it defines a verified rewriter module with real proofs (`Wf_RewriteArithWithRelaxedCasts`, `Interp_RewriteArithWithRelaxedCasts`) and hints, not merely import statements or generated templates, so it should be ACCEPTED despite the initial imports. | |
fiat-crypto_a70781b0_5182d2b0 | fiat-crypto | coq | a70781b0f3b8d019dfbbd297ffa3e240b1ee402f | a559efddff517d5a511aee6c337ea421e7f35e85 | put the new rewrite rule in its own pass | src/Rewriter/Rules.v | proof_add | 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.ZUtil.Definitions.
Require Import Crypto.Util.ZUtil.Notations.
Require Import Crypto.Util.ZRange... | 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.ZUtil.Definitions.
Require Import Crypto.Util.ZUtil.Notations.
Require Import Crypto.Util.ZRange... | [] | diff --git a/src/Rewriter/Rules.v b/src/Rewriter/Rules.v
index 33ee22858..0ce2464d7 100644
--- a/src/Rewriter/Rules.v
+++ b/src/Rewriter/Rules.v
@@ -561,6 +561,30 @@ Definition arith_with_casts_rewrite_rulesT (adc_no_carry_to_add : bool) : list (
]
]%Z%zrange.
+Definition arith_with_relaxed_cas... | Write or extend the proof(s) in src/Rewriter/Rules.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff involves substantive changes to proof-related definitions and specifications: it creates a new rewrite rule definition (`arith_with_relaxed_casts_rewrite_rulesT`) and reorganizes existing rewrite rules by moving a rule from one pass to another, which are meaningful proof-engineering modifications to the rewri... |
fiat-crypto_a70781b0_ca4a9896 | fiat-crypto | coq | a70781b0f3b8d019dfbbd297ffa3e240b1ee402f | a559efddff517d5a511aee6c337ea421e7f35e85 | put the new rewrite rule in its own pass | src/Rewriter/RulesProofs.v | proof_add | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith Coq.ZArith.Znumtheory.
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.ZUtil.Definitions.
Require Import Crypto... | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith Coq.ZArith.Znumtheory.
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.ZUtil.Definitions.
Require Import Crypto... | [] | diff --git a/src/Rewriter/RulesProofs.v b/src/Rewriter/RulesProofs.v
index 8edff0131..1029eb9b5 100644
--- a/src/Rewriter/RulesProofs.v
+++ b/src/Rewriter/RulesProofs.v
@@ -564,63 +564,52 @@ Local Ltac do_clear_nia x y r H H' :=
=> clear -Hx Hy Hm Hr H' H; nia
end.
-Search ident.cast.
Lemma arith_with_casts_... | Write or extend the proof(s) in src/Rewriter/RulesProofs.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains substantive proof engineering: it extracts a complex lemma (`relaxed_rules_work`) from commented-out inline proof attempts, creates a new lemma (`arith_with_relaxed_casts_rewrite_rules_proofs`) that uses it, removes debugging directives (`Search`), and relocates proof logic to a separate pass—all mea... |
fiat-crypto_a559efdd_258fc873 | fiat-crypto | coq | a559efddff517d5a511aee6c337ea421e7f35e85 | 21441958b773f7313e5cf74054aaed9c5e9da5cf | wrote a version of the rewrite rule that works! need to put it in its own pass now. | src/PushButtonSynthesis/DettmanMultiplication.v | proof_add | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | [] | diff --git a/src/PushButtonSynthesis/DettmanMultiplication.v b/src/PushButtonSynthesis/DettmanMultiplication.v
index e6505e31e..948bce7ab 100644
--- a/src/PushButtonSynthesis/DettmanMultiplication.v
+++ b/src/PushButtonSynthesis/DettmanMultiplication.v
@@ -104,15 +104,14 @@ Section __.
Definition input_bounds : list... | Write or extend the proof(s) in src/PushButtonSynthesis/DettmanMultiplication.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff involves substantive proof/definition changes: it uncomments and activates a previously disabled `output_bounds` definition (the correct one based on the commit message "wrote a version of the rewrite rule that works"), while commenting out a placeholder stub definition. This is a real code change that affect... |
fiat-crypto_a559efdd_7ec7e6a1 | fiat-crypto | coq | a559efddff517d5a511aee6c337ea421e7f35e85 | 21441958b773f7313e5cf74054aaed9c5e9da5cf | wrote a version of the rewrite rule that works! need to put it in its own pass now. | src/Rewriter/Rules.v | proof_add | 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.ZUtil.Definitions.
Require Import Crypto.Util.ZUtil.Notations.
Require Import Crypto.Util.ZRange... | 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.ZUtil.Definitions.
Require Import Crypto.Util.ZUtil.Notations.
Require Import Crypto.Util.ZRange... | [] | diff --git a/src/Rewriter/Rules.v b/src/Rewriter/Rules.v
index cffe96e37..33ee22858 100644
--- a/src/Rewriter/Rules.v
+++ b/src/Rewriter/Rules.v
@@ -337,14 +337,14 @@ Definition arith_with_casts_rewrite_rulesT (adc_no_carry_to_add : bool) : list (
0 ∈ rland -> 0 ∈ r0
-> cstZ rland ... | Write or extend the proof(s) in src/Rewriter/Rules.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff moves a rewrite rule from a commented-out location in one list to an active location in another list, representing a substantive change to proof/rewriting behavior (the rule is now enabled in a different pass), though the rule definition itself is unchanged and the commit message indicates work-in-progress or... |
fiat-crypto_a559efdd_9421524d | fiat-crypto | coq | a559efddff517d5a511aee6c337ea421e7f35e85 | 21441958b773f7313e5cf74054aaed9c5e9da5cf | wrote a version of the rewrite rule that works! need to put it in its own pass now. | src/Rewriter/RulesProofs.v | proof_add | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith Coq.ZArith.Znumtheory.
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.ZUtil.Definitions.
Require Import Crypto... | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith Coq.ZArith.Znumtheory.
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.ZUtil.Definitions.
Require Import Crypto... | [] | diff --git a/src/Rewriter/RulesProofs.v b/src/Rewriter/RulesProofs.v
index 6d88ca4f7..8edff0131 100644
--- a/src/Rewriter/RulesProofs.v
+++ b/src/Rewriter/RulesProofs.v
@@ -570,7 +570,7 @@ Lemma arith_with_casts_rewrite_rules_proofs (adc_no_carry_to_add : bool)
Proof using Type.
start_proof; auto; intros; try lia.
... | Write or extend the proof(s) in src/Rewriter/RulesProofs.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff shows substantive proof-body changes in a hand-written (non-generated) file: a previously commented-out tactic proof (lines 573–595) is being uncommented and moved to a new goal location (lines 864–888), with minor refinements to the tactic script; this represents real proof engineering work to complete/reorg... |
fiat-crypto_21441958_c63b9ad7 | fiat-crypto | coq | 21441958b773f7313e5cf74054aaed9c5e9da5cf | 43f2f3de0f33509e420f38f96bb6f9bc66f65b28 | new version of rewrite rule (without the double cast) | src/Rewriter/Rules.v | proof_add | 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.ZUtil.Definitions.
Require Import Crypto.Util.ZUtil.Notations.
Require Import Crypto.Util.ZRange... | 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.ZUtil.Definitions.
Require Import Crypto.Util.ZUtil.Notations.
Require Import Crypto.Util.ZRange... | [] | diff --git a/src/Rewriter/Rules.v b/src/Rewriter/Rules.v
index 266887f30..cffe96e37 100644
--- a/src/Rewriter/Rules.v
+++ b/src/Rewriter/Rules.v
@@ -45,6 +45,8 @@ Local Notation "x <= y <= z" := (andb (is_tighter_than_bool (ZRange.normalize x)
Local Notation litZZ x := (ident.literal (fst x), ident.literal (snd x)) (o... | Write or extend the proof(s) in src/Rewriter/Rules.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains substantive proof engineering changes: (1) a rewrite rule definition is modified with additional hypotheses and a changed conclusion (removing a double cast from `cstZ rland (cstZ rv v)` to `cstZ rland v`), and (2) a debugging `Print`/`Search` directive is added (which is a display-only directive and... |
fiat-crypto_21441958_3ea85264 | fiat-crypto | coq | 21441958b773f7313e5cf74054aaed9c5e9da5cf | 43f2f3de0f33509e420f38f96bb6f9bc66f65b28 | new version of rewrite rule (without the double cast) | src/Rewriter/RulesProofs.v | proof_add | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith Coq.ZArith.Znumtheory.
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.ZUtil.Definitions.
Require Import Crypto... | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith Coq.ZArith.Znumtheory.
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.ZUtil.Definitions.
Require Import Crypto... | [] | diff --git a/src/Rewriter/RulesProofs.v b/src/Rewriter/RulesProofs.v
index d2227e35e..6d88ca4f7 100644
--- a/src/Rewriter/RulesProofs.v
+++ b/src/Rewriter/RulesProofs.v
@@ -564,19 +564,39 @@ Local Ltac do_clear_nia x y r H H' :=
=> clear -Hx Hy Hm Hr H' H; nia
end.
+Search ident.cast.
Lemma arith_with_casts_... | Write or extend the proof(s) in src/Rewriter/RulesProofs.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff shows substantive proof-body tactic changes within a real proof engineering context (RulesProofs.v is hand-written, not generated): the proof of `arith_with_casts_rewrite_rules_proofs` is being refactored to handle a new version of a rewrite rule (removing a double cast), with new intermediate goal replacemen... |
fiat-crypto_19cdc419_a9bf3983 | fiat-crypto | coq | 19cdc419cb5b9363abacab8ab6009ea9db9e5b5f | 4f7cb6817df469aa703c2766dea33e7b795e918b | trying new version of rewrite rule | src/Rewriter/Rules.v | proof_add | 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.ZUtil.Definitions.
Require Import Crypto.Util.ZUtil.Notations.
Require Import Crypto.Util.ZRange... | 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.ZUtil.Definitions.
Require Import Crypto.Util.ZUtil.Notations.
Require Import Crypto.Util.ZRange... | [] | diff --git a/src/Rewriter/Rules.v b/src/Rewriter/Rules.v
index c25485ceb..c95789f0c 100644
--- a/src/Rewriter/Rules.v
+++ b/src/Rewriter/Rules.v
@@ -335,11 +335,12 @@ Definition arith_with_casts_rewrite_rulesT (adc_no_carry_to_add : bool) : list (
0 ∈ rland -> 0 ∈ r0
-> cstZ rland ... | Write or extend the proof(s) in src/Rewriter/Rules.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff modifies the specification and proof obligations of a rewrite rule in the hand-written `src/Rewriter/Rules.v` file (not a generated artifact), changing multiple preconditions and the postcondition of a lemma statement, which constitutes a substantive spec/signature change requiring proof engineering work to c... |
fiat-crypto_19cdc419_ec3960a7 | fiat-crypto | coq | 19cdc419cb5b9363abacab8ab6009ea9db9e5b5f | 4f7cb6817df469aa703c2766dea33e7b795e918b | trying new version of rewrite rule | src/Rewriter/RulesProofs.v | proof_add | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith Coq.ZArith.Znumtheory.
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.ZUtil.Definitions.
Require Import Crypto... | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith Coq.ZArith.Znumtheory.
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.ZUtil.Definitions.
Require Import Crypto... | [] | diff --git a/src/Rewriter/RulesProofs.v b/src/Rewriter/RulesProofs.v
index a82d6188b..e7fad7450 100644
--- a/src/Rewriter/RulesProofs.v
+++ b/src/Rewriter/RulesProofs.v
@@ -273,6 +273,7 @@ Local Ltac interp_good_t_step_arith :=
| H : is_bounded_by_bool _ _ = true |- _ =>
... | Write or extend the proof(s) in src/Rewriter/RulesProofs.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff shows substantive proof-body tactic changes to `arith_with_casts_rewrite_rules_proofs`, including a new focused goal case (`11: { ... }`), tactic reorganization, and large commented-out exploratory proof attempts alongside cleanup of old proof steps—all clear proof engineering work that belongs in an evaluatio... |
fiat-crypto_4f7cb681_8e199ad9 | fiat-crypto | coq | 4f7cb6817df469aa703c2766dea33e7b795e918b | 59753ffb2f3da06494f8cf9a0dd2808f0e5be1d9 | rewrote the rewriting rule. generated C code is unchanged. | src/Rewriter/Rules.v | proof_add | 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.ZUtil.Definitions.
Require Import Crypto.Util.ZUtil.Notations.
Require Import Crypto.Util.ZRange... | 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.ZUtil.Definitions.
Require Import Crypto.Util.ZUtil.Notations.
Require Import Crypto.Util.ZRange... | [] | diff --git a/src/Rewriter/Rules.v b/src/Rewriter/Rules.v
index 5046493f7..c25485ceb 100644
--- a/src/Rewriter/Rules.v
+++ b/src/Rewriter/Rules.v
@@ -335,8 +335,11 @@ Definition arith_with_casts_rewrite_rulesT (adc_no_carry_to_add : bool) : list (
0 ∈ rland -> 0 ∈ r0
-> cstZ rland (... | Write or extend the proof(s) in src/Rewriter/Rules.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff modifies the proof body/specification of a rewriting rule in src/Rewriter/Rules.v by strengthening preconditions (changing from simple range/membership constraints to more complex constraints involving logarithms and field access), which constitutes a substantive change to a definition/specification that belo... |
fiat-crypto_4f7cb681_61416be6 | fiat-crypto | coq | 4f7cb6817df469aa703c2766dea33e7b795e918b | 59753ffb2f3da06494f8cf9a0dd2808f0e5be1d9 | rewrote the rewriting rule. generated C code is unchanged. | src/Rewriter/RulesProofs.v | proof_add | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith Coq.ZArith.Znumtheory.
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.ZUtil.Definitions.
Require Import Crypto... | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith Coq.ZArith.Znumtheory.
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.ZUtil.Definitions.
Require Import Crypto... | [] | diff --git a/src/Rewriter/RulesProofs.v b/src/Rewriter/RulesProofs.v
index 1b5f5db1f..a82d6188b 100644
--- a/src/Rewriter/RulesProofs.v
+++ b/src/Rewriter/RulesProofs.v
@@ -567,10 +567,15 @@ Lemma arith_with_casts_rewrite_rules_proofs (adc_no_carry_to_add : bool)
: PrimitiveHList.hlist (@snd bool Prop) (arith_with_c... | Write or extend the proof(s) in src/Rewriter/RulesProofs.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff modifies proof-body tactics within an existing lemma (`arith_with_casts_rewrite_rules_proofs`), adding substantive new proof steps (`rewrite Z.mod_small`, `apply ident.cast_in_bounds`, unfolding definitions, and using `lia` to discharge goals), which constitutes real proof engineering work despite the commit m... |
fiat-crypto_4450dfaa_ae54e2a7 | fiat-crypto | coq | 4450dfaa39bf55669c96f41366eec35d06725c02 | 5bd1fe6f0cb1f32b5c03ee85c1c04b7569ab2ef7 | Cleaned up PushButtonSynthesis/DettmanMultiplication.v Replaced a bunch of references to (Z.log2_up s) with (Z.log2 s), since (in the dettman_multiplication_mod_ops module) we now stipulate that s is a power of 2. | 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 7d0eee094..b0092ed9a 100644
--- a/src/Arithmetic/DettmanMultiplication.v
+++ b/src/Arithmetic/DettmanMultiplication.v
@@ -312,12 +312,12 @@ Module dettman_multiplication_mod_ops.
(last_limb_width : nat)
... | 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 makes substantive proof-related changes by replacing `Z.log2_up` with `Z.log2` throughout lemma statements and proof bodies (including the `s_gt_0` proof where `Z.log2_nonpos` replaces `Z.log2_up_nonpos`), reflecting a real specification change based on the added constraint that `s` is a power of 2; while pri... |
fiat-crypto_4450dfaa_ada23242 | fiat-crypto | coq | 4450dfaa39bf55669c96f41366eec35d06725c02 | 5bd1fe6f0cb1f32b5c03ee85c1c04b7569ab2ef7 | Cleaned up PushButtonSynthesis/DettmanMultiplication.v Replaced a bunch of references to (Z.log2_up s) with (Z.log2 s), since (in the dettman_multiplication_mod_ops module) we now stipulate that s is a power of 2. | src/PushButtonSynthesis/DettmanMultiplication.v | proof_add | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | [] | diff --git a/src/PushButtonSynthesis/DettmanMultiplication.v b/src/PushButtonSynthesis/DettmanMultiplication.v
index 8a7f05f32..08a4e0b38 100644
--- a/src/PushButtonSynthesis/DettmanMultiplication.v
+++ b/src/PushButtonSynthesis/DettmanMultiplication.v
@@ -112,7 +112,7 @@ Section __.
Local Instance no_select_size : ... | Write or extend the proof(s) in src/PushButtonSynthesis/DettmanMultiplication.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains mostly substantive proof engineering changes: replacements of `Z.log2_up s` with `Z.log2 s` throughout the file (reflecting a specification change based on the constraint that `s` is a power of 2), updates to lemma statements in `use_curve_good`, and removal of a comment — all of which are semantical... |
fiat-crypto_a21e03cf_4ca7b6a5 | fiat-crypto | coq | a21e03cf7899bf99c1aa5e11577ab6621137cf84 | bc0a990244fa987197753dfa097376eed1dd2ed9 | made proofs a bit nicer | 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 dc7422830..5c3c02ad4 100644
--- a/src/Arithmetic/DettmanMultiplication.v
+++ b/src/Arithmetic/DettmanMultiplication.v
@@ -223,6 +223,41 @@ Module DettmanMultiplication.
Local Open Scope Z_scope.
+ (*(weight (l... | 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 and generalizes repeated proof patterns into reusable lemmas (`reduction_works`, `reduction_works'`) and simplifies large proof blocks by calling these new lemmas—substantive proof engineering that improves maintainability. One lemma (`weight_prod_div_nz`) is left incomplete with `Abort`, but the com... |
fiat-crypto_9a1c67f2_a8715a84 | fiat-crypto | coq | 9a1c67f211e6fedaf8d31fe554f39a7520241a59 | 2696decb48112b00ef2ad0c5badff56817c7a9b1 | changed PushButtonSynthesis/DettmanMultiplication.v to reflect changes to Arithmetic/DettmanMultiplication.v | 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 dffe39094..dc7422830 100644
--- a/src/Arithmetic/DettmanMultiplication.v
+++ b/src/Arithmetic/DettmanMultiplication.v
@@ -261,9 +261,9 @@ Module DettmanMultiplication.
(* weight (2 * limbs - 2) * 2 ^ Z.of_nat regis... | 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 contains substantive proof-body tactic changes: removing `Search` calls (which are display directives), converting definitions to `Local Notation`s with corresponding definition wrappers, and adding a `cbv [limbwidth_num limbwidth_den]` unfolding tactic—all real proof engineering adjustments that affect proof... |
fiat-crypto_9a1c67f2_5a8faa5c | fiat-crypto | coq | 9a1c67f211e6fedaf8d31fe554f39a7520241a59 | 2696decb48112b00ef2ad0c5badff56817c7a9b1 | changed PushButtonSynthesis/DettmanMultiplication.v to reflect changes to Arithmetic/DettmanMultiplication.v | src/PushButtonSynthesis/DettmanMultiplication.v | proof_add | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | [] | diff --git a/src/PushButtonSynthesis/DettmanMultiplication.v b/src/PushButtonSynthesis/DettmanMultiplication.v
index 753794fa7..8a7f05f32 100644
--- a/src/PushButtonSynthesis/DettmanMultiplication.v
+++ b/src/PushButtonSynthesis/DettmanMultiplication.v
@@ -112,7 +112,7 @@ Section __.
Local Instance no_select_size : ... | Write or extend the proof(s) in src/PushButtonSynthesis/DettmanMultiplication.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff reflects substantive changes to the Dettman multiplication algorithm's correctness conditions and reified operations: the `check_args` validation changes from requiring `3 <= n` to `4 <= n`, adds two new mathematical constraints involving logarithms and machine word size, updates the `use_curve_good` lemma st... |
fiat-crypto_6cb81cbe_6377185e | fiat-crypto | coq | 6cb81cbe9451ecda9b15f256c3f5fd209ccfcc51 | ba042cfa4565700a5f21f3e5180b8497b275fb65 | proved almost all of the things | 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 3560740d8..36549a9a4 100644
--- a/src/Arithmetic/DettmanMultiplication.v
+++ b/src/Arithmetic/DettmanMultiplication.v
@@ -19,11 +19,11 @@ Module DettmanMultiplication.
(limbs : nat)
(weight: nat -> Z)
... | 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 contains substantive proof-body changes (tactics like `cbv`, `lia`, `rewrite`, `apply`), new lemmas with real proofs (`Qceiling_diff`, `Qopp_distr_mul_r`, major rewrite of `s_small`), signature changes (adding `register_width` parameter, changing `3%nat <= limbs` to `(4 <= limbs)%nat`, reordering hypotheses),... |
fiat-crypto_ba042cfa_69315118 | fiat-crypto | coq | ba042cfa4565700a5f21f3e5180b8497b275fb65 | 8fb6a87a0a3d591512d7eb5d788970d491babce1 | decided to keep the messy-ish, fractional-limbwidth-friendly implementation. wrote some (messy) arithmetic proofs. still more proofs to go in Arithmetic/DettmanMultiplication.v. Then need to change PushButtonSynthesis appropriately. | 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 ee4f93d57..3560740d8 100644
--- a/src/Arithmetic/DettmanMultiplication.v
+++ b/src/Arithmetic/DettmanMultiplication.v
@@ -15,26 +15,22 @@ Module DettmanMultiplication.
Context
(s : Z)
(c_ : list (Z*... | 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 makes substantive changes to proof bodies in DettmanMultiplication.v: it completes previously `Admitted` proofs (eval_loop_body, reduce_carry_borrow_eval), adds new lemmas (mod_quotient_zero, divisible_implies_nonzero), modifies context parameters and their types (uncomments register_width, changes weight_lim... |
fiat-crypto_8fb6a87a_cfc309e1 | fiat-crypto | coq | 8fb6a87a0a3d591512d7eb5d788970d491babce1 | fd4ee40ce26e31255f1db72acf650eca006900f1 | checked that running 'make fiat-c/src/secp256k1_dettman_64.c' doesn't change anything | 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 d5c9e8272..ee4f93d57 100644
--- a/src/Arithmetic/DettmanMultiplication.v
+++ b/src/Arithmetic/DettmanMultiplication.v
@@ -15,16 +15,17 @@ Module DettmanMultiplication.
Context
(s : Z)
(c_ : list (Z*... | 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 contains substantive proof-engineering changes: commenting out proof bodies and replacing them with `Admitted`, adding new lemmas (`weight_div_nz`, `weight_mod_quotient_zero`) with real proofs, modifying context parameters (commenting out `register_width`, changing `limbs_gteq_4` bound, adding a concrete `Def... |
fiat-crypto_fd4ee40c_4b62e89b | fiat-crypto | coq | fd4ee40ce26e31255f1db72acf650eca006900f1 | 7547ccc4f4d72204bc9177c2c0c4a129c289f339 | In its state before this commit, the reduce_carry_borrow function did rather unreasonable things when the limbwidth was fractional. | 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 cdc103120..d5c9e8272 100644
--- a/src/Arithmetic/DettmanMultiplication.v
+++ b/src/Arithmetic/DettmanMultiplication.v
@@ -13,33 +13,52 @@ Local Coercion Z.of_nat : nat >-> Z.
Module DettmanMultiplication.
Section Dett... | 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 is substantive proof engineering: the diff changes the definition of `reduce_carry_borrow` significantly (replacing hardcoded weight operations with computed divisions), adds new lemmas (`div_mul_le`, `weight_increasing`, `weight_div_nz`, `weight_mod_quotient_zero`), modifies proof bodies, adds a new context param... |
fiat-crypto_878dd64e_28edd20f | fiat-crypto | coq | 878dd64e43a71170605e4cc40aee27e43f641f3e | 2e293f9e607460f369eb01199970debcc02341a0 | fixed small bugs. now, generated dettman code is correct---the same as it originally was. | 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 1d876464a..f2a09922b 100644
--- a/src/Arithmetic/DettmanMultiplication.v
+++ b/src/Arithmetic/DettmanMultiplication.v
@@ -100,18 +100,18 @@ Module DettmanMultiplication.
let r8' := dedup_weights r8 in
let r9... | 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 is a substantive proof-body/definition edit in a hand-written arithmetic module: the diff reorders pipeline steps (moving `loop r10` earlier and restructuring the carry/reduce sequence), fixes variable threading (`r11` now flows correctly), and corrects a type error (`to12` from bare integer to `weight (i0 + 1)`),... |
fiat-crypto_2e293f9e_11a8a5fd | fiat-crypto | coq | 2e293f9e607460f369eb01199970debcc02341a0 | 1cce2381793fde5706f461df6b0174c9dd5ba9d9 | Began trying to make the optimization. from here, making the optimization should consist of just writing "register_width = 64" in Arith/DettmanMultiplcation. something broke. | 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 e3042bd2b..1d876464a 100644
--- a/src/Arithmetic/DettmanMultiplication.v
+++ b/src/Arithmetic/DettmanMultiplication.v
@@ -13,6 +13,9 @@ Local Coercion Z.of_nat : nat >-> Z.
Module DettmanMultiplication.
Section Dettma... | 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 contains substantive proof-engineering changes: adding a new definition (`register_width`), modifying algorithmic definitions (`loop`, `reduce_carry_borrow`), and commenting out/admitting a previously-complete proof body (`eval_reduce_carry_borrow`), but the admitted state and incomplete work-in-progress comm... |
fiat-crypto_abc19783_933fe54a | fiat-crypto | coq | abc197838418a4ea4c64f11c952a00bd7192f9bb | 497ff6d1577985ab380c64d90f168520781eeb70 | garage door invariant: pull out 'preserve' and 'use', | 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 5119b2093..51c54b468 100644
--- a/src/Bedrock/End2End/X25519/GarageDoorTop.v
+++ b/src/Bedrock/End2End/X25519/GarageDoorTop.v
@@ -144,27 +144,25 @@ Require Import bedrock2.WordNotations. Local Open Scope word_scop... | 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 substantially refactors the theorem statement and proof structure for `garagedoor_invariant_proof` (converting nested implications to a conjunction of three goals, restructuring preconditions, and rewriting proof tactics including variable renaming and tactic reorganization), which represents real proof engin... |
fiat-crypto_497ff6d1_7d8bcda1 | fiat-crypto | coq | 497ff6d1577985ab380c64d90f168520781eeb70 | e7e7263d4c51ad670d6d355348ba612e5ea5bdee | GarageDoor.v: thread state in spec | src/Bedrock/End2End/X25519/GarageDoor.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/GarageDoor.v b/src/Bedrock/End2End/X25519/GarageDoor.v
index 2cb06955a..aabbc6ab2 100644
--- a/src/Bedrock/End2End/X25519/GarageDoor.v
+++ b/src/Bedrock/End2End/X25519/GarageDoor.v
@@ -175,11 +175,11 @@ Definition garagedoor_iteration : state -> list (lightbulb_spec.OP _) -> stat... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/GarageDoor.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff makes substantive changes to proof-body tactics (tactic reorganization, `eexists` placement, `rewrite` additions, `intuition` reasoning changes) and modifies the specification itself (adding `/\ SEED=seed /\ SK=sk` guards and changing the chacha20 postcondition), which are real proof engineering and specifica... |
fiat-crypto_e7e7263d_fbee05a0 | fiat-crypto | coq | e7e7263d4c51ad670d6d355348ba612e5ea5bdee | 6cbf5770dcd59ab5e525828ff9151c7ac60ef608 | prettify top-level garagedoor theorem | 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 cea110416..5119b2093 100644
--- a/src/Bedrock/End2End/X25519/GarageDoorTop.v
+++ b/src/Bedrock/End2End/X25519/GarageDoorTop.v
@@ -110,9 +110,9 @@ Lemma compiler_emitted_valid_instructions :
bverify.bvalidInstru... | 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 involves substantive proof engineering changes: reformatting the signature of `good_trace` with explicit parameter names and types, rewriting the entire `invariant_proof` lemma into a new `garagedoor_invariant_proof` theorem with existential quantification over the invariant, adding multiple imports and notat... |
fiat-crypto_6cbf5770_389a3bba | fiat-crypto | coq | 6cbf5770dcd59ab5e525828ff9151c7ac60ef608 | 071b78aa792b49d2ced84bf83308228ae0141415 | split garagedoor into two files | 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... | [] | diff --git a/src/Bedrock/End2End/X25519/GarageDoorTop.v b/src/Bedrock/End2End/X25519/GarageDoorTop.v
new file mode 100644
index 000000000..cea110416
--- /dev/null
+++ b/src/Bedrock/End2End/X25519/GarageDoorTop.v
@@ -0,0 +1,236 @@
+Require Import Coq.Strings.String.
+Require Import Coq.Lists.List.
+Require Import Coq.ZA... | Write the proof content for the declarations in src/Bedrock/End2End/X25519/GarageDoorTop.v. | accept | claude-haiku-4-5 | This is a newly added file containing substantive proof engineering: definitions of functions, lemmas with real proof bodies (chacha20_ok, link_loopfn, link_initfn, invariant_proof), and non-trivial tactic-based proofs including compiler invariant reasoning and program verification, which belong in an evaluation datase... | |
fiat-crypto_ff7b53c1_69649f83 | fiat-crypto | coq | ff7b53c141500bf34789418007a92336472db324 | 259dfc7afbb8d3d31fe694bfc53742e662356132 | Fix build errors | src/Arithmetic/BinaryExtendedGCD.v | proof_add | Require Import Coq.Bool.Bool.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.ZArith.Znumtheory.
Require Import Crypto.Experiments.Loops.
Require Import Crypto.Util.Tactics.DestructHead.
Require Import Crypto.Util.ZUtil.
Require Import Crypto.Util.ZUtil.Tactics.DivModToQuotRem.
L... | Require Import Coq.Bool.Bool.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.ZArith.Znumtheory.
Require Import Crypto.Util.Loops.
Require Import Crypto.Util.Tactics.DestructHead.
Require Import Crypto.Util.ZUtil.
Require Import Crypto.Util.ZUtil.Tactics.DivModToQuotRem.
Require I... | [] | diff --git a/src/Arithmetic/BinaryExtendedGCD.v b/src/Arithmetic/BinaryExtendedGCD.v
index 16361cad6..e9d205995 100644
--- a/src/Arithmetic/BinaryExtendedGCD.v
+++ b/src/Arithmetic/BinaryExtendedGCD.v
@@ -2,10 +2,11 @@ Require Import Coq.Bool.Bool.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
... | Write or extend the proof(s) in src/Arithmetic/BinaryExtendedGCD.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains substantive proof-body changes (rewriting tactics, adding an explicit `measure` subterm binding, adding a missing `lia` goal in the invariant maintenance branch, and simplifying the fuel-measure proof), plus meaningful API migration edits (`Crypto.Experiments.Loops` → `Crypto.Util.Loops`, `Z.mod_smal... |
fiat-crypto_259dfc7a_6c6e5400 | fiat-crypto | coq | 259dfc7afbb8d3d31fe694bfc53742e662356132 | 8377bca1f8e2bdc7997480fd33b1492291f87c8c | Add a constant-time binary extended GCD algorithm. | src/Arithmetic/BinaryExtendedGCD.v | proof_add | Require Import Coq.Bool.Bool.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.ZArith.Znumtheory.
Require Import Crypto.Experiments.Loops.
Require Import Crypto.Util.Tactics.DestructHead.
Require Import Crypto.Util.ZUtil.
Require Import Crypto.Util.ZUtil.Tactics.DivModToQuotRem.
L... | [] | diff --git a/src/Arithmetic/BinaryExtendedGCD.v b/src/Arithmetic/BinaryExtendedGCD.v
new file mode 100644
index 000000000..16361cad6
--- /dev/null
+++ b/src/Arithmetic/BinaryExtendedGCD.v
@@ -0,0 +1,873 @@
+Require Import Coq.Bool.Bool.
+Require Import Coq.micromega.Lia.
+Require Import Coq.ZArith.ZArith.
+Require Impo... | Write the proof content for the declarations in src/Arithmetic/BinaryExtendedGCD.v. | accept | claude-haiku-4-5 | This is a new file with substantial proof content including multiple definitions, lemmas, theorems, and proofs for a constant-time binary extended GCD algorithm—a clear case of real proof engineering that belongs in an evaluation dataset. | |
fiat-crypto_38317133_f1728ed0 | fiat-crypto | coq | 38317133e470d6368080cdd03cae0e44c17a4c15 | db2dd50e5c2d31fddf197fde878552e06d0adb7f | inferring red-zone by calling convention | 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 554f76e6d..5acc75584 100644
--- a/src/Assembly/Equivalence.v
+++ b/src/Assembly/Equivalence.v
@@ -71,9 +71,8 @@ Typeclasses Opaque assembly_argument_registers_left_to_right_opt.
Class assembly_stack_size_opt := assembly_stack_size' : option N.
... | 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 introduces substantive proof-engineering changes: new definitions (`microsoft_x64_assembly_stack_red_zone`, `system_v_amd64_assembly_stack_red_zone`, `assembly_stack_red_zone`), a signature change to `assembly_stack_size` (adding a `calling_convention` parameter), logic refactoring in the definition body (rep... |
fiat-crypto_0494e457_39ca6929 | fiat-crypto | coq | 0494e45713d8c7047a5c5d9f58285e914f4c667c | fcc467e0c095e7655f4f06fa20a7cba2c9290ece | Add another rule for bedrock2 rewriting (#1591) | src/Arithmetic/BYInv.v | proof_add | Require Import Coq.Bool.Bool.
Require Import Coq.ZArith.ZArith.
Require Import Coq.Lists.List.
Require Import Coq.nsatz.Nsatz.
Require Import Coq.micromega.Lia.
Require Import Crypto.Arithmetic.UniformWeight.
Require Import Crypto.Arithmetic.Saturated.
Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Arithm... | Require Import Coq.Bool.Bool.
Require Import Coq.ZArith.ZArith.
Require Import Coq.Lists.List.
Require Import Coq.nsatz.Nsatz.
Require Import Coq.micromega.Lia.
Require Import Crypto.Arithmetic.UniformWeight.
Require Import Crypto.Arithmetic.Saturated.
Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Arithm... | [] | diff --git a/src/Arithmetic/BYInv.v b/src/Arithmetic/BYInv.v
index a40322d6b..3c016291a 100644
--- a/src/Arithmetic/BYInv.v
+++ b/src/Arithmetic/BYInv.v
@@ -13,6 +13,7 @@ Require Import Crypto.Util.ListUtil.
Require Import Crypto.Util.ZUtil.Notations.
Require Import Crypto.Arithmetic.Partition.
Require Import Crypto... | Write or extend the proof(s) in src/Arithmetic/BYInv.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains substantive proof-tactic changes: replacing an explicit `destruct (m <? machine_wordsize) eqn:E` with `break_innermost_match; Z.ltb_to_lt; try lia`, removing intermediate `Z.ltb_lt`/`Z.ltb_ge` rewrites, and simplifying the proof structure — these are non-trivial refactorings of proof bodies that chan... |
fiat-crypto_0494e457_7ceb7497 | fiat-crypto | coq | 0494e45713d8c7047a5c5d9f58285e914f4c667c | fcc467e0c095e7655f4f06fa20a7cba2c9290ece | Add another rule for bedrock2 rewriting (#1591) | src/Rewriter/Rules.v | proof_add | 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.ZUtil.Definitions.
Require Import Crypto.Util.ZUtil.Notations.
Require Import Crypto.Util.ZRange... | 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.ZUtil.Definitions.
Require Import Crypto.Util.ZUtil.Notations.
Require Import Crypto.Util.ZRange... | [] | diff --git a/src/Rewriter/Rules.v b/src/Rewriter/Rules.v
index 00b89ef64..5046493f7 100644
--- a/src/Rewriter/Rules.v
+++ b/src/Rewriter/Rules.v
@@ -997,6 +997,12 @@ Section with_bitwidth.
= (dlet lc := singlewidth_carry (Z.add_get_carry_full cstZ_pow2_bitwidth (singlewidth xl) (singlewidth y)) ... | Write or extend the proof(s) in src/Rewriter/Rules.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds a new rewriting rule (a `forall` statement with a proof body) to the rules list in src/Rewriter/Rules.v, which is a hand-written, non-generated file under src/Rewriter/ that implements proof engineering for term rewriting; while the addition is substantive and belongs in an evaluation dataset, the score ... |
fiat-crypto_0494e457_81cf0cd8 | fiat-crypto | coq | 0494e45713d8c7047a5c5d9f58285e914f4c667c | fcc467e0c095e7655f4f06fa20a7cba2c9290ece | Add another rule for bedrock2 rewriting (#1591) | src/Rewriter/RulesProofs.v | proof_add | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith Coq.ZArith.Znumtheory.
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.ZUtil.Definitions.
Require Import Crypto... | Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith Coq.ZArith.Znumtheory.
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.ZUtil.Definitions.
Require Import Crypto... | [] | diff --git a/src/Rewriter/RulesProofs.v b/src/Rewriter/RulesProofs.v
index 6c7375bec..1b5f5db1f 100644
--- a/src/Rewriter/RulesProofs.v
+++ b/src/Rewriter/RulesProofs.v
@@ -12,6 +12,8 @@ Require Import Crypto.Util.ZUtil.Tactics.RewriteModSmall.
Require Import Crypto.Util.ZUtil.Tactics.RewriteModDivide.
Require Import... | Write or extend the proof(s) in src/Rewriter/RulesProofs.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains substantive proof-engineering changes: two new `Require Import` statements for testbit utilities, two new local tactics (`post_testbit_step` and `handle_via_testbit`), and modifications to an existing proof tactic (reordering lines, adding `try solve [ handle_via_testbit ]`, adding a shelve fallback ... |
fiat-crypto_0494e457_3f94b7b7 | fiat-crypto | coq | 0494e45713d8c7047a5c5d9f58285e914f4c667c | fcc467e0c095e7655f4f06fa20a7cba2c9290ece | Add another rule for bedrock2 rewriting (#1591) | src/Util/ZUtil/Shift.v | proof_add | Require Import Coq.ZArith.ZArith.
Require Import Coq.micromega.Lia.
Require Import Crypto.Util.ZUtil.Hints.Core.
Require Import Crypto.Util.ZUtil.Ones.
Require Import Crypto.Util.ZUtil.Definitions.
Require Import Crypto.Util.ZUtil.Testbit.
Require Import Crypto.Util.ZUtil.Pow2Mod.
Require Import Crypto.Util.ZUtil.Le.
R... | Require Import Coq.ZArith.ZArith.
Require Import Coq.micromega.Lia.
Require Import Crypto.Util.ZUtil.Hints.Core.
Require Import Crypto.Util.ZUtil.Ones.
Require Import Crypto.Util.ZUtil.Definitions.
Require Import Crypto.Util.ZUtil.Testbit.
Require Import Crypto.Util.ZUtil.Pow2Mod.
Require Import Crypto.Util.ZUtil.Le.
R... | [] | diff --git a/src/Util/ZUtil/Shift.v b/src/Util/ZUtil/Shift.v
index 619bed603..2644f8cf9 100644
--- a/src/Util/ZUtil/Shift.v
+++ b/src/Util/ZUtil/Shift.v
@@ -76,7 +76,7 @@ Module Z.
then Z.testbit a i
else Z.testbit b (i - n).
Proof. destruct (Z.ltb_sp... | Write or extend the proof(s) in src/Util/ZUtil/Shift.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff substantively modifies a lemma statement (`testbit_add_shiftl_full`) by removing a hypothesis (`Hi : 0 <= i`) and changing the proof obligation by adding a nested conditional `if (i <? 0) then false else ...` to the specification, which requires updating the proof body to handle the new case—this is a real pr... |
fiat-crypto_30f60eab_36a69814 | fiat-crypto | coq | 30f60eab450f10836f478781e758e5b84d4494d0 | dfc64fa53a1dbc7a4ba952f26532e78b5e946ab9 | small fixes | 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 0c11537b5..e3042bd2b 100644
--- a/src/Arithmetic/DettmanMultiplication.v
+++ b/src/Arithmetic/DettmanMultiplication.v
@@ -125,18 +125,20 @@ Module DettmanMultiplication.
rewrite H. rewrite Z_div_mult; try apply s... | 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 | The diff contains substantive proof-engineering changes: (1) addition of a `Hint Rewrite` declaration that affects tactic automation, (2) refactored proof tactics in `eval_mulmod` and `eval_squaremod` that delegate rewriting to the hint database instead of explicit tactic calls, and (3) new module-level hint declaratio... |
fiat-crypto_30f60eab_1206bc8c | fiat-crypto | coq | 30f60eab450f10836f478781e758e5b84d4494d0 | dfc64fa53a1dbc7a4ba952f26532e78b5e946ab9 | small fixes | src/PushButtonSynthesis/DettmanMultiplication.v | proof_add | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | [] | diff --git a/src/PushButtonSynthesis/DettmanMultiplication.v b/src/PushButtonSynthesis/DettmanMultiplication.v
index 90c7d163d..753794fa7 100644
--- a/src/PushButtonSynthesis/DettmanMultiplication.v
+++ b/src/PushButtonSynthesis/DettmanMultiplication.v
@@ -189,11 +189,6 @@ Section __.
(fun fname : string =>... | Write or extend the proof(s) in src/PushButtonSynthesis/DettmanMultiplication.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff removes four `Hint` and `Hint Rewrite` declarations that are elaboration-shaping directives; removing them is a substantive change to the proof environment and hint database configuration, which affects how subsequent proofs are searched and elaborated, making this a real proof-engineering change (ACCEPT). |
fiat-crypto_3cc7a742_2a86e0ed | fiat-crypto | coq | 3cc7a7427bd9116f157dbb75b1c3043b2874f009 | c0bc4ceec7e97510f88d2c3c7564a12a2ad1e215 | added dettman square operation | 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 cb8bedcae..0c11537b5 100644
--- a/src/Arithmetic/DettmanMultiplication.v
+++ b/src/Arithmetic/DettmanMultiplication.v
@@ -79,11 +79,8 @@ Module DettmanMultiplication.
- simpl. rewrite eval_loop_body. apply IHl'.
... | 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 involves substantial proof engineering: extracting a common `reduce_carry_borrow` helper from `mulmod`, adding a new `squaremod` operation with its own theorem (`eval_squaremod`), refactoring `eval_mulmod` to use the helper, and wiring these definitions through the module structure—all constitute real definit... |
fiat-crypto_3cc7a742_53668545 | fiat-crypto | coq | 3cc7a7427bd9116f157dbb75b1c3043b2874f009 | c0bc4ceec7e97510f88d2c3c7564a12a2ad1e215 | added dettman square operation | src/COperationSpecifications.v | proof_add | (** * C Operation Specifications *)
(** The specifications for the various operations to be synthesized. *)
Require Import Coq.ZArith.ZArith Coq.micromega.Lia.
Require Import Coq.Lists.List.
Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Arithmetic.ModOps.
Require Import Crypto.Arithmetic.BaseConversion.
... | (** * C Operation Specifications *)
(** The specifications for the various operations to be synthesized. *)
Require Import Coq.ZArith.ZArith Coq.micromega.Lia.
Require Import Coq.Lists.List.
Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Arithmetic.ModOps.
Require Import Crypto.Arithmetic.BaseConversion.
... | [] | diff --git a/src/COperationSpecifications.v b/src/COperationSpecifications.v
index e20e03890..cb112805e 100644
--- a/src/COperationSpecifications.v
+++ b/src/COperationSpecifications.v
@@ -512,6 +512,13 @@ Module DettmanMultiplication.
-> list_Z_bounded_by input_bounds y
-> eval (mul x y) mod m = ((ev... | Write or extend the proof(s) in src/COperationSpecifications.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds a new definition (`square_correct`) specifying the correctness property for a Dettman square operation in a proof specification module—a real proof engineering artifact (new spec/statement) that is not merely tooling/documentation/whitespace, making it substantive content suitable for an evaluation datas... |
fiat-crypto_3cc7a742_31b4d083 | fiat-crypto | coq | 3cc7a7427bd9116f157dbb75b1c3043b2874f009 | c0bc4ceec7e97510f88d2c3c7564a12a2ad1e215 | added dettman square operation | src/PushButtonSynthesis/DettmanMultiplication.v | proof_add | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | [] | diff --git a/src/PushButtonSynthesis/DettmanMultiplication.v b/src/PushButtonSynthesis/DettmanMultiplication.v
index b73e48723..90c7d163d 100644
--- a/src/PushButtonSynthesis/DettmanMultiplication.v
+++ b/src/PushButtonSynthesis/DettmanMultiplication.v
@@ -48,6 +48,8 @@ Import COperationSpecifications.DettmanMultiplica... | Write or extend the proof(s) in src/PushButtonSynthesis/DettmanMultiplication.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds substantive new proof engineering: a new `square` operation definition with its own pipeline, correctness lemma (`square_correct`), well-formedness lemma (`Wf_square`), hints, and supporting infrastructure—these are real definitional and proof-body changes, not mechanical generation or boilerplate import... |
fiat-crypto_3cc7a742_dfdc0c0d | fiat-crypto | coq | 3cc7a7427bd9116f157dbb75b1c3043b2874f009 | c0bc4ceec7e97510f88d2c3c7564a12a2ad1e215 | added dettman square operation | src/PushButtonSynthesis/DettmanMultiplicationReificationCache.v | proof_add | (** * Push-Button Synthesis of Bitcoin Multiplication: Reification Cache *)
Require Import Coq.derive.Derive.
Require Import Crypto.PushButtonSynthesis.ReificationCache.
Require Import Crypto.Arithmetic.DettmanMultiplication.
Local Set Keyed Unification. (* needed for making [autorewrite] fast, c.f. COQBUG(https://git... | (** * Push-Button Synthesis of Bitcoin Multiplication: Reification Cache *)
Require Import Coq.derive.Derive.
Require Import Crypto.PushButtonSynthesis.ReificationCache.
Require Import Crypto.Arithmetic.DettmanMultiplication.
Local Set Keyed Unification. (* needed for making [autorewrite] fast, c.f. COQBUG(https://git... | [] | diff --git a/src/PushButtonSynthesis/DettmanMultiplicationReificationCache.v b/src/PushButtonSynthesis/DettmanMultiplicationReificationCache.v
index dcc0443ef..a992e7d32 100644
--- a/src/PushButtonSynthesis/DettmanMultiplicationReificationCache.v
+++ b/src/PushButtonSynthesis/DettmanMultiplicationReificationCache.v
@@ ... | Write or extend the proof(s) in src/PushButtonSynthesis/DettmanMultiplicationReificationCache.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds a new reified square operation (reified_square_gen) with its correctness proof and associated hints, following the exact same structure as the existing multiplication operation; while it involves `Derive`, `SuchThat`, `Proof`, and `Hint` declarations, the addition of new definitions, correctness statemen... |
fiat-crypto_8d8616e3_aebe47f1 | fiat-crypto | coq | 8d8616e3cea84349c7179af3ffadb659a8c38ad0 | 960ea80fe0fa8ffe3eb78eac6f4604b919a972cb | added note about dettman bounds | src/PushButtonSynthesis/DettmanMultiplication.v | proof_add | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | [] | diff --git a/src/PushButtonSynthesis/DettmanMultiplication.v b/src/PushButtonSynthesis/DettmanMultiplication.v
index df983fc34..59da77645 100644
--- a/src/PushButtonSynthesis/DettmanMultiplication.v
+++ b/src/PushButtonSynthesis/DettmanMultiplication.v
@@ -79,8 +79,7 @@ Section __.
notice where the constant 0s ... | Write or extend the proof(s) in src/PushButtonSynthesis/DettmanMultiplication.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff includes substantive changes: removal of commented-out code, expansion of a comment with documentation about parameter bounds (non-trivial content clarifying the semantics), deletion of two local tactics (`use_curve_good_t` and `solve_extra_bounds_side_conditions`), and modification of a `Hint Rewrite` declara... |
fiat-crypto_960ea80f_3e4b1c50 | fiat-crypto | coq | 960ea80fe0fa8ffe3eb78eac6f4604b919a972cb | f585b1d05ba0fc97020836a23f2b9d6c18b78c35 | fixed a couple typos in the bounds | src/PushButtonSynthesis/DettmanMultiplication.v | proof_add | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | [] | diff --git a/src/PushButtonSynthesis/DettmanMultiplication.v b/src/PushButtonSynthesis/DettmanMultiplication.v
index 1e6f0f3af..df983fc34 100644
--- a/src/PushButtonSynthesis/DettmanMultiplication.v
+++ b/src/PushButtonSynthesis/DettmanMultiplication.v
@@ -91,11 +91,11 @@ Section __.
Definition output_magnitude_last... | Write or extend the proof(s) in src/PushButtonSynthesis/DettmanMultiplication.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff fixes parenthesization errors in mathematical expressions (`input_bounds` and `output_bounds` definitions) that affect operator precedence—changing where subtraction is applied in division and exponentiation operations—which alters the semantic meaning of the bounds specifications and is substantive proof eng... |
fiat-crypto_7a1cc579_7cb67df1 | fiat-crypto | coq | 7a1cc579e0d5099a8896cfa47eceff0bbfb24ca4 | 07e63cbb8d80192717a50d5fc9ad2540dece9351 | changed CLI.v and Makefile.examples to account for changes to PushButtonSynthesis/DettmanMultiplication.v | 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 8e90fa5f3..a3d9341c9 100644
--- a/src/CLI.v
+++ b/src/CLI.v
@@ -97,12 +97,6 @@ Module ForExtraction.
else None
end.
- Definition parse_n_nat (s : string) : option nat
- := parse_nat s.
-
- Definition parse_nat_limbwidth (s : string) : option nat
- ... | 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 is a substantive change to CLI argument parsing and synthesis definitions: it removes two unused helper functions (`parse_n_nat`, `parse_nat_limbwidth`), adds a new argument specification (`last_limb_width_spec`), and updates multiple definition bodies and pattern matches throughout the DettmanMultiplication comma... |
fiat-crypto_7a1cc579_d5c5074e | fiat-crypto | coq | 7a1cc579e0d5099a8896cfa47eceff0bbfb24ca4 | 07e63cbb8d80192717a50d5fc9ad2540dece9351 | changed CLI.v and Makefile.examples to account for changes to PushButtonSynthesis/DettmanMultiplication.v | src/PushButtonSynthesis/DettmanMultiplication.v | proof_add | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | [] | diff --git a/src/PushButtonSynthesis/DettmanMultiplication.v b/src/PushButtonSynthesis/DettmanMultiplication.v
index 800d4ae9d..1e6f0f3af 100644
--- a/src/PushButtonSynthesis/DettmanMultiplication.v
+++ b/src/PushButtonSynthesis/DettmanMultiplication.v
@@ -68,7 +68,7 @@ Section __.
(s : Z)
(c_ : l... | Write or extend the proof(s) in src/PushButtonSynthesis/DettmanMultiplication.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff contains one comment text change (whitespace-neutral, REJECT) and two substantive algorithmic fixes (`seq 0 n` → `seq 0 (n - 1)` in both `input_bounds` and `output_bounds` definitions), which are definition-body edits that affect the computed values and therefore qualify as ACCEPT material; the algorithmic cha... |
fiat-crypto_07e63cbb_623744f3 | fiat-crypto | coq | 07e63cbb8d80192717a50d5fc9ad2540dece9351 | e071ba15c3ad250c4f6d717355b34ba0fd1588e8 | a couple things that belong to the previous commit | src/PushButtonSynthesis/DettmanMultiplication.v | proof_add | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | [] | diff --git a/src/PushButtonSynthesis/DettmanMultiplication.v b/src/PushButtonSynthesis/DettmanMultiplication.v
index e06c8936a..800d4ae9d 100644
--- a/src/PushButtonSynthesis/DettmanMultiplication.v
+++ b/src/PushButtonSynthesis/DettmanMultiplication.v
@@ -89,9 +89,7 @@ Section __.
Definition input_magnitude := Opti... | Write or extend the proof(s) in src/PushButtonSynthesis/DettmanMultiplication.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff refactors the `limbwidth` definition from a computed rational (using `Z.log2_up`) to a call to `dettman_multiplication_mod_ops.weight`, and correspondingly updates the reification call to pass different arguments (`s, c_, n, last_limb_width` instead of `Qnum limbwidth, QDen limbwidth, s, c_, n`); these are su... |
fiat-crypto_5d319dfe_1877e400 | fiat-crypto | coq | 5d319dfe2722857711a25ee11d038610b5e20916 | fcbb6b5aa62a962280b4a2f459f351380ca76abe | removed no-longer-needed stuff from src/PushButtonSynthesis/DettmanMultiplication.v | src/PushButtonSynthesis/DettmanMultiplication.v | proof_add | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | [] | diff --git a/src/PushButtonSynthesis/DettmanMultiplication.v b/src/PushButtonSynthesis/DettmanMultiplication.v
index b4dfc5865..e06c8936a 100644
--- a/src/PushButtonSynthesis/DettmanMultiplication.v
+++ b/src/PushButtonSynthesis/DettmanMultiplication.v
@@ -111,12 +111,13 @@ Section __.
:= check_args_of_list
... | Write or extend the proof(s) in src/PushButtonSynthesis/DettmanMultiplication.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff removes multiple lemmas (`from_Q_to_Z_and_back`, `last_limb_width_small`, `limbwidth_good`, `s_small`, `s_gt_0`, `Qceiling_lt'`, `s_big`) and modifies the `use_curve_good` statement/proof by adding a new constraint and uncommenting bounds checks, which is a substantive change to definitions and proof obligatio... |
fiat-crypto_fcbb6b5a_44e9a128 | fiat-crypto | coq | fcbb6b5aa62a962280b4a2f459f351380ca76abe | aa78d4cd374c524471da78f0a768d668531d59e8 | moved fractional limbwidth logic from PushButtonSynthesis/DettmanMultiplication.v to mod_ops module in Arithmetic/DettmanMultiplication.v | 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.Util.ZUtil.Modulo.PullPush.
Require Import Crypto.Arithmetic.ModOps.
Local Open Scope list_scope.
Import Associational Positional.
Import ListNotations. Local Open Scope Z_sco... | Require Import Crypto.Arithmetic.Core.
Require Import Coq.ZArith.ZArith Coq.micromega.Lia.
Require Import Coq.Lists.List.
Require Import Crypto.Util.ZUtil.Modulo.PullPush.
Require Import Crypto.Arithmetic.ModOps.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Local Open Scope list_scope.
Import Associational... | [] | diff --git a/src/Arithmetic/DettmanMultiplication.v b/src/Arithmetic/DettmanMultiplication.v
index 22c47f8ff..57e062f43 100644
--- a/src/Arithmetic/DettmanMultiplication.v
+++ b/src/Arithmetic/DettmanMultiplication.v
@@ -3,6 +3,7 @@ Require Import Coq.ZArith.ZArith Coq.micromega.Lia.
Require Import Coq.Lists.List.
Re... | 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 is a substantive refactoring that moves fractional limbwidth logic from PushButtonSynthesis into the Arithmetic module, replacing integer parameters (limbwidth_num, limbwidth_den, limbs) with a rational definition (limbwidth as Q) and nat parameters (n, last_limb_width), and adds five non-trivial proofs (n_small, ... |
fiat-crypto_aa78d4cd_880490b2 | fiat-crypto | coq | aa78d4cd374c524471da78f0a768d668531d59e8 | bc7db663276c260fc347a1f9241a290de76c59e1 | further progress towards fractional limbwidths | src/PushButtonSynthesis/DettmanMultiplication.v | proof_add | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | [] | diff --git a/src/PushButtonSynthesis/DettmanMultiplication.v b/src/PushButtonSynthesis/DettmanMultiplication.v
index 657b57622..b4dfc5865 100644
--- a/src/PushButtonSynthesis/DettmanMultiplication.v
+++ b/src/PushButtonSynthesis/DettmanMultiplication.v
@@ -132,7 +132,10 @@ Section __.
: s - c <> 0
/\ (3 <= ... | Write or extend the proof(s) in src/PushButtonSynthesis/DettmanMultiplication.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains substantive proof-body changes: the addition of two new lemmas (`s_gt_0` and `Qceiling_lt'`) with complete proofs, a significant expansion of the `s_big` lemma's proof body (from an incomplete stub to a detailed tactic sequence), reformatting/reorganization of existing tactic code in the prior proof,... |
fiat-crypto_bc7db663_20e09c29 | fiat-crypto | coq | bc7db663276c260fc347a1f9241a290de76c59e1 | da03b669c351343e42fd357a9352e08a8e07a7f3 | further progress towards fractional limbwidths | src/PushButtonSynthesis/DettmanMultiplication.v | proof_add | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | [] | diff --git a/src/PushButtonSynthesis/DettmanMultiplication.v b/src/PushButtonSynthesis/DettmanMultiplication.v
index 4b1576268..657b57622 100644
--- a/src/PushButtonSynthesis/DettmanMultiplication.v
+++ b/src/PushButtonSynthesis/DettmanMultiplication.v
@@ -68,7 +68,7 @@ Section __.
(s : Z)
(c_ : l... | Write or extend the proof(s) in src/PushButtonSynthesis/DettmanMultiplication.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains substantive proof engineering: completion of previously admitted lemmas (`from_Q_to_Z_and_back`, `last_limb_width_small`), addition of new constraints in `use_curve_good` with simplified proof structure, removal of debug directives (`Print fold_left`, `Print seq`), type/syntax fixes (`(3 <=? n)%nat` ... |
fiat-crypto_da03b669_ecf9228a | fiat-crypto | coq | da03b669c351343e42fd357a9352e08a8e07a7f3 | 3ddc3f411d84312822e989a42b53d8429e12317b | continued modifying PushButtonSynthesis/DettmanMultiplication.v to use fractional limbwidths | src/PushButtonSynthesis/DettmanMultiplication.v | proof_add | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | [] | diff --git a/src/PushButtonSynthesis/DettmanMultiplication.v b/src/PushButtonSynthesis/DettmanMultiplication.v
index 1a5acb311..4b1576268 100644
--- a/src/PushButtonSynthesis/DettmanMultiplication.v
+++ b/src/PushButtonSynthesis/DettmanMultiplication.v
@@ -114,9 +114,6 @@ Section __.
(fun v => (true, v))
... | Write or extend the proof(s) in src/PushButtonSynthesis/DettmanMultiplication.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains multiple substantive proof-engineering changes: new lemmas (`from_Q_to_Z_and_back`, `something`, `s_small`) with non-trivial tactic bodies; removal of commented constraints; edits to proof tactics (e.g., `limbwidth_good`); renaming/migration of definitions in hints; and changes to the `mul` definitio... |
fiat-crypto_da03b669_360df242 | fiat-crypto | coq | da03b669c351343e42fd357a9352e08a8e07a7f3 | 3ddc3f411d84312822e989a42b53d8429e12317b | continued modifying PushButtonSynthesis/DettmanMultiplication.v to use fractional limbwidths | src/PushButtonSynthesis/DettmanMultiplicationReificationCache.v | proof_add | (** * Push-Button Synthesis of Bitcoin Multiplication: Reification Cache *)
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.ZArith.ZArith.
Require Import Coq.derive.Derive.
Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Arithmetic.ModOps.
Require Import Crypto.PushButtonSynthes... | (** * Push-Button Synthesis of Bitcoin Multiplication: Reification Cache *)
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.ZArith.ZArith.
Require Import Coq.derive.Derive.
Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Arithmetic.ModOps.
Require Import Crypto.PushButtonSynthes... | [] | diff --git a/src/PushButtonSynthesis/DettmanMultiplicationReificationCache.v b/src/PushButtonSynthesis/DettmanMultiplicationReificationCache.v
index 784d48f73..dcbf7f297 100644
--- a/src/PushButtonSynthesis/DettmanMultiplicationReificationCache.v
+++ b/src/PushButtonSynthesis/DettmanMultiplicationReificationCache.v
@@ ... | Write or extend the proof(s) in src/PushButtonSynthesis/DettmanMultiplicationReificationCache.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds a single `Import` statement to access module operations (`dettman_multiplication_mod_ops`), which is a substantive change that affects the proof context and enables access to definitions/tactics needed for the reification proof to work, making it a real proof engineering dependency change rather than a m... |
fiat-crypto_3ddc3f41_3229eafb | fiat-crypto | coq | 3ddc3f411d84312822e989a42b53d8429e12317b | 248e9a375ae7b2e22698dfd0c81ba8bab2a658dc | added mod_ops section to Arithmetic/DettmanMultiplication.v | 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.Util.ZUtil.Modulo.PullPush.
Local Open Scope list_scope.
Import Associational Positional.
Import ListNotations. Local Open Scope Z_scope.
Local Coercion Z.of_nat : nat >-> Z.... | Require Import Crypto.Arithmetic.Core.
Require Import Coq.ZArith.ZArith Coq.micromega.Lia.
Require Import Coq.Lists.List.
Require Import Crypto.Util.ZUtil.Modulo.PullPush.
Require Import Crypto.Arithmetic.ModOps.
Local Open Scope list_scope.
Import Associational Positional.
Import ListNotations. Local Open Scope Z_sco... | [] | diff --git a/src/Arithmetic/DettmanMultiplication.v b/src/Arithmetic/DettmanMultiplication.v
index b704df628..22c47f8ff 100644
--- a/src/Arithmetic/DettmanMultiplication.v
+++ b/src/Arithmetic/DettmanMultiplication.v
@@ -2,6 +2,7 @@ Require Import Crypto.Arithmetic.Core.
Require Import Coq.ZArith.ZArith Coq.micromega.... | 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 adds a new module `dettman_multiplication_mod_ops` with substantive definitions (`mulmod`, `eval_mulmod`) that wire together existing proof content from the renamed `DettmanMultiplication` section, plus structural reorganization (renaming `Section __` to `Module DettmanMultiplication` / `Section DettmanMultip... |
fiat-crypto_248e9a37_37f4c7e4 | fiat-crypto | coq | 248e9a375ae7b2e22698dfd0c81ba8bab2a658dc | 19a012a852c9c61f4213a4b48ed854e8f0149837 | continued modifying PushButtonSynthesis/DettmanMultiplication.v to use fractional bitwidths | 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.Util.ZUtil.Modulo.PullPush.
Local Open Scope list_scope.
Import Associational Positional.
Import ListNotations. Local Open Scope Z_scope.
Local Coercion Z.of_nat : nat >-> Z.... | Require Import Crypto.Arithmetic.Core.
Require Import Coq.ZArith.ZArith Coq.micromega.Lia.
Require Import Coq.Lists.List.
Require Import Crypto.Util.ZUtil.Modulo.PullPush.
Local Open Scope list_scope.
Import Associational Positional.
Import ListNotations. Local Open Scope Z_scope.
Local Coercion Z.of_nat : nat >-> Z.... | [] | diff --git a/src/Arithmetic/DettmanMultiplication.v b/src/Arithmetic/DettmanMultiplication.v
index a822cd6a8..b704df628 100644
--- a/src/Arithmetic/DettmanMultiplication.v
+++ b/src/Arithmetic/DettmanMultiplication.v
@@ -15,7 +15,6 @@ Context
(s : Z)
(c_ : list (Z*Z))
(limbs : nat)
- (limb_size : nat)... | 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 is a substantive signature change—removing the `limb_size` parameter from the context—which affects the theorem statements and their proof obligations downstream, making it a real proof engineering modification that belongs in the evaluation dataset. |
fiat-crypto_248e9a37_ee196a4c | fiat-crypto | coq | 248e9a375ae7b2e22698dfd0c81ba8bab2a658dc | 19a012a852c9c61f4213a4b48ed854e8f0149837 | continued modifying PushButtonSynthesis/DettmanMultiplication.v to use fractional bitwidths | src/PushButtonSynthesis/DettmanMultiplication.v | proof_add | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | [] | diff --git a/src/PushButtonSynthesis/DettmanMultiplication.v b/src/PushButtonSynthesis/DettmanMultiplication.v
index 81b58a077..1a5acb311 100644
--- a/src/PushButtonSynthesis/DettmanMultiplication.v
+++ b/src/PushButtonSynthesis/DettmanMultiplication.v
@@ -160,20 +160,32 @@ Section __.
summary
cor... | Write or extend the proof(s) in src/PushButtonSynthesis/DettmanMultiplication.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff shows substantive proof engineering: it adds two new lemmas (`last_limb_width_small` and `limbwidth_good`) with real proof bodies (the second uses tactics like `cbv`, `destruct`, `lia`), simplifies an existing proof (`weight_good`), and modifies a definition signature (`mul`) by changing its reification argum... |
fiat-crypto_19a012a8_9a334f4b | fiat-crypto | coq | 19a012a852c9c61f4213a4b48ed854e8f0149837 | 4eff56962e41a876ed18f0c48e3102036f0237a9 | began rewriting PushButtonSynthesis/DettmanMultiplication.v to use fractional bitwidths | 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.Util.ZUtil.Modulo.PullPush.
Local Open Scope list_scope.
Import Associational Positional.
Import ListNotations. Local Open Scope Z_scope.
Local Coercion Z.of_nat : nat >-> Z.... | Require Import Crypto.Arithmetic.Core.
Require Import Coq.ZArith.ZArith Coq.micromega.Lia.
Require Import Coq.Lists.List.
Require Import Crypto.Util.ZUtil.Modulo.PullPush.
Local Open Scope list_scope.
Import Associational Positional.
Import ListNotations. Local Open Scope Z_scope.
Local Coercion Z.of_nat : nat >-> Z.... | [] | diff --git a/src/Arithmetic/DettmanMultiplication.v b/src/Arithmetic/DettmanMultiplication.v
index a41591ef7..a822cd6a8 100644
--- a/src/Arithmetic/DettmanMultiplication.v
+++ b/src/Arithmetic/DettmanMultiplication.v
@@ -14,29 +14,27 @@ Section __.
Context
(s : Z)
(c_ : list (Z*Z))
- (p_nz : s - Associati... | 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 is substantive proof engineering: the diff refactors context parameters (reordering and bundling weight properties into `@weight_properties weight`), updates proof bodies to use the new parameter names, adds `Hint` declarations to support automation, and simplifies two major proofs (`eval_loop_body` and `eval_mulm... |
fiat-crypto_19a012a8_24282d39 | fiat-crypto | coq | 19a012a852c9c61f4213a4b48ed854e8f0149837 | 4eff56962e41a876ed18f0c48e3102036f0237a9 | began rewriting PushButtonSynthesis/DettmanMultiplication.v to use fractional bitwidths | src/PushButtonSynthesis/DettmanMultiplication.v | proof_add | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | [] | diff --git a/src/PushButtonSynthesis/DettmanMultiplication.v b/src/PushButtonSynthesis/DettmanMultiplication.v
index 2a33fa556..81b58a077 100644
--- a/src/PushButtonSynthesis/DettmanMultiplication.v
+++ b/src/PushButtonSynthesis/DettmanMultiplication.v
@@ -65,10 +65,10 @@ Section __.
{pipeline_to_string_opts... | Write or extend the proof(s) in src/PushButtonSynthesis/DettmanMultiplication.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains substantive proof engineering changes: parameter renamings (`s_` → `s`, `limbwidth` → `last_limb_width`), definition modifications (`limbwidth` redefined from nat to Q, `input_bounds` and `output_bounds` rewritten with fractional weight logic), commented-out proof obligations, and an incomplete `weig... |
fiat-crypto_50360adb_20a95f14 | fiat-crypto | coq | 50360adb587837c607138c4a4b194bf6d5402035 | 7ccc51475d35eff51501ef54e9767cffebeb3f55 | ran make, tidied things up | src/PushButtonSynthesis/DettmanMultiplication.v | proof_add | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | [] | diff --git a/src/PushButtonSynthesis/DettmanMultiplication.v b/src/PushButtonSynthesis/DettmanMultiplication.v
index f961ba201..ab39d3839 100644
--- a/src/PushButtonSynthesis/DettmanMultiplication.v
+++ b/src/PushButtonSynthesis/DettmanMultiplication.v
@@ -68,7 +68,7 @@ Section __.
(s_ : Z)
(c_ : ... | Write or extend the proof(s) in src/PushButtonSynthesis/DettmanMultiplication.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains identifier renames (`limb_size` → `limbwidth`, `last_limb_size` → `last_limb_width`) throughout definition bodies and proof statements in a hand-written proof engineering file (`src/PushButtonSynthesis/DettmanMultiplication.v`), which constitutes a substantive API migration that affects definitions, ... |
fiat-crypto_7ccc5147_837df4dc | fiat-crypto | coq | 7ccc51475d35eff51501ef54e9767cffebeb3f55 | 990bf2c3fccc13b747647834f3c7b853fa1da09d | Added Dettman CLI things. Changed implementation of value_at_weight function in Core.v to make it reifiable. Added stuff in Makefile.examples to generate dettman mul functions - renamed already-existing secp256k1 generated files to clarify that they're montgomery implementations, as opposed to the dettman secp256k1 fun... | src/Arithmetic/Core.v | proof_add | (* Following http://adam.chlipala.net/theses/andreser.pdf chapter 3 *)
Require Import Coq.ZArith.ZArith Coq.micromega.Lia.
Require Import Coq.Structures.Orders.
Require Import Coq.Lists.List.
Require Import Crypto.Algebra.Nsatz.
Require Import Crypto.Arithmetic.ModularArithmeticTheorems.
Require Import Crypto.Util.Deci... | (* Following http://adam.chlipala.net/theses/andreser.pdf chapter 3 *)
Require Import Coq.ZArith.ZArith Coq.micromega.Lia.
Require Import Coq.Structures.Orders.
Require Import Coq.Lists.List.
Require Import Crypto.Algebra.Nsatz.
Require Import Crypto.Arithmetic.ModularArithmeticTheorems.
Require Import Crypto.Util.Deci... | [] | diff --git a/src/Arithmetic/Core.v b/src/Arithmetic/Core.v
index 46fc5829b..79d03f439 100644
--- a/src/Arithmetic/Core.v
+++ b/src/Arithmetic/Core.v
@@ -528,23 +528,23 @@ Module Associational.
Qed.
Definition value_at_weight (a : list (Z * Z)) (d : Z) :=
- fold_right Z.add 0 (map snd (filter (fun p => fst p ... | Write or extend the proof(s) in src/Arithmetic/Core.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains substantive proof engineering changes: the `value_at_weight` definition is refactored from a filter-based implementation to a fold-based one (making it reifiable), and all dependent proofs are modified to match the new implementation, including changes to induction steps, case analysis (`destruct` st... |
fiat-crypto_7ccc5147_0ead7e9a | fiat-crypto | coq | 7ccc51475d35eff51501ef54e9767cffebeb3f55 | 990bf2c3fccc13b747647834f3c7b853fa1da09d | Added Dettman CLI things. Changed implementation of value_at_weight function in Core.v to make it reifiable. Added stuff in Makefile.examples to generate dettman mul functions - renamed already-existing secp256k1 generated files to clarify that they're montgomery implementations, as opposed to the dettman secp256k1 fun... | 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 778459df4..6ec4354f9 100644
--- a/src/Bedrock/Standalone/StandaloneHaskellMain.v
+++ b/src/Bedrock/Standalone/StandaloneHaskellMain.v
@@ -29,6 +29,11 @@ Module Bedrock2First.
:= main_gen ForExtracti... | Write or extend the proof(s) in src/Bedrock/Standalone/StandaloneHaskellMain.v. Complete any unfinished proofs or add missing proof content. | accept | claude-sonnet-4-6 | The diff adds new `Definition main` entries wiring the `DettmanMultiplication.PipelineMain` into the extraction pipeline, which are substantive new definitions (not merely imports or whitespace changes). |
fiat-crypto_7ccc5147_d8614b09 | fiat-crypto | coq | 7ccc51475d35eff51501ef54e9767cffebeb3f55 | 990bf2c3fccc13b747647834f3c7b853fa1da09d | Added Dettman CLI things. Changed implementation of value_at_weight function in Core.v to make it reifiable. Added stuff in Makefile.examples to generate dettman mul functions - renamed already-existing secp256k1 generated files to clarify that they're montgomery implementations, as opposed to the dettman secp256k1 fun... | 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 456bf504e..2c5584c95 100644
--- a/src/Bedrock/Standalone/StandaloneOCamlMain.v
+++ b/src/Bedrock/Standalone/StandaloneOCamlMain.v
@@ -32,6 +32,11 @@ Module Bedrock2First.
:= main_gen ForExtraction.Satur... | Write or extend the proof(s) in src/Bedrock/Standalone/StandaloneOCamlMain.v. Complete any unfinished proofs or add missing proof content. | accept | claude-sonnet-4-6 | This diff adds new `Module DettmanMultiplication` definitions with real `Definition main` bodies wiring up pipeline modules, which constitutes a substantive definition change in a hand-written file. |
fiat-crypto_7ccc5147_1f464140 | fiat-crypto | coq | 7ccc51475d35eff51501ef54e9767cffebeb3f55 | 990bf2c3fccc13b747647834f3c7b853fa1da09d | Added Dettman CLI things. Changed implementation of value_at_weight function in Core.v to make it reifiable. Added stuff in Makefile.examples to generate dettman mul functions - renamed already-existing secp256k1 generated files to clarify that they're montgomery implementations, as opposed to the dettman secp256k1 fun... | 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 99c15e6c2..250895c54 100644
--- a/src/CLI.v
+++ b/src/CLI.v
@@ -25,6 +25,7 @@ Require Crypto.PushButtonSynthesis.SaturatedSolinas.
Require Crypto.PushButtonSynthesis.UnsaturatedSolinas.
Require Crypto.PushButtonSynthesis.WordByWordMontgomery.
Require Crypto.PushButtonSynthesi... | 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 proof engineering content: new function definitions (`parse_n_nat`, `parse_nat_limbwidth`, `parse_input_magnitude`, new spec definitions, and a complete new module `DettmanMultiplication` with real pipeline infrastructure), not merely imports, whitespace, or comments. While the code is genera... |
fiat-crypto_7ccc5147_cb2dcc85 | fiat-crypto | coq | 7ccc51475d35eff51501ef54e9767cffebeb3f55 | 990bf2c3fccc13b747647834f3c7b853fa1da09d | Added Dettman CLI things. Changed implementation of value_at_weight function in Core.v to make it reifiable. Added stuff in Makefile.examples to generate dettman mul functions - renamed already-existing secp256k1 generated files to clarify that they're montgomery implementations, as opposed to the dettman secp256k1 fun... | src/COperationSpecifications.v | proof_add | (** * C Operation Specifications *)
(** The specifications for the various operations to be synthesized. *)
Require Import Coq.ZArith.ZArith Coq.micromega.Lia.
Require Import Coq.Lists.List.
Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Arithmetic.ModOps.
Require Import Crypto.Arithmetic.BaseConversion.
... | (** * C Operation Specifications *)
(** The specifications for the various operations to be synthesized. *)
Require Import Coq.ZArith.ZArith Coq.micromega.Lia.
Require Import Coq.Lists.List.
Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Arithmetic.ModOps.
Require Import Crypto.Arithmetic.BaseConversion.
... | [] | diff --git a/src/COperationSpecifications.v b/src/COperationSpecifications.v
index fb8223ef1..e20e03890 100644
--- a/src/COperationSpecifications.v
+++ b/src/COperationSpecifications.v
@@ -494,6 +494,27 @@ Module SaturatedSolinas.
End __.
End SaturatedSolinas.
+Module DettmanMultiplication.
+ Section __.
+ Co... | Write or extend the proof(s) in src/COperationSpecifications.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds a new substantive module `DettmanMultiplication` with a definition `mul_correct` that specifies a multiplication correctness property (a signature and specification, not a proof body), which is real proof-engineering content that belongs in an evaluation dataset. |
fiat-crypto_7ccc5147_bcdf6f2f | fiat-crypto | coq | 7ccc51475d35eff51501ef54e9767cffebeb3f55 | 990bf2c3fccc13b747647834f3c7b853fa1da09d | Added Dettman CLI things. Changed implementation of value_at_weight function in Core.v to make it reifiable. Added stuff in Makefile.examples to generate dettman mul functions - renamed already-existing secp256k1 generated files to clarify that they're montgomery implementations, as opposed to the dettman secp256k1 fun... | src/PushButtonSynthesis/DettmanMultiplication.v | proof_add | (** * Push-Button Synthesis of Dettman Multiplication *)
Require Import Coq.Strings.String.
Require Import Coq.micromega.Lia.
Require Import Coq.ZArith.ZArith.
Require Import Coq.MSets.MSetPositive.
Require Import Coq.Lists.List.
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.derive.Derive.... | [] | diff --git a/src/PushButtonSynthesis/DettmanMultiplication.v b/src/PushButtonSynthesis/DettmanMultiplication.v
new file mode 100644
index 000000000..f961ba201
--- /dev/null
+++ b/src/PushButtonSynthesis/DettmanMultiplication.v
@@ -0,0 +1,226 @@
+(** * Push-Button Synthesis of Dettman Multiplication *)
+Require Import C... | Write the proof content for the declarations in src/PushButtonSynthesis/DettmanMultiplication.v. | accept | claude-haiku-4-5 | This is a new file with substantive proof engineering content: real definitions (mul, smul, etc.), lemmas (use_curve_good with actual proof tactics like lia, autorewrite), and proof-body work; it's not merely generated boilerplate—it contains hand-written pipeline specifications and correctness lemmas for Dettman multi... | |
fiat-crypto_7ccc5147_a529c687 | fiat-crypto | coq | 7ccc51475d35eff51501ef54e9767cffebeb3f55 | 990bf2c3fccc13b747647834f3c7b853fa1da09d | Added Dettman CLI things. Changed implementation of value_at_weight function in Core.v to make it reifiable. Added stuff in Makefile.examples to generate dettman mul functions - renamed already-existing secp256k1 generated files to clarify that they're montgomery implementations, as opposed to the dettman secp256k1 fun... | src/PushButtonSynthesis/DettmanMultiplicationReificationCache.v | proof_add | (** * Push-Button Synthesis of Bitcoin Multiplication: Reification Cache *)
Require Import Coq.QArith.QArith_base Coq.QArith.Qround.
Require Import Coq.ZArith.ZArith.
Require Import Coq.derive.Derive.
Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Arithmetic.ModOps.
Require Import Crypto.PushButtonSynthes... | [] | diff --git a/src/PushButtonSynthesis/DettmanMultiplicationReificationCache.v b/src/PushButtonSynthesis/DettmanMultiplicationReificationCache.v
new file mode 100644
index 000000000..784d48f73
--- /dev/null
+++ b/src/PushButtonSynthesis/DettmanMultiplicationReificationCache.v
@@ -0,0 +1,25 @@
+(** * Push-Button Synthesis... | Write the proof content for the declarations in src/PushButtonSynthesis/DettmanMultiplicationReificationCache.v. | accept | claude-haiku-4-5 | This is a new file with substantive proof content—a `Derive` statement with a `Proof` block using `cache_reify ()` tactic, followed by hint declarations that are real proof-engineering artifacts (not pure display directives), making it a legitimate benchmark challenge for proof synthesis despite being generated/templat... | |
fiat-crypto_7ccc5147_001c44cd | fiat-crypto | coq | 7ccc51475d35eff51501ef54e9767cffebeb3f55 | 990bf2c3fccc13b747647834f3c7b853fa1da09d | Added Dettman CLI things. Changed implementation of value_at_weight function in Core.v to make it reifiable. Added stuff in Makefile.examples to generate dettman mul functions - renamed already-existing secp256k1 generated files to clarify that they're montgomery implementations, as opposed to the dettman secp256k1 fun... | 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 d5f2a6f30..b6e2923a9 100644
--- a/src/StandaloneHaskellMain.v
+++ b/src/StandaloneHaskellMain.v
@@ -130,6 +130,11 @@ Module SaturatedSolinas.
:= main_gen ForExtraction.SaturatedSolinas.PipelineMain.
End SaturatedSolinas.
+Module Dettma... | 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 adds a new module definition that wraps a pipeline main function, which is substantive boilerplate wiring for proof synthesis infrastructure; it's not a pure import statement, whitespace change, or display directive, but rather defines a real (if small) proof artifact that enables new functionality. |
fiat-crypto_7ccc5147_3e822c41 | fiat-crypto | coq | 7ccc51475d35eff51501ef54e9767cffebeb3f55 | 990bf2c3fccc13b747647834f3c7b853fa1da09d | Added Dettman CLI things. Changed implementation of value_at_weight function in Core.v to make it reifiable. Added stuff in Makefile.examples to generate dettman mul functions - renamed already-existing secp256k1 generated files to clarify that they're montgomery implementations, as opposed to the dettman secp256k1 fun... | src/StandaloneOCamlMain.v | proof_add | Require Export Coq.extraction.Extraction.
Require Export Coq.extraction.ExtrOcamlBasic.
Require Export Coq.extraction.ExtrOcamlString.
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.... | Require Export Coq.extraction.Extraction.
Require Export Coq.extraction.ExtrOcamlBasic.
Require Export Coq.extraction.ExtrOcamlString.
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.... | [] | diff --git a/src/StandaloneOCamlMain.v b/src/StandaloneOCamlMain.v
index 795af2a4c..d03dbab93 100644
--- a/src/StandaloneOCamlMain.v
+++ b/src/StandaloneOCamlMain.v
@@ -219,6 +219,11 @@ Module SaturatedSolinas.
:= main_gen ForExtraction.SaturatedSolinas.PipelineMain.
End SaturatedSolinas.
+Module DettmanMultipl... | Write or extend the proof(s) in src/StandaloneOCamlMain.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff adds a new module with a definition that wraps an existing extraction pipeline; while the module structure is boilerplate, the addition of a substantive new module (`DettmanMultiplication`) with a real `Definition` and proof obligation binding constitutes a non-trivial code addition to the file, making it a r... |
fiat-crypto_c4260017_52d406c6 | fiat-crypto | coq | c426001761830c52aed14b0b668b300926472c4a | 44e6dfdadbaa628ef95007af2f7faf17f0ebba6d | Fix remaining renamings | src/Bedrock/End2End/X25519/GarageDoor.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/GarageDoor.v b/src/Bedrock/End2End/X25519/GarageDoor.v
index 5e69c827b..44cda0662 100644
--- a/src/Bedrock/End2End/X25519/GarageDoor.v
+++ b/src/Bedrock/End2End/X25519/GarageDoor.v
@@ -924,21 +924,18 @@ Definition loop := func! { loopfn() } .
Definition memconst_pk := memconst g... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/GarageDoor.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff contains substantive identifier renames within proof-body contexts (replacing `quarter` with `ChaCha20.quarter` in the `funcs` definition and `chacha20_ok` lemma statement) and removes a temporary local definition, plus updates to display-directive comments reflecting changed assumptions—the core rename and de... |
fiat-crypto_8eb06b53_c95e6d27 | fiat-crypto | coq | 8eb06b537af5e754be738c68bed64788e65bd73e | 59ff2f1e6efbaeb1580a70db62b5b1afb9d07478 | Prove all remaining lemmas (excepting Qed termination for one) | src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.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.Lib.Loops.
(*TODO: move this file to Rupicola.Lib*)
Require Import Crypto.Bedrock.End2End.RupicolaCrypto.Broadcast.
Require Crypto.Bedrock.End2En... | (* 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.Lib.Loops.
(*TODO: move this file to Rupicola.Lib*)
Require Import Crypto.Bedrock.End2End.RupicolaCrypto.Broadcast.
Require Crypto.Bedrock.End2En... | [] | diff --git a/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
index d404dc3fe..b651faeef 100644
--- a/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
+++ b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
@@ -912,6 +912,89 @@ Proof.
apply IHvars in H.
ea... | Write or extend the proof(s) in src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff contains substantive proof-body tactic changes: five lemmas are newly defined with real proof content (map_remove_remove_same, map_remove_remove_comm, map_remove_remove_many_in, map_put_remove_many_in, map_put_remove_many_notin, map_remove_remove_many_notin), and an existing proof with `admit` statements is re... |
fiat-crypto_59ff2f1e_2b2929ec | fiat-crypto | coq | 59ff2f1e6efbaeb1580a70db62b5b1afb9d07478 | a9fcea88b4c2cd4af165d17e2eb347849eb48b34 | Prove spec relation except for Qed termination | src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.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.Lib.Loops.
(*TODO: move this file to Rupicola.Lib*)
Require Import Crypto.Bedrock.End2End.RupicolaCrypto.Broadcast.
Require Crypto.Bedrock.End2En... | (* 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.Lib.Loops.
(*TODO: move this file to Rupicola.Lib*)
Require Import Crypto.Bedrock.End2End.RupicolaCrypto.Broadcast.
Require Crypto.Bedrock.End2En... | [] | diff --git a/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
index 7fcef4aba..d404dc3fe 100644
--- a/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
+++ b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
@@ -518,11 +518,120 @@ End Derive.
Existing Inst... | Write or extend the proof(s) in src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff substantially extends proof bodies with new lemmas and tactic arguments to complete the `chacha20_block_ok` proof (previously `Admitted`), including helper lemmas (`nat_iter_rel`, `nat_iter_pred`, `quarterround_ok`, etc.) and strategy declarations for elaboration shaping — all core proof engineering content, ... |
fiat-crypto_a9fcea88_71d972de | fiat-crypto | coq | a9fcea88b4c2cd4af165d17e2eb347849eb48b34 | f00a64b601b105634e13f1565a2f7c58de2bf454 | Adapt garagedoor to use Rupicola chacha | src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.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.Lib.Loops.
(*TODO: move this file to Rupicola.Lib*)
Require Import Crypto.Bedrock.End2End.RupicolaCrypto.Broadcast.
Require Import Crypto.Bedrock... | (* 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.Lib.Loops.
(*TODO: move this file to Rupicola.Lib*)
Require Import Crypto.Bedrock.End2End.RupicolaCrypto.Broadcast.
Require Crypto.Bedrock.End2En... | [] | diff --git a/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
index f7b881c97..7fcef4aba 100644
--- a/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
+++ b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
@@ -4,7 +4,8 @@ Require Import Rupicola.Lib.Api.
Requi... | Write or extend the proof(s) in src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains substantial proof-engineering changes: identifier renames (`quarter` → `quarter_gallina`), new `Import` statements for lemmas, proof-tactic modifications (`compile_setup`, `compile_step`), and updates to `Derive` commands and their implementations—these are all real proof content changes that affect ... |
fiat-crypto_a9fcea88_99f24247 | fiat-crypto | coq | a9fcea88b4c2cd4af165d17e2eb347849eb48b34 | f00a64b601b105634e13f1565a2f7c58de2bf454 | Adapt garagedoor to use Rupicola chacha | src/Bedrock/End2End/X25519/GarageDoor.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/GarageDoor.v b/src/Bedrock/End2End/X25519/GarageDoor.v
index e6b3ef855..7080bd90a 100644
--- a/src/Bedrock/End2End/X25519/GarageDoor.v
+++ b/src/Bedrock/End2End/X25519/GarageDoor.v
@@ -19,12 +19,23 @@ Require Import Crypto.Bedrock.End2End.X25519.Field25519.
Require Import Crypto... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/GarageDoor.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This is substantive proof engineering: the diff includes real definition/statement/body changes (removing old chacha20 spec, adding new ChaChaWrapped instance, changing function references, completing the previously-`Admitted` `chacha20_ok` proof with actual tactic content), alongside proof-body modifications and API m... |
fiat-crypto_f00a64b6_207cb8a0 | fiat-crypto | coq | f00a64b601b105634e13f1565a2f7c58de2bf454 | 56d5579ec36c309e10f089ffef5b88ef5efe4091 | Remove some Requires that break GarageDoor, including changing the semantics used | src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.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.Lib.Loops.
(*TODO: move this file to Rupicola.Lib*)
Require Import Crypto.Bedrock.End2End.RupicolaCrypto.Broadcast.
Require Import Crypto.Bedrock... | [] | diff --git a/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
index 02feb139c..f7b881c97 100644
--- a/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
+++ b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
@@ -1,23 +1,29 @@
(* Rewritten versions of poly1305 an... | Write or extend the proof(s) in src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains substantive proof changes: it removes imports that broke compilation, adds new `Notation`s and type-level definitions for the word/semantics infrastructure, defines new lemmas (`quarter_ok`, `quarter_ok0`, `quarter_in_bounds`) with real proofs, changes type annotations in lemma statements (e.g., `com... |
fiat-crypto_f00a64b6_b969d80b | fiat-crypto | coq | f00a64b601b105634e13f1565a2f7c58de2bf454 | 56d5579ec36c309e10f089ffef5b88ef5efe4091 | Remove some Requires that break GarageDoor, including changing the semantics used | src/Bedrock/End2End/X25519/GarageDoor.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/GarageDoor.v b/src/Bedrock/End2End/X25519/GarageDoor.v
index 15a8e7420..e6b3ef855 100644
--- a/src/Bedrock/End2End/X25519/GarageDoor.v
+++ b/src/Bedrock/End2End/X25519/GarageDoor.v
@@ -19,15 +19,12 @@ Require Import Crypto.Bedrock.End2End.X25519.Field25519.
Require Import Crypto... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/GarageDoor.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains substantive proof/specification engineering changes: the `spec_of_chacha20` specification is uncommented and modified with a new `counter` parameter, the function signature in `loopfn` is updated to pass a `$0` argument, the spec's ensures clause changes from `RupicolaCrypto.Spec.chacha20_block` to `... |
fiat-crypto_56d5579e_4783c827 | fiat-crypto | coq | 56d5579ec36c309e10f089ffef5b88ef5efe4091 | 38e980042df6390c73059d2b256ad3830d42355c | Start integrating rupicola chacha into garagedoor | src/Bedrock/End2End/X25519/GarageDoor.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/GarageDoor.v b/src/Bedrock/End2End/X25519/GarageDoor.v
index e6b3ef855..15a8e7420 100644
--- a/src/Bedrock/End2End/X25519/GarageDoor.v
+++ b/src/Bedrock/End2End/X25519/GarageDoor.v
@@ -19,12 +19,15 @@ Require Import Crypto.Bedrock.End2End.X25519.Field25519.
Require Import Crypto... | Write or extend the proof(s) in src/Bedrock/End2End/X25519/GarageDoor.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains substantive proof engineering changes: modifications to function signatures (removing a parameter from `chacha20_block`), commenting out a spec definition and its proof, importing a new wrapped ChaCha module with instance declarations, and updating function lists and references; while some portions a... |
fiat-crypto_101b3fb4_d4cfbdfb | fiat-crypto | coq | 101b3fb4429bc4d5da79c81c6c78eaf544549b42 | d53d467738848abe9227d9da7b8ef0a2a9007dd4 | Remove memcpy from dependencies, begin spec relation | src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.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/ChaChaWrapped.v b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
index 6bb4f416c..d5617f6e6 100644
--- a/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
+++ b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
@@ -375,10 +375,6 @@ Notation "'let/n' ( x0 , y0 , z0 ,... | Write or extend the proof(s) in src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains substantive proof-body changes: completing previously-admitted proofs (`unroll_len`, `truncate_word_word`), filling in an `admit` with real tactic code, removing a dependency (`unsizedlist_memcpy`), adding a new lemma (`chacha20_block_ok`), updating hypothesis references (H6→H5, H9→H8), and modifying... |
fiat-crypto_d53d4677_bc5b90a3 | fiat-crypto | coq | d53d467738848abe9227d9da7b8ef0a2a9007dd4 | 3dca8e4a463021c1fbdcdafd36e5ebeb62621097 | Progress on chacha derivation. | src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.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/ChaChaWrapped.v b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
index 0259d28f1..6bb4f416c 100644
--- a/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
+++ b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
@@ -164,11 +164,12 @@ Proof.
eauto using dexpr_loc... | Write or extend the proof(s) in src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | The diff makes substantive changes to proof tactics and lemma statements—rewrites inductive predicates (`locals_array_expr` changes from `mem` to `P : mem -> Prop`), modifies proof bodies with new `intro`/`intros` and `subst` calls, restructures conditional logic in `locals_array_expr_app`, and generalizes lemmas like ... |
fiat-crypto_3dca8e4a_8079467d | fiat-crypto | coq | 3dca8e4a463021c1fbdcdafd36e5ebeb62621097 | 4011f690deb1498006a52a88a85f33d0c4b83e0a | Inductive variant of locals array predicate | src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.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/ChaChaWrapped.v b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
index cc4fe76cb..0259d28f1 100644
--- a/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
+++ b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
@@ -164,27 +164,22 @@ Proof.
eauto using dexpr_loc... | Write or extend the proof(s) in src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff makes substantive proof engineering changes: it converts `locals_array_expr` from a `Fixpoint` to an `Inductive` definition (signature/definition change), rewrites the proof of `locals_array_expr_length` to use induction over the inductive structure, adds new lemmas (`dexpr_locals_put_removed`, `map_remove_co... |
fiat-crypto_4011f690_19fdeb34 | fiat-crypto | coq | 4011f690deb1498006a52a88a85f33d0c4b83e0a | 7c6a8fbeda1dfbe21607ff34018ce2bacb7d3545 | Initial draft of dedicated predicate for locals arrays | src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.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/ChaChaWrapped.v b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
index a72299255..cc4fe76cb 100644
--- a/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
+++ b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
@@ -164,15 +164,46 @@ Proof.
eauto using dexpr_loc... | Write or extend the proof(s) in src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains substantive proof engineering work—new definitions (`locals_array_expr`, lemmas `locals_array_expr_length`, `locals_array_expr_app_helper`, `locals_array_expr_app`), significant modifications to proof bodies in `compile_set_locals_array` (changed hypotheses, rewrote tactic sequences), and partially-d... |
fiat-crypto_7c6a8fbe_0d1fd45d | fiat-crypto | coq | 7c6a8fbeda1dfbe21607ff34018ce2bacb7d3545 | b1ed3850a1e70b34bd6a3226b6dbee8bd5182571 | Additional progress on filling chacha admits | src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.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/ChaChaWrapped.v b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
index 1cad8af67..a72299255 100644
--- a/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
+++ b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
@@ -398,8 +398,13 @@ Proof.
{ pose proof (word.unsig... | Write or extend the proof(s) in src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains substantive proof-body tactic changes, including completing formerly-admitted proofs (changing `admit` to real tactics and `Admitted` to `Qed`), adding new lemma definitions with full proofs, and filling in previously-stubbed proof obligations with concrete tactics—all of which are clearly proof engi... |
fiat-crypto_b1ed3850_2dfaa37b | fiat-crypto | coq | b1ed3850a1e70b34bd6a3226b6dbee8bd5182571 | 7aa435e7a6d875f3a6b21f9648f3a44ed8c8f2bc | Clear more admits, fix offsets/counting. | src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.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/ChaChaWrapped.v b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
index 0b0de68a1..1cad8af67 100644
--- a/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
+++ b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
@@ -371,20 +371,141 @@ Existing Instance word_ac_ok.
... | Write or extend the proof(s) in src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains substantive proof engineering: it fixes a critical bug in `load_offset` (multiplying offset by 4), completes previously-admitted lemmas (`truncate_word_word`, `expr_load_word_of_array_helper`, `expr_load_word_of_array`, `expr_load_word_of_byte_array`) with real proof tactics, moves `unroll` and `unro... |
fiat-crypto_7aa435e7_9ac9e228 | fiat-crypto | coq | 7aa435e7a6d875f3a6b21f9648f3a44ed8c8f2bc | 542deee7180c9e310283236f8977eebea35ce198 | Clear more admits, fix array-in-locals theorems | src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.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/ChaChaWrapped.v b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
index 5754a7bf7..0b0de68a1 100644
--- a/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
+++ b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
@@ -91,6 +91,18 @@ Fixpoint array_locs (vars : list str... | Write or extend the proof(s) in src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff substantively modifies proof bodies (completing `Admitted` proofs with real tactics), adds new lemmas with full proofs (`sub_nz_implies_lt`, `array_dexpr_locals_put`, `Forall2_distr_forall`, `forall_distr_Forall2`), changes function signatures and definitions (e.g., `store_offset`, `expr_load_word_of_byte_arr... |
fiat-crypto_542deee7_e8dd04b4 | fiat-crypto | coq | 542deee7180c9e310283236f8977eebea35ce198 | 1f4d31b054002d7d58b72389ebc288117ac9c768 | Get first draft through. Code is mostly right, but loads key instead of nonce. A number of admits | src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.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/ChaChaWrapped.v b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
index fc5674d8a..5754a7bf7 100644
--- a/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
+++ b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
@@ -282,13 +282,10 @@ Notation "'let/n' ( x0 , y0 , z0 ... | Write or extend the proof(s) in src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains substantial proof engineering work: new lemmas (`compile_store_locals_array'`, `compile_store_locals_array`, `array_expr_compile_word_add`), Ltac tactics (`eval_map_get`, `dedup`), definitional changes (`store_offset`, `store_to_array`), and significant proof-body rewrites in the main derivation, des... |
fiat-crypto_1f4d31b0_4107500f | fiat-crypto | coq | 1f4d31b054002d7d58b72389ebc288117ac9c768 | 4a8e11e1162bdca1d5055f9da2dd6cf5bc5f367d | Investigate generating better low-level code by bringing derivation closer to the spec | src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.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... | [] | diff --git a/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
new file mode 100644
index 000000000..fc5674d8a
--- /dev/null
+++ b/src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v
@@ -0,0 +1,845 @@
+(* Rewritten versions of poly1305 and chacha20 that you can compi... | Write the proof content for the declarations in src/Bedrock/End2End/RupicolaCrypto/ChaChaWrapped.v. | accept | claude-haiku-4-5 | This is a newly added file with substantial proof engineering content including lemmas, definitions, tactics-driven proofs (with some `Admitted`), Bedrock2 specifications, and integration with cryptographic primitives—genuine proof engineering work that belongs in a benchmark dataset, despite containing `Admitted` plac... | |
fiat-crypto_671cf289_5605dd0c | fiat-crypto | coq | 671cf2894c3d72a145d4cc9193f8108b61a8d402 | 39e1afa3f079204e59de280b679005592b148943 | Compatibility with coq/coq#16756 (#1541) | 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 632eb97fe..eda65c911 100644
--- a/src/Bedrock/End2End/RupicolaCrypto/Broadcast.v
+++ b/src/Bedrock/End2End/RupicolaCrypto/Broadcast.v
@@ -340,7 +340,7 @@ Section with_parameters.
: map f (upd l i a) =... | 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 | This is a minor proof-body tactic change (renaming an unnamed `intros` introduction to a named one `intros i0`) that maintains semantic equivalence but improves clarity and compatibility with Coq's evolution; it qualifies as a substantive proof-body edit despite being small. |
fiat-crypto_4a8e11e1_ca85d64e | fiat-crypto | coq | 4a8e11e1162bdca1d5055f9da2dd6cf5bc5f367d | 98aa0df19b55a867b84c2c41c267a9dfc561b282 | Get Qed to go through for chacha20 derivation | src/Bedrock/End2End/RupicolaCrypto/Derive.v | proof_add | Require Import Rupicola.Lib.Api.
Require Import Rupicola.Lib.Arrays.
Require Import Rupicola.Lib.Loops.
Require Import Rupicola.Lib.Gensym.
Require Import coqutil.Word.LittleEndianList.
Require Import Crypto.Bedrock.End2End.RupicolaCrypto.Low.
Require Import bedrock2.BasicC32Semantics.
Require Import Crypto.Bedrock.End... | Require Import Rupicola.Lib.Api.
Require Import Rupicola.Lib.Arrays.
Require Import Rupicola.Lib.Loops.
Require Import Rupicola.Lib.Gensym.
Require Import coqutil.Word.LittleEndianList.
Require Import Crypto.Bedrock.End2End.RupicolaCrypto.Low.
Require Import bedrock2.BasicC32Semantics.
Require Import Crypto.Bedrock.End... | [] | diff --git a/src/Bedrock/End2End/RupicolaCrypto/Derive.v b/src/Bedrock/End2End/RupicolaCrypto/Derive.v
index 58e94a1d2..14ba9cb37 100644
--- a/src/Bedrock/End2End/RupicolaCrypto/Derive.v
+++ b/src/Bedrock/End2End/RupicolaCrypto/Derive.v
@@ -25,8 +25,8 @@ Section Bedrock2.
Proof.
compile.
Qed.
-
- Lemma comp... | Write or extend the proof(s) in src/Bedrock/End2End/RupicolaCrypto/Derive.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff makes substantive changes to proof tactics and strategy: it removes the `Abort` statement and completes the proof with `Qed`, introduces new custom Ltac tactics (`dedup` and `eval_map_get`), reorganizes tactical sequences (moving `dedup` out of the proof body to the top level, refactoring proof steps with `ev... |
fiat-crypto_d5eb3cd1_b4a750ff | fiat-crypto | coq | d5eb3cd1325c031363e94aa40fb8a6535015f93e | a27a0a52a97e899666a04bbefc7c6970b9e57388 | Small changes suggested by Andres | src/Arithmetic/Core.v | proof_add | (* Following http://adam.chlipala.net/theses/andreser.pdf chapter 3 *)
Require Import Coq.ZArith.ZArith Coq.micromega.Lia.
Require Import Coq.Structures.Orders.
Require Import Coq.Lists.List.
Require Import Crypto.Algebra.Nsatz.
Require Import Crypto.Arithmetic.ModularArithmeticTheorems.
Require Import Crypto.Util.Deci... | (* Following http://adam.chlipala.net/theses/andreser.pdf chapter 3 *)
Require Import Coq.ZArith.ZArith Coq.micromega.Lia.
Require Import Coq.Structures.Orders.
Require Import Coq.Lists.List.
Require Import Crypto.Algebra.Nsatz.
Require Import Crypto.Arithmetic.ModularArithmeticTheorems.
Require Import Crypto.Util.Deci... | [] | diff --git a/src/Arithmetic/Core.v b/src/Arithmetic/Core.v
index c52051c1c..46fc5829b 100644
--- a/src/Arithmetic/Core.v
+++ b/src/Arithmetic/Core.v
@@ -7,6 +7,7 @@ Require Import Crypto.Arithmetic.ModularArithmeticTheorems.
Require Import Crypto.Util.Decidable.
Require Import Crypto.Util.LetIn.
Require Import Crypt... | Write or extend the proof(s) in src/Arithmetic/Core.v. Complete any unfinished proofs or add missing proof content. | accept | claude-haiku-4-5 | This diff contains multiple substantive proof-body changes (tactic rewrites with `cbv`, `simpl`, `destruct`, `lia`), definition refactorings (e.g., `value_at_weight` logic rewrite, `dedup_weights` using `nodupb` instead of `just_once`), lemma statement/name changes (e.g., `map_eq` → `funs_same`, `Theorem eval_dedup_wei... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.