| 210 | } |
| 211 | |
| 212 | int |
| 213 | ModifiedNewton::recvSelf(int cTag, |
| 214 | Channel &theChannel, |
| 215 | FEM_ObjectBroker &theBroker) |
| 216 | { |
| 217 | static Vector data(4); |
| 218 | theChannel.recvVector(this->getDbTag(), cTag, data); |
| 219 | tangent = data(0); |
| 220 | iFactor = data(1); |
| 221 | cFactor = data(2); |
| 222 | factorOnce = data(3); |
| 223 | return 0; |
| 224 | } |
| 225 | |
| 226 | void |
| 227 | ModifiedNewton::Print(OPS_Stream &s, int flag) |
nothing calls this directly
no test coverage detected