| 197 | } |
| 198 | |
| 199 | int |
| 200 | IncrementalIntegrator::commit(void) |
| 201 | { |
| 202 | if (theAnalysisModel == 0) { |
| 203 | opserr << "WARNING IncrementalIntegrator::commit() -"; |
| 204 | opserr << "no AnalysisModel object associated with this object\n"; |
| 205 | return -1; |
| 206 | } |
| 207 | |
| 208 | return theAnalysisModel->commitDomain(); |
| 209 | } |
| 210 | |
| 211 | |
| 212 | int |
nothing calls this directly
no test coverage detected