| 2350 | } |
| 2351 | |
| 2352 | void MeshAccess::SetHigherIntegrationOrder(int elnr) |
| 2353 | { |
| 2354 | if(higher_integration_order.Size() != GetNE()) |
| 2355 | { |
| 2356 | higher_integration_order.SetSize(GetNE()); |
| 2357 | higher_integration_order = false; |
| 2358 | } |
| 2359 | higher_integration_order[elnr] = true; |
| 2360 | } |
| 2361 | void MeshAccess::UnSetHigherIntegrationOrder(int elnr) |
| 2362 | { |
| 2363 | if(higher_integration_order.Size() != GetNE()) |
no test coverage detected