Skip to content

Commit e77fffe

Browse files
committed
removed debug printouts and updated changelog
1 parent 2017672 commit e77fffe

3 files changed

Lines changed: 2 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# CHANGES
22

3-
## v1.5.0 November 03, 2025
3+
## v1.5.0 November 21, 2025
44
- added type parameter to `PointEvaluator` so `lazy_interpolate!` is now accessible for automatic differentiation
55
- added new `compute_lazy_interpolation_jacobian` function for computing Jacobians of interpolations between finite element spaces
66
- added `H1Pk_to_HDIVRT0_interpolator` function for (faster) computation of interpolation matrix from `H1Pk`-conforming spaces into `HDIVRT0`-conforming spaces on the same grid
77
- fixed interpolation of `HCURLN1` finite element
8+
- updated `MomentInterpolator` to deliver incident cells to `QPInfos` to speed up `lazy_interpolate!`
89

910
## v1.4.0 July 17, 2025
1011
- added new weighted reconstruction operator `WeightedReconstruct` (so far only for H1BR{2})

src/interpolators.jl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ function NodalInterpolator(
112112
continue
113113
end
114114
cell = xNodeCells[1, j]
115-
#@show cell
116115
QP.item = cell
117116
QP.cell = cell
118117
QP.region = xCellRegions[cell]
@@ -187,8 +186,6 @@ function MomentInterpolator(
187186
kwargs...
188187
) where {Tv, Ti, FEType <: AbstractFiniteElement, APT}
189188

190-
#@info "MomentInterpolator $(AT)"
191-
192189
itemvolumes = xgrid[GridComponentVolumes4AssemblyType(AT)]
193190
itemnodes = xgrid[GridComponentNodes4AssemblyType(AT)]
194191
itemregions = xgrid[GridComponentRegions4AssemblyType(AT)]
@@ -418,7 +415,6 @@ function MomentInterpolator(
418415
eval_trafo!(QP.x, L2G, xref[qp])
419416

420417
QP.cell = itemcells[item]
421-
#@show QP.item QP.cell
422418

423419
exact_function!(result_f, QP)
424420
if (bestapprox)

src/lazy_interpolate.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,8 @@ function lazy_interpolate!(
8989

9090
if same_cells || use_cellparents
9191
xCellParents::Array{Ti, 1} = same_cells ? (1:num_cells(target.FES.xgrid)) : target.FES.xgrid[CellParents]
92-
#@show xCellParents
9392
function point_evaluation_parentgrid!(result, qpinfo)
9493
x = xtrafo !== nothing ? xtrafo(x_source, qpinfo.x) : qpinfo.x
95-
#@show qpinfo.x qpinfo.cell
9694
cell = gFindLocal!(xref, CF, x; icellstart = xCellParents[qpinfo.cell], eps = eps, trybrute = !only_localsearch)
9795
return evaluate_bary!(result, PE, xref, cell)
9896
end

0 commit comments

Comments
 (0)