| 173 | } |
| 174 | |
| 175 | int |
| 176 | ExpressNewton::recvSelf(int cTag, Channel &theChannel, FEM_ObjectBroker &theBroker) |
| 177 | { |
| 178 | static Vector data(4); |
| 179 | theChannel.recvVector(this->getDbTag(), cTag, data); |
| 180 | nIter = int(data(0)); |
| 181 | kMultiplier1 = data(1); |
| 182 | kMultiplier2 = data(2); |
| 183 | factorOnce = int(data(3)); |
| 184 | return 0; |
| 185 | } |
| 186 | |
| 187 | |
| 188 | void |
nothing calls this directly
no test coverage detected