Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
JordiManyer committed Oct 7, 2024
1 parent c8aa8ad commit 543b258
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/MultilevelTools/GridTransferOperators.jl
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function DistributedGridTransferOperator(
return DistributedGridTransferOperator(op_type,redist,restriction_method,sh,cache)
end

function _get_interpolation_cache(lev::Int,sh::FESpaceHierarchy,qdegree::Int,mode::Symbol)
function _get_interpolation_cache(lev::Int,sh::FESpaceHierarchy,qdegree,mode::Symbol)
cparts = get_level_parts(sh,lev+1)

if i_am_in(cparts)
Expand All @@ -82,7 +82,7 @@ function _get_interpolation_cache(lev::Int,sh::FESpaceHierarchy,qdegree::Int,mod
return cache_refine
end

function _get_projection_cache(lev::Int,sh::FESpaceHierarchy,qdegree::Int,mode::Symbol,solver)
function _get_projection_cache(lev::Int,sh::FESpaceHierarchy,qdegree,mode::Symbol,solver)
cparts = get_level_parts(sh,lev+1)

if i_am_in(cparts)
Expand Down Expand Up @@ -126,7 +126,7 @@ function _get_projection_cache(lev::Int,sh::FESpaceHierarchy,qdegree::Int,mode::
return cache_refine
end

function _get_dual_projection_cache(lev::Int,sh::FESpaceHierarchy,qdegree::Int,solver)
function _get_dual_projection_cache(lev::Int,sh::FESpaceHierarchy,qdegree,solver)
cparts = get_level_parts(sh,lev+1)

if i_am_in(cparts)
Expand Down

0 comments on commit 543b258

Please sign in to comment.