aboutsummaryrefslogtreecommitdiff
path: root/src
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
parent0ed1016e3a072bc43461798863a6e811233e05fd (diff)
Fix proofs broken by changes to cc_m proofs
Diffstat (limited to 'src')
-rw-r--r--src/Experiments/NewPipeline/Toplevel2.v2
-rw-r--r--src/Experiments/SimplyTypedArithmetic.v2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Experiments/NewPipeline/Toplevel2.v b/src/Experiments/NewPipeline/Toplevel2.v
index ffb6b0215..63b833033 100644
--- a/src/Experiments/NewPipeline/Toplevel2.v
+++ b/src/Experiments/NewPipeline/Toplevel2.v
@@ -2663,7 +2663,7 @@ Module Barrett256.
step start_context.
{ 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 *
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 *