EpetraExt  Development
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions | List of all members
GenSQP::DataPool Class Referenceabstract

Provides the interface to a generic data pool. More...

#include <GenSQP_DataPool.hpp>

Inheritance diagram for GenSQP::DataPool:
Inheritance graph
[legend]

Public Member Functions

virtual ~DataPool ()
 
virtual void computeAll (const Vector &x)=0
 Recompute all stored quantities. More...
 

Detailed Description

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.

Constructor & Destructor Documentation

virtual GenSQP::DataPool::~DataPool ( )
inlinevirtual

Definition at line 62 of file GenSQP_DataPool.hpp.

Member Function Documentation

virtual void GenSQP::DataPool::computeAll ( const Vector x)
pure virtual

Recompute all stored quantities.

Parameters
x[in] - Current SQP iterate vector.
Returns
None.
Detailed Description:

Interface function that evaluates and stores problem-specific quantities that can be reused within one (or more) SQP iteration.

Note
The GenSQP::Vector input parameters can be recast into user-accessible quantities by using the following syntax:
Teuchos::RCP<const umDVec> ex = (Teuchos::dyn_cast<GenSQP::SledgeVector>(const_cast<GenSQP::Vector&>(x))).getVector();

Implemented in GLpApp::GLpYUEpetraDataPool.


The documentation for this class was generated from the following file: