| 160 | } |
| 161 | |
| 162 | int |
| 163 | ExpressNewton::sendSelf(int cTag, Channel &theChannel) |
| 164 | { |
| 165 | static Vector data(4); |
| 166 | data(0) = nIter; |
| 167 | data(1) = kMultiplier1; |
| 168 | data(2) = kMultiplier2; |
| 169 | data(3) = factorOnce; |
| 170 | return theChannel.sendVector(this->getDbTag(), cTag, data); |
| 171 | |
| 172 | |
| 173 | } |
| 174 | |
| 175 | int |
| 176 | ExpressNewton::recvSelf(int cTag, Channel &theChannel, FEM_ObjectBroker &theBroker) |
nothing calls this directly
no test coverage detected