EpetraExt Package Browser (Single Doxygen Collection)
Development
|
Provides the interface to a generic data pool. More...
#include <GenSQP_DataPool.hpp>
Public Member Functions | |
virtual | ~DataPool () |
virtual void | computeAll (const Vector &x)=0 |
Recompute all stored quantities. More... | |
Provides the interface to a generic data pool.
The only member function is computeAll, responsible for the computation of all data that can be stored and reused within one (or more) SQP iteration. The data is entirely problem specific.
Definition at line 59 of file GenSQP_DataPool.hpp.
|
inlinevirtual |
Definition at line 62 of file GenSQP_DataPool.hpp.
|
pure virtual |
Recompute all stored quantities.
x | [in] - Current SQP iterate vector. |
Interface function that evaluates and stores problem-specific quantities that can be reused within one (or more) SQP iteration.
Teuchos::RCP<const umDVec> ex = (Teuchos::dyn_cast<GenSQP::SledgeVector>(const_cast<GenSQP::Vector&>(x))).getVector();
Implemented in GLpApp::GLpYUEpetraDataPool.