| 530 | |
| 531 | |
| 532 | void HHTExplicit_TP::Print(OPS_Stream &s, int flag) |
| 533 | { |
| 534 | AnalysisModel *theModel = this->getAnalysisModel(); |
| 535 | if (theModel != 0) { |
| 536 | double currentTime = theModel->getCurrentDomainTime(); |
| 537 | s << "HHTExplicit_TP - currentTime: " << currentTime << endln; |
| 538 | s << " alpha: " << alpha << " gamma: " << gamma << endln; |
| 539 | s << " c2: " << c2 << " c3: " << c3 << endln; |
| 540 | } else |
| 541 | s << "HHTExplicit_TP - no associated AnalysisModel\n"; |
| 542 | } |
nothing calls this directly
no test coverage detected