Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MRIBuilder.jl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Michiel Cottaar
MRIBuilder.jl
Commits
3da859df
Verified
Commit
3da859df
authored
1 year ago
by
Michiel Cottaar
Browse files
Options
Downloads
Patches
Plain Diff
Support both SequenceBuilder and Sequence
parent
5bd67c0c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/sequence_builders.jl
+8
-8
8 additions, 8 deletions
src/sequence_builders.jl
with
8 additions
and
8 deletions
src/sequence_builders.jl
+
8
−
8
View file @
3da859df
...
@@ -93,7 +93,7 @@ TR(sb::SequenceBuilder) = sb.TR
...
@@ -93,7 +93,7 @@ TR(sb::SequenceBuilder) = sb.TR
Returns the index of the [`BuildingBlock`](@ref) in the parent [`SequenceBuilder`](@ref).
Returns the index of the [`BuildingBlock`](@ref) in the parent [`SequenceBuilder`](@ref).
"""
"""
index
(
sb
::
Sequence
Builder
,
bb
::
BuildingBlock
)
=
findfirst
(
isequal
(
bb
),
sb
.
blocks
)
index
(
sb
::
Abstract
Sequence
,
bb
::
BuildingBlock
)
=
findfirst
(
isequal
(
bb
),
get_
blocks
(
sb
)
)
index
(
bb
::
BuildingBlock
)
=
index
(
builder
(
bb
),
bb
)
index
(
bb
::
BuildingBlock
)
=
index
(
builder
(
bb
),
bb
)
...
@@ -114,7 +114,7 @@ function duration(bb1::BuildingBlock, bb2::BuildingBlock)
...
@@ -114,7 +114,7 @@ function duration(bb1::BuildingBlock, bb2::BuildingBlock)
return
duration
(
sb
,
index
(
sb
,
bb1
),
index
(
sb
,
bb2
))
return
duration
(
sb
,
index
(
sb
,
bb1
),
index
(
sb
,
bb2
))
end
end
function
duration
(
sb
::
Sequence
Builder
,
index1
::
Integer
,
index2
::
Integer
)
function
duration
(
sb
::
Abstract
Sequence
,
index1
::
Integer
,
index2
::
Integer
)
if
index2
==
index1
if
index2
==
index1
return
duration
(
sb
[
index1
])
return
duration
(
sb
[
index1
])
elseif
index2
==
index1
-
1
elseif
index2
==
index1
-
1
...
@@ -126,8 +126,8 @@ function duration(sb::SequenceBuilder, index1::Integer, index2::Integer)
...
@@ -126,8 +126,8 @@ function duration(sb::SequenceBuilder, index1::Integer, index2::Integer)
end
end
end
end
duration
(
sb
::
Sequence
Builder
)
=
duration
(
sb
,
1
,
length
(
sb
))
duration
(
sb
::
Abstract
Sequence
)
=
duration
(
sb
,
1
,
length
(
sb
))
duration
(
sb
::
Sequence
Builder
,
index
::
Integer
)
=
duration
(
sb
[
index
])
duration
(
sb
::
Abstract
Sequence
,
index
::
Integer
)
=
duration
(
sb
[
index
])
"""
"""
...
@@ -139,14 +139,14 @@ You can pass on the actual [`BuildingBlock`](@ref) object or the [`SequenceBuild
...
@@ -139,14 +139,14 @@ You can pass on the actual [`BuildingBlock`](@ref) object or the [`SequenceBuild
"""
"""
start_time
(
bb
::
BuildingBlock
)
=
start_time
(
builder
(
bb
),
bb
)
start_time
(
bb
::
BuildingBlock
)
=
start_time
(
builder
(
bb
),
bb
)
function
start_time
(
sb
::
Sequence
Builder
,
bb
::
BuildingBlock
)
function
start_time
(
sb
::
Abstract
Sequence
,
bb
::
BuildingBlock
)
if
builder
(
bb
)
!=
sb
if
builder
(
bb
)
!=
sb
error
(
"No start time of
$
bb within
$
sb, because this BuildingBlock is not part of that sequence."
)
error
(
"No start time of
$
bb within
$
sb, because this BuildingBlock is not part of that sequence."
)
end
end
return
start_time
(
sb
,
index
(
bb
))
return
start_time
(
sb
,
index
(
bb
))
end
end
start_time
(
sb
::
Sequence
Builder
,
index
::
Integer
)
=
index
==
1
?
0.
:
duration
(
sb
,
1
,
index
-
1
)
start_time
(
sb
::
Abstract
Sequence
,
index
::
Integer
)
=
index
==
1
?
0.
:
duration
(
sb
,
1
,
index
-
1
)
"""
"""
end_time(building_block::BuildingBlock)
end_time(building_block::BuildingBlock)
...
@@ -157,14 +157,14 @@ You can pass on the actual [`BuildingBlock`](@ref) object or the [`SequenceBuild
...
@@ -157,14 +157,14 @@ You can pass on the actual [`BuildingBlock`](@ref) object or the [`SequenceBuild
"""
"""
end_time
(
bb
::
BuildingBlock
)
=
end_time
(
builder
(
bb
),
bb
)
end_time
(
bb
::
BuildingBlock
)
=
end_time
(
builder
(
bb
),
bb
)
function
end_time
(
sb
::
Sequence
Builder
,
bb
::
BuildingBlock
)
function
end_time
(
sb
::
Abstract
Sequence
,
bb
::
BuildingBlock
)
if
builder
(
bb
)
!=
sb
if
builder
(
bb
)
!=
sb
error
(
"No end time of
$
bb within
$
sb, because this BuildingBlock is not part of that sequence."
)
error
(
"No end time of
$
bb within
$
sb, because this BuildingBlock is not part of that sequence."
)
end
end
return
end_time
(
sb
,
index
(
bb
))
return
end_time
(
sb
,
index
(
bb
))
end
end
end_time
(
sb
::
Sequence
Builder
,
index
::
Integer
)
=
duration
(
sb
,
1
,
index
)
end_time
(
sb
::
Abstract
Sequence
,
index
::
Integer
)
=
duration
(
sb
,
1
,
index
)
end
end
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment