| 1240 | } |
| 1241 | |
| 1242 | void ContactIntegrator2 :: AddIntegrator(shared_ptr<CoefficientFunction> form) |
| 1243 | { |
| 1244 | cb -> AddIntegrator (form); |
| 1245 | integrators.Append(make_shared<ContactIntegrator>(form, true)); |
| 1246 | trial_fes = integrators.Last()->GetTrialSpace(); |
| 1247 | test_fes = integrators.Last()->GetTestSpace(); |
| 1248 | |
| 1249 | cb->SetTrialFESpace(trial_fes); |
| 1250 | cb->SetTestFESpace(test_fes); |
| 1251 | } |
| 1252 | |
| 1253 | int ContactIntegrator2 :: GetNElements() |
| 1254 | { |
nothing calls this directly
no test coverage detected