Cycles of a list #
Lists have an equivalence relation of whether they are rotational permutations of one another.
This relation is defined as IsRotated.
Based on this, we define the quotient of lists by the rotation relation, called Cycle.
We also define a representation of concrete cycles, available when viewing them in a goal state or
via #eval, when over representable types. For example, the cycle (2 1 4 3) will be shown
as c[2, 1, 4, 3]. Two equal cycles may be printed differently if their internal representation
is different.
Return the z such that x :: z :: _ appears in xs, or default if there is no such z.
Instances For
nextOr does not depend on the default value, if the next value appears.
Alias of List.nextOr_eq_nextOr_of_mem_dropLast.
nextOr does not depend on the default value, if the next value appears.
Given an element x : α of l : List α such that x ∈ l, get the next
element of l. This works from head to tail, (including a check for last element)
so it will match on first hit, ignoring later duplicates.
For example:
next [1, 2, 3] 2 _ = 3next [1, 2, 3] 3 _ = 1next [1, 2, 3, 2, 4] 2 _ = 3next [1, 2, 3, 2] 2 _ = 3next [1, 1, 2, 3, 2] 1 _ = 1
Instances For
Given an element x : α of l : List α such that x ∈ l, get the previous
element of l. This works from head to tail, (including a check for last element)
so it will match on first hit, ignoring later duplicates.
prev [1, 2, 3] 2 _ = 1prev [1, 2, 3] 1 _ = 3prev [1, 2, 3, 2, 4] 2 _ = 1prev [1, 2, 3, 4, 2] 2 _ = 1prev [1, 1, 2] 1 _ = 2
Instances For
Alias of List.next_cons_eq_next_of_mem_dropLast.
The coercion from List α to Cycle α
Instances For
For consistency with EmptyCollection (List α).
Reverse a s : Cycle α by reversing the underlying List.
Instances For
The length of the s : Cycle α, which is the number of elements, counting duplicates.
Instances For
A s : Cycle α that is at most one element.
Instances For
A s : Cycle α that is made up of at least two unique elements.
Instances For
The s : Cycle α contains no duplicates.
Instances For
The Multiset of lists that can make the cycle.
Instances For
Auxiliary decidability algorithm for lists that contain at least two unique elements.
Instances For
We define a representation of concrete cycles, available when viewing them in a goal state or
via #eval, when over representable types. For example, the cycle (2 1 4 3) will be shown
as c[2, 1, 4, 3]. Two equal cycles may be printed differently if their internal representation
is different.
chain R s means that R holds between adjacent elements of s.
chain R ([a, b, c] : Cycle α) ↔ R a b ∧ R b c ∧ R c a
Instances For
As a function from a relation to a predicate, chain is monotonic.