| 171 | } |
| 172 | |
| 173 | void ReorderedFESpace :: GetEdgeDofNrs (int ednr, Array<DofId> & dnums) const |
| 174 | { |
| 175 | space->GetEdgeDofNrs (ednr, dnums); |
| 176 | for (auto & d : dnums) |
| 177 | d = dofmap[d]; |
| 178 | } |
| 179 | |
| 180 | void ReorderedFESpace :: GetFaceDofNrs (int fanr, Array<DofId> & dnums) const |
| 181 | { |
nothing calls this directly
no test coverage detected