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

Method doneNumberingDOF

SRC/analysis/handler/AutoConstraintHandler.cpp:586–598  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

584}
585
586int
587AutoConstraintHandler::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}

Callers

nothing calls this directly

Calls 2

getAnalysisModelPtrMethod · 0.45
doneIDMethod · 0.45

Tested by

no test coverage detected