Closed Da-Be-Ru closed 1 month ago
:warning: Please install the to ensure uploads and comments are reliably processed by Codecov.
Attention: Patch coverage is 42.85714%
with 4 lines
in your changes missing coverage. Please review.
Project coverage is 73.73%. Comparing base (
06a2f11
) to head (eee8d7d
). Report is 86 commits behind head on master.
Files with missing lines | Patch % | Lines |
---|---|---|
src/l2gtransformations.jl | 42.85% | 4 Missing :warning: |
:exclamation: Your organization needs to install the Codecov GitHub app to enable full functionality.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Completely reasonable IMHO, thanks! @chmerdon , we should merge and make a new patch version.
The local-to-global
eval_trafo!
functions currently operate on theVector
type.However, in trying to extend
VoronoiFVM.edgevelocities
to accomodate velocity fields provided byExtendableFEM.jl
, we need to make use of coordinate transformations on vectors previously declared asStaticArray
s which are not a subtype ofVector
.It makes sense to adjust the type of
x
then and I supposeAbstractArray
is a safe bet. All tests run through for me on this.