aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar jadep <jadep@mit.edu>2019-04-01 05:38:38 -0400
committerGravatar jadephilipoom <jade.philipoom@gmail.com>2019-04-03 23:34:53 +0100
commitc0fe35f49d61207d16c6db79936e38edf9661a49 (patch)
tree4d4bff49fade9138939f2bfd71eed9fcc50d764f /src
parent299206fc77217802c4431ccda1a7c0cb372f0b87 (diff)
rename some things
Diffstat (limited to 'src')
-rw-r--r--src/Fancy/Montgomery256.v3
-rw-r--r--src/PushButtonSynthesis/FancyMontgomeryReduction.v (renamed from src/PushButtonSynthesis/MontgomeryReduction.v)2
-rw-r--r--src/PushButtonSynthesis/FancyMontgomeryReductionReificationCache.v (renamed from src/PushButtonSynthesis/MontgomeryReductionReificationCache.v)5
3 files changed, 5 insertions, 5 deletions
diff --git a/src/Fancy/Montgomery256.v b/src/Fancy/Montgomery256.v
index 2c692fb30..ee761cba9 100644
--- a/src/Fancy/Montgomery256.v
+++ b/src/Fancy/Montgomery256.v
@@ -7,8 +7,7 @@ Require Import Crypto.Fancy.Prod.
Require Import Crypto.Fancy.Spec.
Require Import Crypto.Language. Import Language.Compilers.
Require Import Crypto.LanguageWf.
-Require Import Crypto.Arithmetic. (* For the MontgomeryReduction Module *)
-Require Import Crypto.PushButtonSynthesis.MontgomeryReduction.
+Require Import Crypto.PushButtonSynthesis.FancyMontgomeryReduction.
Require Import Crypto.Util.Tactics.BreakMatch.
Require Import Crypto.Util.ZUtil.EquivModulo.
Require Import Crypto.Util.ZUtil.Tactics.LtbToLt.
diff --git a/src/PushButtonSynthesis/MontgomeryReduction.v b/src/PushButtonSynthesis/FancyMontgomeryReduction.v
index d784ebc3c..2a64fdebd 100644
--- a/src/PushButtonSynthesis/MontgomeryReduction.v
+++ b/src/PushButtonSynthesis/FancyMontgomeryReduction.v
@@ -21,7 +21,7 @@ Require Import Crypto.COperationSpecifications.
Require Import Crypto.Fancy.Compiler.
Require Import Crypto.PushButtonSynthesis.ReificationCache.
Require Import Crypto.PushButtonSynthesis.Primitives.
-Require Import Crypto.PushButtonSynthesis.MontgomeryReductionReificationCache.
+Require Import Crypto.PushButtonSynthesis.FancyMontgomeryReductionReificationCache.
Require Import Crypto.PushButtonSynthesis.InvertHighLow.
Require Import Crypto.PushButtonSynthesis.LegacySynthesisTactics.
Import ListNotations.
diff --git a/src/PushButtonSynthesis/MontgomeryReductionReificationCache.v b/src/PushButtonSynthesis/FancyMontgomeryReductionReificationCache.v
index 80af335df..7a475a53a 100644
--- a/src/PushButtonSynthesis/MontgomeryReductionReificationCache.v
+++ b/src/PushButtonSynthesis/FancyMontgomeryReductionReificationCache.v
@@ -1,11 +1,12 @@
-(** * Push-Button Synthesis of Saturated Solinas: Reification Cache *)
+(** * Push-Button Snthesis of fancy mongomery reduction : Reification Cache *)
Require Import Coq.ZArith.ZArith.
Require Import Coq.derive.Derive.
+Require Import Crypto.Arithmetic.Core.
Require Import Crypto.Arithmetic.FancyMontgomeryReduction.
Require Import Crypto.PushButtonSynthesis.ReificationCache.
Local Open Scope Z_scope.
-Import Associational Positional Arithmetic.MontgomeryReduction.
+Import Associational Positional.
Local Set Keyed Unification. (* needed for making [autorewrite] fast, c.f. COQBUG(https://github.com/coq/coq/issues/9283) *)