Description
Upon inspection of the below code, it was determined that the procedure to produce the wedge_pd_01
matrix incorporates a form of primal point to dual point interpolation, namely a bilinear interpolation with weights adjusted to favor the primal edge under consideration. This code could be hoisted out into a standalone function and generalized to produce primal to dual point interpolation in 2D.
This would, with the current d0_p0_interpolation
complete a roundtrip which could be analyzed for development of errors. An implementation of dual to primal point interpolation may also be pursued by using the same principles established in the primal to dual case.
CombinatorialSpaces.jl/src/FastDEC.jl
Lines 225 to 243 in de655b3