| 629 | } |
| 630 | |
| 631 | shared_ptr<CoefficientFunction> Diff (const CoefficientFunction * var, |
| 632 | shared_ptr<CoefficientFunction> dir) const override |
| 633 | { |
| 634 | if (this == var) return dir; |
| 635 | // return DeterminantCF(c1) * InnerProduct( TransposeCF(InverseCF(c1)), c1->Diff(var,dir) ); |
| 636 | return InnerProduct( CofactorCF(c1), c1->Diff(var,dir) ); |
| 637 | } |
| 638 | |
| 639 | shared_ptr<CoefficientFunction> |
| 640 | DiffJacobi (const CoefficientFunction * var, typename BASE::T_DJC & cache) const override |
nothing calls this directly
no test coverage detected