| 7982 | } |
| 7983 | |
| 7984 | void BilinearFormApplication :: |
| 7985 | MultTransAdd (double val, const BaseVector & v, BaseVector & prod) const |
| 7986 | { |
| 7987 | v.Cumulate(); |
| 7988 | prod.Distribute(); |
| 7989 | |
| 7990 | bf -> AddMatrixTrans (val, v, prod, lh); |
| 7991 | } |
| 7992 | |
| 7993 | shared_ptr<BilinearForm> CreateBilinearForm (shared_ptr<FESpace> space, |
| 7994 | shared_ptr<FESpace> space2, |
nothing calls this directly
no test coverage detected