| 973 | } |
| 974 | |
| 975 | void ContactBoundary::AddIntegrator(shared_ptr<CoefficientFunction> form, |
| 976 | bool deformed) |
| 977 | { |
| 978 | integrators.Append(make_shared<ContactIntegrator>(form, deformed)); |
| 979 | if (deformed) |
| 980 | deformed_integrators.Append (integrators.Last()); |
| 981 | else |
| 982 | undeformed_integrators.Append (integrators.Last()); |
| 983 | } |
| 984 | |
| 985 | void ContactBoundary:: |
| 986 | Update(shared_ptr<GridFunction> displacement_, |
no test coverage detected