| 228 | |
| 229 | |
| 230 | int CTestFixedNumIter::recvSelf(int cTag, Channel &theChannel, |
| 231 | FEM_ObjectBroker &theBroker) |
| 232 | { |
| 233 | int res = 0; |
| 234 | Vector x(3); |
| 235 | res = theChannel.recvVector(this->getDbTag(), cTag, x); |
| 236 | |
| 237 | if (res < 0) { |
| 238 | opserr << "CTestFixedNumIter::sendSelf() - failed to send data\n"; |
| 239 | maxNumIter = 25; |
| 240 | printFlag = 0; |
| 241 | nType = 2; |
| 242 | } else { |
| 243 | maxNumIter = (int) x(0); |
| 244 | printFlag = (int) x(1); |
| 245 | nType = (int) x(2); |
| 246 | norms.resize(maxNumIter); |
| 247 | } |
| 248 | return res; |
| 249 | } |
nothing calls this directly
no test coverage detected