| 149 | |
| 150 | |
| 151 | static int |
| 152 | wipePP(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) |
| 153 | { |
| 154 | PartitionRuntime& part = *static_cast<PartitionRuntime*>(clientData); |
| 155 | |
| 156 | if (part.partitioned == true && part.num_subdomains > 1) { |
| 157 | SubdomainIter &theSubdomains = part.theDomain.getSubdomains(); |
| 158 | Subdomain *theSub =nullptr; |
| 159 | |
| 160 | // create the appropriate domain decomposition analysis |
| 161 | while ((theSub = theSubdomains()) != nullptr) |
| 162 | theSub->wipeAnalysis(); |
| 163 | } |
| 164 | return TCL_OK; |
| 165 | } |
| 166 |
nothing calls this directly
no test coverage detected