aboutsummaryrefslogtreecommitdiff
path: root/src/Experiments/SimplyTypedArithmetic.v
diff options
context:
space:
mode:
authorGravatar Jason Gross <jagro@google.com>2018-08-24 23:50:08 -0400
committerGravatar Jason Gross <jagro@google.com>2018-08-24 23:50:08 -0400
commit74096dcf2ec35f6562795c151297fcc5c1c2d1d8 (patch)
tree460c8162ebb979b75af6c6b6026f1bd52c0e7269 /src/Experiments/SimplyTypedArithmetic.v
parent0ed1016e3a072bc43461798863a6e811233e05fd (diff)
Fix proofs broken by changes to cc_m proofs
Diffstat (limited to 'src/Experiments/SimplyTypedArithmetic.v')
-rw-r--r--src/Experiments/SimplyTypedArithmetic.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Experiments/SimplyTypedArithmetic.v b/src/Experiments/SimplyTypedArithmetic.v
index c0c8dbdeb..abbf08a05 100644
--- a/src/Experiments/SimplyTypedArithmetic.v
+++ b/src/Experiments/SimplyTypedArithmetic.v
@@ -11536,7 +11536,7 @@ Module Barrett256.
{
match goal with H : Fancy.CC.cc_m _ = _ |- _ => rewrite H end.
match goal with |- context [Z.cc_m ?s ?x] =>
- pose proof (Z.cc_m_small s x ltac:(reflexivity) ltac:(reflexivity) ltac:(omega));
+ pose proof (Z.cc_m_small s x ltac:(reflexivity) ltac:(omega));
let H := fresh in
assert (Z.cc_m s x = 1 \/ Z.cc_m s x = 0) as H by omega;
destruct H as [H | H]; rewrite H in *