aboutsummaryrefslogtreecommitdiff
path: root/src/Specific/Framework
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2017-10-21 22:23:13 -0400
committerGravatar Jason Gross <jgross@mit.edu>2017-10-21 22:23:13 -0400
commit6c779ae1c2a2f4c798606ce3f7718768387f47a6 (patch)
tree4270acfebfb7510046e3ea5d37e5b1a5b385b0bc /src/Specific/Framework
parent448163de736124465de9962e33d3a61a3fe96617 (diff)
Unfold P.bound1 in fenz
This will lead to prettier printout
Diffstat (limited to 'src/Specific/Framework')
-rw-r--r--src/Specific/Framework/IntegrationTestTemporaryMiscCommon.v5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Specific/Framework/IntegrationTestTemporaryMiscCommon.v b/src/Specific/Framework/IntegrationTestTemporaryMiscCommon.v
index f08605358..dbfc38a7d 100644
--- a/src/Specific/Framework/IntegrationTestTemporaryMiscCommon.v
+++ b/src/Specific/Framework/IntegrationTestTemporaryMiscCommon.v
@@ -304,6 +304,11 @@ Ltac nonzero_preglue op_sig cbv_runtime :=
| (fun x => ?montgomery_to_F (?meval (?feBW_of_feBW_small _)))
=> cbv [feBW_of_feBW_small phi meval]
end in
+ lazymatch goal with
+ | [ |- @sig (?feBW_small -> BoundedWord 1 _ ?bound1) _ ]
+ => let b1 := (eval vm_compute in bound1) in
+ change bound1 with b1
+ end;
apply_lift_sig; intros; eexists_sig_etransitivity;
do_red ();
[ refine (_ : (if Decidable.dec (_ = 0) then true else false) = _);