| 50 | } |
| 51 | |
| 52 | int |
| 53 | ConstraintHandler::doneNumberingDOF(void) |
| 54 | { |
| 55 | // iterate through the FE_Element getting them to set their IDs |
| 56 | FE_EleIter &theEle = theAnalysisModelPtr->getFEs(); |
| 57 | FE_Element *elePtr; |
| 58 | while ((elePtr = theEle()) != 0) |
| 59 | elePtr->setID(); |
| 60 | return 0; |
| 61 | } |
| 62 | |
| 63 | void |
| 64 | ConstraintHandler::setLinks(Domain &theDomain, |
no test coverage detected