| 44 | } |
| 45 | |
| 46 | Array<MemoryUsage> LinearForm :: GetMemoryUsage () const |
| 47 | { |
| 48 | if (GetVectorPtr()) |
| 49 | { |
| 50 | auto mu = GetVectorPtr()->GetMemoryUsage (); |
| 51 | for (int i = 0; i < mu.Size(); i++) |
| 52 | mu[i].AddName (string(" lf ")+GetName()); |
| 53 | return mu; |
| 54 | } |
| 55 | return Array<MemoryUsage>(); |
| 56 | } |
| 57 | |
| 58 | template <class SCAL> |
| 59 | void S_LinearForm<SCAL> :: Assemble (LocalHeap & clh) |
nothing calls this directly
no test coverage detected