| 1471 | } |
| 1472 | |
| 1473 | void ContactIntegrator2 :: GetDofNrs(std::function<void(int,FlatArray<DofId>)> eldofs) |
| 1474 | { |
| 1475 | Array<DofId> dnums; |
| 1476 | for (int i = 0; i < elements.Size(); i++) |
| 1477 | { |
| 1478 | elements[i]->GetDofNrs(dnums); |
| 1479 | eldofs(i, dnums); |
| 1480 | } |
| 1481 | } |
| 1482 | |
| 1483 | void ContactIntegrator2 :: Assemble(std::function<void(FlatArray<DofId>,FlatArray<DofId>,FlatMatrix<double>,ElementId,LocalHeap&)> addelmat, LocalHeap& lh) |
| 1484 | { |