blob: 0b58fa270cd13910f79efe530e4a7eca43a8486e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Specific.montgomery32_2e256m88x2e240m1.Synthesis.
(* TODO : change this to field once field isomorphism happens *)
Definition add :
{ add : feBW_small -> feBW_small -> feBW_small
| forall a b, phiM_small (add a b) = F.add (phiM_small a) (phiM_small b) }.
Proof.
Set Ltac Profiling.
Time synthesize_add ().
Show Ltac Profile.
Time Defined.
Print Assumptions add.
|