| 295 | |
| 296 | |
| 297 | void |
| 298 | LagrangeConstraintHandler::clearAll(void) |
| 299 | { |
| 300 | // for the nodes reset the DOF_Group pointers to 0 |
| 301 | Domain *theDomain = this->getDomainPtr(); |
| 302 | if (theDomain == 0) |
| 303 | return; |
| 304 | |
| 305 | NodeIter &theNod = theDomain->getNodes(); |
| 306 | Node *nodPtr; |
| 307 | while ((nodPtr = theNod()) != 0) |
| 308 | nodPtr->setDOF_GroupPtr(0); |
| 309 | } |
| 310 | |
| 311 | int |
| 312 | LagrangeConstraintHandler::sendSelf(int cTag, Channel &theChannel) |
nothing calls this directly
no test coverage detected