| 36 | } |
| 37 | |
| 38 | void LinearForm :: PrintReport (ostream & ost) const |
| 39 | { |
| 40 | ost << "on space " << GetFESpace()->GetName() << endl |
| 41 | << "integrators: " << endl; |
| 42 | for (int i = 0; i < parts.Size(); i++) |
| 43 | ost << " " << parts[i]->Name() << endl; |
| 44 | } |
| 45 | |
| 46 | Array<MemoryUsage> LinearForm :: GetMemoryUsage () const |
| 47 | { |
nothing calls this directly
no test coverage detected