MCPcopy Create free account
hub / github.com/OpenSees/OpenSees / wipePP

Function wipePP

SRC/runtime/commands/parallel/partition.cpp:151–165  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

149
150
151static int
152wipePP(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

Callers

nothing calls this directly

Calls 1

wipeAnalysisMethod · 0.45

Tested by

no test coverage detected