| 162 | |
| 163 | |
| 164 | void InitApplyIntegrationPoints () |
| 165 | { |
| 166 | BaseMatrix::RegisterDeviceMatrixCreator(typeid(ApplyIntegrationPoints), |
| 167 | [] (const BaseMatrix & bmat) -> shared_ptr<BaseMatrix> |
| 168 | { |
| 169 | auto & mat = dynamic_cast<const ApplyIntegrationPoints&>(bmat); |
| 170 | return make_shared<DevApplyIntegrationPoints>(mat); |
| 171 | }); |
| 172 | } |
| 173 | }; |
no test coverage detected