Skip to content

Commit

Permalink
Forgot rename of type param
Browse files Browse the repository at this point in the history
  • Loading branch information
KnutAM committed Oct 13, 2023
1 parent d47ae33 commit b508556
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/FEValues/CellValues.jl
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ function default_geometric_interpolation(::Interpolation{shape}) where {dim, sha
return VectorizedInterpolation{dim}(Lagrange{shape, 1}())
end

struct CellValues{FV, GV, QR, detT<:AbstractVector} <: AbstractCellValues
struct CellValues{FV, GM, QR, detT<:AbstractVector} <: AbstractCellValues
fun_values::FV # FunctionValues
geo_mapping::GV # GeometryMapping
geo_mapping::GM # GeometryMapping
qr::QR # QuadratureRule
detJdV::detT # AbstractVector{<:Number}
end
Expand Down
4 changes: 2 additions & 2 deletions src/FEValues/FaceValues.jl
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ values of nodal functions, gradients and divergences of nodal functions etc. on
"""
FaceValues

struct FaceValues{FV, GV, QR, detT, nT, V_FV<:AbstractVector{FV}, V_GV<:AbstractVector{GV}} <: AbstractFaceValues
struct FaceValues{FV, GM, QR, detT, nT, V_FV<:AbstractVector{FV}, V_GM<:AbstractVector{GM}} <: AbstractFaceValues
fun_values::V_FV # AbstractVector{FunctionValues}
geo_mapping::V_GV # AbstractVector{GeometryMapping}
geo_mapping::V_GM # AbstractVector{GeometryMapping}
qr::QR # FaceQuadratureRule
detJdV::detT # AbstractVector{<:Number}
normals::nT # AbstractVector{<:Vec}
Expand Down

0 comments on commit b508556

Please sign in to comment.