| 220 | |
| 221 | |
| 222 | int |
| 223 | NewtonRaphson::sendSelf(int cTag, Channel &theChannel) |
| 224 | { |
| 225 | static Vector data(3); |
| 226 | data(0) = tangent; |
| 227 | data(1) = iFactor; |
| 228 | data(2) = cFactor; |
| 229 | return theChannel.sendVector(this->getDbTag(), cTag, data); |
| 230 | } |
| 231 | |
| 232 | int |
| 233 | NewtonRaphson::recvSelf(int cTag, |
nothing calls this directly
no test coverage detected