| 584 | } |
| 585 | |
| 586 | int |
| 587 | AutoConstraintHandler::doneNumberingDOF(void) |
| 588 | { |
| 589 | // iterate through the DOF_Groups telling them that their ID has now been set |
| 590 | DOF_GrpIter& theDOFS = this->getAnalysisModelPtr()->getDOFs(); |
| 591 | DOF_Group* dofPtr; |
| 592 | while ((dofPtr = theDOFS()) != 0) |
| 593 | dofPtr->doneID(); |
| 594 | |
| 595 | // iterate through the FE_Element getting them to set their IDs |
| 596 | // done using base class implementation |
| 597 | return ConstraintHandler::doneNumberingDOF(); |
| 598 | } |
nothing calls this directly
no test coverage detected