| 392 | |
| 393 | |
| 394 | int CTestPFEM::sendSelf(int cTag, Channel &theChannel) |
| 395 | { |
| 396 | int res = 0; |
| 397 | Vector x(10); |
| 398 | x(0) = tolv; |
| 399 | x(1) = maxNumIter; |
| 400 | x(2) = printFlag; |
| 401 | x(3) = nType; |
| 402 | x(4) = maxIncr; |
| 403 | x(5) = tolp; |
| 404 | x(6) = tolv2; |
| 405 | x(7) = tolp2; |
| 406 | x(8) = tolvrel; |
| 407 | x(9) = tolprel; |
| 408 | res = theChannel.sendVector(this->getDbTag(), cTag, x); |
| 409 | if(res < 0) |
| 410 | opserr << "CTestPFEM::sendSelf() - failed to send data\n"; |
| 411 | |
| 412 | return res; |
| 413 | } |
| 414 | |
| 415 | |
| 416 | int CTestPFEM::recvSelf(int cTag, Channel &theChannel, |
nothing calls this directly
no test coverage detected