Aristos  Development
 All Classes Functions Pages
Public Member Functions | List of all members
Aristos::DataPool Class Referenceabstract

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

#include <Aristos_DataPool.hpp>

Public Member Functions

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.

Member Function Documentation

virtual void Aristos::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 Aristos::Vector input parameters can be recast into user-accessible quantities by using the following syntax:
Teuchos::RefCountPtr<const umDVec> ex = (Teuchos::dyn_cast<Aristos::SledgeVector>(const_cast<Aristos::Vector&>(x))).getVector();

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