Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/ADTRefinement/FixedPoint.v
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,9 @@ Definition cod_old_to_new {newRep oldRep fDom fCod}
Proof.
simpl; intros f.
induction fDom; simpl in *.
exact { o : newRep * fCod |
exact ({ o : newRep * fCod |
exists p,
computes_to f (p, snd o) /\ AbsR p (fst o)}.
computes_to f (p, snd o) /\ AbsR p (fst o)}).
intro x.
exact (IHfDom (f x)).
Defined.
Expand All @@ -259,9 +259,9 @@ Definition cod_new_to_old {newRep oldRep fDom fCod}
Proof.
simpl; intros f.
induction fDom; simpl in *.
exact { o : oldRep * fCod |
exact ({ o : oldRep * fCod |
forall r_n',
computes_to f (r_n', snd o) -> AbsR (fst o) r_n'}.
computes_to f (r_n', snd o) -> AbsR (fst o) r_n'}).
intro x.
exact (IHfDom (f x)).
Defined.
Expand Down
2 changes: 1 addition & 1 deletion src/Common/SetEq.v
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Lemma union_right :
SetEq (SetUnion seq1 (x::seq2)) (x :: (SetUnion seq1 seq2)).
Proof.
intros; unfold SetEq, SetUnion; intuition;
repeat (rewrite in_app_iff in *; simpl in *);
repeat (rewrite in_app_iff in *; simpl in * );
intuition.
Qed.

Expand Down
2 changes: 1 addition & 1 deletion src/Common/Tactics/CacheStringConstant.v
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Require Import
Create HintDb stringCache.

Ltac fold_string_hyps :=
(repeat foreach [ stringCache ] run (fun id => progress fold id in *)).
(repeat foreach [ stringCache ] run (fun id => progress fold id in * )).

Ltac fold_string_hyps_in H :=
repeat foreach [ stringCache ] run (fun id => progress fold id in H).
Expand Down
2 changes: 1 addition & 1 deletion src/Computation/Refinements/Iterate_Decide_Comp.v
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Section Iterate_Decide_Comp.
(if fin_eq_dec Ridx a then false else true) = true
<-> a <> Ridx)
as filter_dec'
by (intros; find_if_inside; try rewrite e; intuition; auto with *).
by (intros; find_if_inside; try rewrite e; intuition; auto with * ).
split; intros.
- eapply Iterate_Ensemble_equiv_filter'' with
(filter := fun idx => idx <> Ridx)
Expand Down
Loading