File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -382,6 +382,20 @@ apply IHcnyP.
382382apply continuously_invar in cnyQ; assumption.
383383Qed .
384384
385+ Lemma continuously_inf_often :
386+ forall (P : infseq T -> Prop) (s : infseq T),
387+ continuously P s -> inf_often P s.
388+ Proof .
389+ intros P.
390+ cofix c.
391+ intros s cnyP.
392+ induction cnyP.
393+ apply always_inf_often. assumption.
394+ apply Always.
395+ apply E_next. destruct s as [s x']. apply always_now in IHcnyP. assumption.
396+ apply IHcnyP.
397+ Qed .
398+
385399(* monotony *)
386400
387401Lemma now_monotonic :
@@ -711,6 +725,7 @@ Arguments release_Cons [T x s J P] _.
711725Arguments inf_often_invar [T x s P] _.
712726Arguments continuously_invar [T x s P] _.
713727Arguments continuously_and_tl [T P Q s] _ _.
728+ Arguments continuously_inf_often [T P s] _.
714729
715730Arguments now_monotonic [T P Q] _ [s] _.
716731Arguments next_monotonic [T P Q] _ [s] _.
You can’t perform that action at this time.
0 commit comments