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

Ensure edge_times are sorted

parent ad79bd25
No related branches found
No related tags found
No related merge requests found
...@@ -111,7 +111,7 @@ function edge_times(seq::BaseSequence; tol=1e-6) ...@@ -111,7 +111,7 @@ function edge_times(seq::BaseSequence; tol=1e-6)
push!(unique_res, edge) push!(unique_res, edge)
end end
end end
return unique_res return sort(unique_res)
end end
for fn in (:gradient_strength, :amplitude, :phase, :gradient_strength3) for fn in (:gradient_strength, :amplitude, :phase, :gradient_strength3)
......
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