| 950 | } |
| 951 | |
| 952 | Array<MemoryUsage> BlockSmoother :: GetMemoryUsage () const |
| 953 | { |
| 954 | Array<MemoryUsage> mu; |
| 955 | for (int i = 0; i < jac.Size(); i++) |
| 956 | if (jac[i]) mu += jac[i]->GetMemoryUsage (); |
| 957 | return mu; |
| 958 | } |
| 959 | |
| 960 | |
| 961 |
nothing calls this directly
no test coverage detected