| 238 | |
| 239 | |
| 240 | int CTestRelativeNormDispIncr::sendSelf(int cTag, Channel &theChannel) |
| 241 | { |
| 242 | int res = 0; |
| 243 | Vector x(4); |
| 244 | x(0) = tol; |
| 245 | x(1) = maxNumIter; |
| 246 | x(2) = printFlag; |
| 247 | x(3) = nType; |
| 248 | res = theChannel.sendVector(this->getDbTag(), cTag, x); |
| 249 | if (res < 0) |
| 250 | opserr << "CTestRelativeNormDispIncr::sendSelf() - failed to send data\n"; |
| 251 | |
| 252 | return res; |
| 253 | } |
| 254 | |
| 255 | |
| 256 | int CTestRelativeNormDispIncr::recvSelf(int cTag, Channel &theChannel, |
nothing calls this directly
no test coverage detected