| 3101 | } |
| 3102 | |
| 3103 | int OPS_stopTimer() |
| 3104 | { |
| 3105 | if (cmds == 0) return 0; |
| 3106 | Timer* theTimer = cmds->getTimer(); |
| 3107 | if (theTimer == 0) return -1; |
| 3108 | theTimer->pause(); |
| 3109 | opserr << *theTimer; |
| 3110 | return 0; |
| 3111 | } |
| 3112 | |
| 3113 | int OPS_modalDamping() |
| 3114 | { |
no test coverage detected