Skip to content

Commit 7cbb0d7

Browse files
* Updated NEWS with the proper PR number
* Removed the unneeded GridapDistributed. qualifier from some of the interpolate methods.
1 parent d5acb15 commit 7cbb0d7

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
- New overloads for the `TrialFESpace` constructor where the data to be imposed is passed as a `DistributedCellField`. Since PR[#185](https://github.com/gridap/GridapDistributed.jl/pull/185).
1313
- Added missing `FESpace` constructors for distributed triangulations specialized for the RT FEs case. Since PR[#188](https://github.com/gridap/GridapDistributed.jl/pull/188)
14-
- Added optional argument isconsistent to interpolate functions. Since PR[#XXX]((https://github.com/gridap/GridapDistributed.jl/pull/XXX).
14+
- Added optional argument isconsistent to interpolate functions. Since PR[#190]((https://github.com/gridap/GridapDistributed.jl/pull/190).
1515

1616
## [0.4.10] - 2025-09-29
1717

src/FESpaces.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -456,15 +456,15 @@ function generate_gids(
456456
generate_gids(cell_gids,cell_to_ldofs,nldofs)
457457
end
458458

459-
function FESpaces.interpolate(u,f::GridapDistributed.DistributedSingleFieldFESpace, isconsistent=false)
460-
free_values = GridapDistributed.zero_free_values(f)
459+
function FESpaces.interpolate(u,f::DistributedSingleFieldFESpace, isconsistent=false)
460+
free_values = zero_free_values(f)
461461
interpolate!(u,free_values,f,isconsistent)
462462
end
463463

464464
function FESpaces.interpolate!(
465465
u,
466466
free_values::AbstractVector,
467-
f::GridapDistributed.DistributedSingleFieldFESpace,
467+
f::DistributedSingleFieldFESpace,
468468
isconsistent=false)
469469
map(f.spaces,local_views(free_values)) do V,vec
470470
interpolate!(u,vec,V)
@@ -473,9 +473,9 @@ function FESpaces.interpolate!(
473473
end
474474

475475
function FESpaces.interpolate!(
476-
u::GridapDistributed.DistributedCellField,
476+
u::DistributedCellField,
477477
free_values::AbstractVector,
478-
f::GridapDistributed.DistributedSingleFieldFESpace,
478+
f::DistributedSingleFieldFESpace,
479479
isconsistent=false)
480480
map(local_views(u),f.spaces,local_views(free_values)) do u, V,vec
481481
interpolate!(u,vec,V)

0 commit comments

Comments
 (0)