MCPcopy Create free account
hub / github.com/OpenSees/OpenSees / Print

Method Print

SRC/analysis/algorithm/equiSolnAlgo/AcceleratedNewton.cpp:316–327  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

314}
315
316void
317AcceleratedNewton::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}

Callers

nothing calls this directly

Calls 2

getLinearSOEptrMethod · 0.80
getNumEqnMethod · 0.45

Tested by

no test coverage detected