| 314 | } |
| 315 | |
| 316 | void |
| 317 | AcceleratedNewton::Print(OPS_Stream &s, int flag) |
| 318 | { |
| 319 | s << "AcceleratedNewton" << endln; |
| 320 | LinearSOE *theSOE = this->getLinearSOEptr(); |
| 321 | s << "\tNumber of equations: " << theSOE->getNumEqn() << endln; |
| 322 | |
| 323 | if (theAccelerator != 0) |
| 324 | theAccelerator->Print(s,flag); |
| 325 | else |
| 326 | s << "\tNo accelerator --> Modified Newton" << endln; |
| 327 | } |
nothing calls this directly
no test coverage detected