Commit the state
| 437 | |
| 438 | // Commit the state |
| 439 | int ExplicitDifferenceStatic::commit(void) |
| 440 | { |
| 441 | AnalysisModel *theModel = this->getAnalysisModel(); |
| 442 | if (theModel == 0) { |
| 443 | opserr << "WARNING ExplicitDifferenceStatic::commit() - no AnalysisModel set\n"; |
| 444 | return -1; |
| 445 | } |
| 446 | |
| 447 | return theModel->commitDomain(); |
| 448 | } |
| 449 | |
| 450 | // Send object state for parallel processing |
| 451 | int ExplicitDifferenceStatic::sendSelf(int cTag, Channel &theChannel) |
nothing calls this directly
no test coverage detected