| 346 | |
| 347 | |
| 348 | void Trapezoidal::Print(OPS_Stream &s, int flag) |
| 349 | { |
| 350 | AnalysisModel *theModel = this->getAnalysisModel(); |
| 351 | if (theModel != 0) { |
| 352 | double currentTime = theModel->getCurrentDomainTime(); |
| 353 | s << "\t Trapezoidal - currentTime: " << currentTime; |
| 354 | } else |
| 355 | s << "\t Trapezoidal - no associated AnalysisModel\n"; |
| 356 | } |
| 357 | |
| 358 | |
| 359 | // AddingSensitivity:BEGIN ////////////////////////////// |
nothing calls this directly
no test coverage detected