Possibly infinite lists #
This file provides a Seq α
type representing possibly infinite lists (referred here as sequences).
It is encoded as an infinite stream of options such that if f n = none
, then
f m = none
for all m ≥ n
.
The empty sequence
Equations
Instances For
Equations
- Stream'.Seq.instInhabited = { default := Stream'.Seq.nil }
Prepend an element to a sequence
Equations
- Stream'.Seq.cons a s = ⟨Stream'.cons (some a) ↑s, ⋯⟩
Instances For
Get the nth element of a sequence (if it exists)
Equations
Instances For
It is decidable whether a sequence terminates at a given position.
Equations
- s.terminatedAtDecidable n = decidable_of_iff' ((s.get? n).isNone = true) ⋯
A sequence terminates if there is some position n
at which it has terminated.
Equations
- s.Terminates = ∃ (n : ℕ), s.TerminatedAt n
Instances For
Equations
- Stream'.Seq.instMembership = { mem := Stream'.Seq.Mem }
If a sequence terminated at position n
, it also terminated at m ≥ n
.
Recursion principle for sequences, compare with List.recOn
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Corecursor for Seq α
as a coinductive type. Iterates f
to produce new elements
of the sequence until none
is obtained.
Equations
- Stream'.Seq.corec f b = ⟨Stream'.corec' (Stream'.Seq.Corec.f f) (some b), ⋯⟩
Instances For
a relation is bisimilar if it meets the BisimO
test
Equations
- Stream'.Seq.IsBisimulation R = ∀ ⦃s₁ s₂ : Stream'.Seq α⦄, R s₁ s₂ → Stream'.Seq.BisimO R s₁.destruct s₂.destruct
Instances For
Equations
- Stream'.Seq.coeList = { coe := Stream'.Seq.ofList }
Equations
- Stream'.Seq.coeStream = { coe := Stream'.Seq.ofStream }
Equations
- Stream'.Seq.coeMLList = { coe := Stream'.Seq.ofMLList }
Translate a sequence to a list. This function will run forever if run on an infinite sequence.
Equations
- s.forceToList = s.toMLList.force
Instances For
The sequence of natural numbers some 0, some 1, ...
Equations
Instances For
Map a function over a sequence.
Equations
- Stream'.Seq.map f ⟨s, al⟩ = ⟨Stream'.map (Option.map f) s, ⋯⟩
Instances For
Flatten a sequence of sequences. (It is required that the
sequences be nonempty to ensure productivity; in the case
of an infinite sequence of nil
, the first element is never
generated.)
Equations
- One or more equations did not get rendered due to their size.
Instances For
Split a sequence at n
, producing a finite initial segment
and an infinite tail.
Equations
Instances For
Combine two sequences with a function
Equations
- Stream'.Seq.zipWith f s₁ s₂ = ⟨fun (n : ℕ) => Option.map₂ f (s₁.get? n) (s₂.get? n), ⋯⟩
Instances For
Pair two sequences into a sequence of pairs
Equations
Instances For
The length of a terminating sequence.
Instances For
Convert a sequence which is known to terminate into a list
Equations
- s.toList h = Stream'.Seq.take (s.length h) s
Instances For
Convert a sequence into either a list or a stream depending on whether it is finite or infinite. (Without decidability of the infiniteness predicate, this is not constructively possible.)
Equations
- s.toListOrStream = if h : s.Terminates then Sum.inl (s.toList h) else Sum.inr (s.toStream h)
Instances For
The statement of length_le_iff'
does not assume that the sequence terminates. For a
simpler statement of the theorem where the sequence is known to terminate see length_le_iff
The statement of length_le_iff
assumes that the sequence terminates. For a
statement of the where the sequence is not known to terminate see length_le_iff'
The statement of lt_length_iff'
does not assume that the sequence terminates. For a
simpler statement of the theorem where the sequence is known to terminate see lt_length_iff
The statement of length_le_iff
assumes that the sequence terminates. For a
statement of the where the sequence is not known to terminate see length_le_iff'
Equations
- Stream'.Seq.instFunctor = { map := @Stream'.Seq.map, mapConst := fun {α β : Type ?u.8} => Stream'.Seq.map ∘ Function.const β }
Convert a sequence into a list, embedded in a computation to allow for the possibility of infinite sequences (in which case the computation never returns anything).
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Stream'.Seq1.coeSeq = { coe := Stream'.Seq1.toSeq }
Equations
- Stream'.Seq1.instInhabited = { default := Stream'.Seq1.ret default }