Skip to content
Snippets Groups Projects
Verified Commit 8cf7be09 authored by Michiel Cottaar's avatar Michiel Cottaar
Browse files

Describe FixedSequence

parent b6aa918f
No related branches found
No related tags found
No related merge requests found
......@@ -67,6 +67,13 @@ variables(::Type{<:Sequence}) = [TR]
# print timings when printing sequences
Base.show(io::IO, seq::AbstractSequence) = print(io, BuildingBlockPrinter(seq, nothing, 0., 0))
"""
Represents a series of [`BuildingBlock`](@ref) run in sequence.
Each [`BuildingBlock`](@ref) is fixed, i.e, it does not contain any free parameters.
A fixed version of any [`Sequence`](@ref) can be created by calling [`fixed`](@ref) on that sequence.
"""
struct FixedSequence <: AbstractSequence
_blocks :: Vector{<:BuildingBlock}
TR :: Number
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment