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

Fix variable name

parent 0f7ae60f
No related branches found
No related tags found
No related merge requests found
......@@ -350,9 +350,9 @@ end
function update_gradient_tracker_till_time!(gradient_tracker::GradientTracker, new_time::VariableType)
gradient_tracker.bmat += (
(gradient_tracker.qvec .* gradient_tracker.qvec') .*
(pulse_time - gradient_tracker.last_gradient_time)
(new_time - gradient_tracker.last_gradient_time)
)
gradient_tracker.last_gradient_time = pulse_time
gradient_tracker.last_gradient_time = new_time
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