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

Fix called function names

parent 8da3f8be
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ import LinearAlgebra: norm, tr ...@@ -3,7 +3,7 @@ import LinearAlgebra: norm, tr
import StaticArrays: SVector, SMatrix import StaticArrays: SVector, SMatrix
import ..BuildingBlocks: BuildingBlock, GradientBlock, RFPulseBlock, ContainerBlock, get_children_blocks import ..BuildingBlocks: BuildingBlock, GradientBlock, RFPulseBlock, ContainerBlock, get_children_blocks
import ..Containers: Sequence import ..Containers: Sequence
import ..Variables: qvec, qval, bmat_gradient, VariableType, start_time, effective_time import ..Variables: qvec, qval, bmat_gradient, VariableType, start_time, effective_time, duration
import ..Wait: WaitBlock import ..Wait: WaitBlock
import ..Readouts: InstantReadout import ..Readouts: InstantReadout
...@@ -429,7 +429,7 @@ function update_walker_gradient!(gradient::GradientBlock, walker::PathwayWalker, ...@@ -429,7 +429,7 @@ function update_walker_gradient!(gradient::GradientBlock, walker::PathwayWalker,
# update qvec/bmat during gradient # update qvec/bmat during gradient
tracker = walker.gradient_trackers[key] tracker = walker.gradient_trackers[key]
tracker.bmat = tracker.bmat .+ bmat(gradient, tracker.qvec) tracker.bmat = tracker.bmat .+ bmat_gradient(gradient, tracker.qvec)
tracker.qvec = tracker.qvec .+ qvec(gradient) tracker.qvec = tracker.qvec .+ qvec(gradient)
tracker.last_gradient_time = gradient_start_time + duration(gradient) tracker.last_gradient_time = gradient_start_time + duration(gradient)
end end
......
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