| 537 | |
| 538 | |
| 539 | int CollocationHSFixedNumIter::recvSelf(int cTag, Channel &theChannel, FEM_ObjectBroker &theBroker) |
| 540 | { |
| 541 | Vector data(4); |
| 542 | if (theChannel.recvVector(this->getDbTag(), cTag, data) < 0) { |
| 543 | opserr << "WARNING CollocationHSFixedNumIter::recvSelf() - could not receive data\n"; |
| 544 | return -1; |
| 545 | } |
| 546 | |
| 547 | theta = data(0); |
| 548 | beta = data(1); |
| 549 | gamma = data(2); |
| 550 | polyOrder = int(data(3)); |
| 551 | |
| 552 | return 0; |
| 553 | } |
| 554 | |
| 555 | |
| 556 | void CollocationHSFixedNumIter::Print(OPS_Stream &s, int flag) |
nothing calls this directly
no test coverage detected