We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f93df1f commit 43eb2a5Copy full SHA for 43eb2a5
1 file changed
src/finiteelements.jl
@@ -81,7 +81,7 @@ struct FESpace{Tv, Ti, FEType <: AbstractFiniteElement, AT <: AssemblyType}
81
end
82
83
function Base.copy(FES::FESpace{Tv, Ti, FEType, AT}) where {Tv, Ti, FEType, AT}
84
- return FESpace{Tv, Ti, FEType, AT}(deepcopy(FES.name), FES.broken, FES.ndofs, FES.coffset, FES.xgrid, FES.dofgrid, FES.dofmaps)
+ return FESpace{Tv, Ti, FEType, AT}(deepcopy(FES.name), FES.broken, FES.ndofs, FES.coffset, FES.xgrid, FES.dofgrid, FES.dofmaps, FES.interpolators)
85
86
87
"""
0 commit comments