Chris Richardson
Chris Richardson
The problem is that these functions are not generally supported in the C math library, also often not implemented in C++, either. We can add a call to something `besselK()`,...
https://www.gnu.org/software/libc/manual/html_node/Special-Functions.html Generally they only operate on real values, so I think that won't help. Probably the table for complex in ffcx is wrong, here.
We would appreciate this getting merged 😄 https://github.com/FEniCS/dolfinx/actions/runs/9538660819/job/26288133034
I can reproduce this bug. I think it stems from `compute_face_permutations` in `permutationcomputation.cpp` where there are separate computations for simplices and 'tp' elements. However, I don't think `prism` is being...
Yes, confirmed: using `auto f_to_v = topology.connectivity(2, 0);` is not enough for prism cells, now they contain two types of facet, we need to use `auto f0_to_v = topology.connectivity({2, 0},...