Skip to content

Commit

Permalink
Fix wrong method call in getF
Browse files Browse the repository at this point in the history
  • Loading branch information
nHackel committed Jul 26, 2024
1 parent 3e4ae82 commit 60ca654
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/SystemMatrix/SystemMatrix.jl
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@ end
getSF(bSF, frequencies, sparseTrafo, solver::AbstractLinearSolver; kargs...) = getSF(bSF, frequencies, sparseTrafo, typeof(solver); kargs...)
function getSF(bSF, frequencies, sparseTrafo, solver::Type{<:AbstractLinearSolver}; arrayType = Array, kargs...)
SF, grid = getSF(bSF, frequencies, sparseTrafo; kargs...)
return prepareSF(solver, SF, grid, arrayType)
SF, grid = prepareSF(solver, SF, grid)
SF = adaptSF(arrayType, SF)
return SF, grid
end

function AbstractImageReconstruction.process(type::Type{<:AbstractMPIRecoAlgorithm}, params::Union{L, ProcessResultCache{L}}, sf::MPIFile, solverT, arrayType = Array) where L <: AbstractSystemMatrixLoadingParameter
Expand Down

0 comments on commit 60ca654

Please sign in to comment.