| 1315 | } |
| 1316 | |
| 1317 | shared_ptr<CoefficientFunction> SkewCF (shared_ptr<CoefficientFunction> coef) |
| 1318 | { |
| 1319 | if (coef->IsZeroCF()) |
| 1320 | return coef; |
| 1321 | |
| 1322 | return make_shared<SkewCoefficientFunction> (coef); |
| 1323 | } |
| 1324 | |
| 1325 | |
| 1326 | shared_ptr<CoefficientFunction> |
no test coverage detected