| 199 | } |
| 200 | |
| 201 | int |
| 202 | ModifiedNewton::sendSelf(int cTag, Channel &theChannel) |
| 203 | { |
| 204 | static Vector data(4); |
| 205 | data(0) = tangent; |
| 206 | data(1) = iFactor; |
| 207 | data(2) = cFactor; |
| 208 | data(3) = factorOnce; |
| 209 | return theChannel.sendVector(this->getDbTag(), cTag, data); |
| 210 | } |
| 211 | |
| 212 | int |
| 213 | ModifiedNewton::recvSelf(int cTag, |
nothing calls this directly
no test coverage detected