| 202 | |
| 203 | |
| 204 | int |
| 205 | NewtonHallM::sendSelf(int cTag, Channel &theChannel) |
| 206 | { |
| 207 | static Vector data(4); |
| 208 | data(0) = iFactor;; |
| 209 | data(1) = method; |
| 210 | data(2) = alpha; |
| 211 | data(3) = c; |
| 212 | return theChannel.sendVector(this->getDbTag(), cTag, data); |
| 213 | } |
| 214 | |
| 215 | int |
| 216 | NewtonHallM::recvSelf(int cTag, |
nothing calls this directly
no test coverage detected