| 520 | } |
| 521 | |
| 522 | int CollocationHSFixedNumIter::sendSelf(int cTag, Channel &theChannel) |
| 523 | { |
| 524 | static Vector data(4); |
| 525 | data(0) = theta; |
| 526 | data(1) = beta; |
| 527 | data(2) = gamma; |
| 528 | data(3) = polyOrder; |
| 529 | |
| 530 | if (theChannel.sendVector(this->getDbTag(), cTag, data) < 0) { |
| 531 | opserr << "WARNING CollocationHSFixedNumIter::sendSelf() - failed to send the data\n"; |
| 532 | return -1; |
| 533 | } |
| 534 | |
| 535 | return 0; |
| 536 | } |
| 537 | |
| 538 | |
| 539 | int CollocationHSFixedNumIter::recvSelf(int cTag, Channel &theChannel, FEM_ObjectBroker &theBroker) |
nothing calls this directly
no test coverage detected