| 4302 | |
| 4303 | |
| 4304 | shared_ptr<CoefficientFunction> CrossProduct (shared_ptr<CoefficientFunction> c1, |
| 4305 | shared_ptr<CoefficientFunction> c2) |
| 4306 | { |
| 4307 | if (c1->IsZeroCF() || c2->IsZeroCF()) |
| 4308 | return ZeroCF( c1->Dimensions() ); |
| 4309 | |
| 4310 | return make_shared<CrossProductCoefficientFunction> (c1, c2); |
| 4311 | } |
| 4312 | |
| 4313 | shared_ptr<CoefficientFunction> UnitVectorCF (int dim, int coord) |
| 4314 | { |
no test coverage detected