Anasazi  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
List of all members
Anasazi::StatusTestOutput< ScalarType, MV, OP > Class Template Reference

A special StatusTest for printing other status tests. More...

#include <AnasaziStatusTestOutput.hpp>

Inheritance diagram for Anasazi::StatusTestOutput< ScalarType, MV, OP >:
Anasazi::StatusTest< ScalarType, MV, OP >

Public Member Functions

Constructors/destructors
 StatusTestOutput (const Teuchos::RCP< OutputManager< ScalarType > > &printer, Teuchos::RCP< StatusTest< ScalarType, MV, OP > > test, int mod=1, int printStates=Passed)
 Constructor. More...
 
virtual ~StatusTestOutput ()
 Destructor. More...
 
Status methods
TestStatus checkStatus (Eigensolver< ScalarType, MV, OP > *solver)
 
TestStatus getStatus () const
 Return the result of the most recent checkStatus call, or undefined if it has not been run. More...
 
std::vector< int > whichVecs () const
 Get the indices for the vectors that passed the test. More...
 
int howMany () const
 Get the number of vectors that passed the test. More...
 
Accessor methods
void setChild (Teuchos::RCP< StatusTest< ScalarType, MV, OP > > test)
 Set child test. More...
 
Teuchos::RCP< StatusTest
< ScalarType, MV, OP > > 
getChild () const
 Get child test. More...
 
Reset methods
void reset ()
 Informs the status test that it should reset its internal configuration to the uninitialized state. More...
 
void clearStatus ()
 
Print methods
std::ostream & print (std::ostream &os, int indent=0) const
 Output formatted description of stopping test to output stream. More...
 
- Public Member Functions inherited from Anasazi::StatusTest< ScalarType, MV, OP >
 StatusTest ()
 Constructor. More...
 
virtual ~StatusTest ()
 Destructor. More...
 

Detailed Description

template<class ScalarType, class MV, class OP>
class Anasazi::StatusTestOutput< ScalarType, MV, OP >

A special StatusTest for printing other status tests.

StatusTestOutput is a wrapper around another StatusTest that calls StatusTest::print() on the underlying object on calls to StatusTestOutput::checkStatus(). The frequency and occasion of the printing can be dictated according to some parameters passed to StatusTestOutput::StatusTestOutput().

Definition at line 72 of file AnasaziStatusTestOutput.hpp.

Constructor & Destructor Documentation

template<class ScalarType , class MV , class OP >
Anasazi::StatusTestOutput< ScalarType, MV, OP >::StatusTestOutput ( const Teuchos::RCP< OutputManager< ScalarType > > &  printer,
Teuchos::RCP< StatusTest< ScalarType, MV, OP > >  test,
int  mod = 1,
int  printStates = Passed 
)
inline

Constructor.

The StatusTestOutput requires an OutputManager for printing the underlying StatusTest on calls to checkStatus(), as well as an underlying StatusTest.

StatusTestOutput can be initialized with a null pointer for argument test. However, calling checkStatus() with a null child pointer will result in a StatusTestError exception being thrown. See checkStatus() for more information.

The last two parameters, described below, in addition to the verbosity level of the OutputManager, control when printing is called. When both the mod criterion and the printStates criterion are satisfied, the status test will be printed to the OutputManager with MsgType of StatusTestDetails.

Parameters
mod(in) A positive number describes how often the output should be printed. On every call to checkStatus(), an internal counter is incremented. Printing may only occur when this counter is congruent to zero modulo mod. Default: 1 (attempt to print on every call to checkStatus())
printStates(in) A combination of TestStatus values for which the output may be printed. Default: Passed (attempt to print whenever checkStatus() will return Passed)

Definition at line 95 of file AnasaziStatusTestOutput.hpp.

template<class ScalarType , class MV , class OP >
virtual Anasazi::StatusTestOutput< ScalarType, MV, OP >::~StatusTestOutput ( )
inlinevirtual

Destructor.

Definition at line 103 of file AnasaziStatusTestOutput.hpp.

Member Function Documentation

template<class ScalarType , class MV , class OP >
TestStatus Anasazi::StatusTestOutput< ScalarType, MV, OP >::checkStatus ( Eigensolver< ScalarType, MV, OP > *  solver)
inlinevirtual

Check and return status of underlying StatusTest.

This method calls checkStatus() on the StatusTest object passed in the constructor. If appropriate, the method will follow this call with a call to print() on the underlying object, using the OutputManager passed via the constructor with verbosity level StatusTestDetails.

The internal counter will be incremented during this call, but only after performing the tests to decide whether or not to print the underlying StatusTest. This way, the very first call to checkStatus() following initialization or reset() will enable the underlying StatusTest to be printed, regardless of the mod parameter, as the current number of calls will be zero.

If the specified Teuchos::RCP for the child class is Teuchos::null, then calling checkStatus() will result in a StatusTestError exception being thrown.

Returns
TestStatus indicating whether the underlying test passed or failed.

Implements Anasazi::StatusTest< ScalarType, MV, OP >.

Definition at line 125 of file AnasaziStatusTestOutput.hpp.

template<class ScalarType , class MV , class OP >
TestStatus Anasazi::StatusTestOutput< ScalarType, MV, OP >::getStatus ( ) const
inlinevirtual

Return the result of the most recent checkStatus call, or undefined if it has not been run.

Implements Anasazi::StatusTest< ScalarType, MV, OP >.

Definition at line 144 of file AnasaziStatusTestOutput.hpp.

template<class ScalarType , class MV , class OP >
std::vector<int> Anasazi::StatusTestOutput< ScalarType, MV, OP >::whichVecs ( ) const
inlinevirtual

Get the indices for the vectors that passed the test.

Implements Anasazi::StatusTest< ScalarType, MV, OP >.

Definition at line 149 of file AnasaziStatusTestOutput.hpp.

template<class ScalarType , class MV , class OP >
int Anasazi::StatusTestOutput< ScalarType, MV, OP >::howMany ( ) const
inlinevirtual

Get the number of vectors that passed the test.

Implements Anasazi::StatusTest< ScalarType, MV, OP >.

Definition at line 154 of file AnasaziStatusTestOutput.hpp.

template<class ScalarType , class MV , class OP >
void Anasazi::StatusTestOutput< ScalarType, MV, OP >::setChild ( Teuchos::RCP< StatusTest< ScalarType, MV, OP > >  test)
inline

Set child test.

Note
This also resets the test status to Undefined.

Definition at line 168 of file AnasaziStatusTestOutput.hpp.

template<class ScalarType , class MV , class OP >
Teuchos::RCP<StatusTest<ScalarType,MV,OP> > Anasazi::StatusTestOutput< ScalarType, MV, OP >::getChild ( ) const
inline

Get child test.

Definition at line 174 of file AnasaziStatusTestOutput.hpp.

template<class ScalarType , class MV , class OP >
void Anasazi::StatusTestOutput< ScalarType, MV, OP >::reset ( )
inlinevirtual

Informs the status test that it should reset its internal configuration to the uninitialized state.

This resets the cached state to an Undefined state and calls reset() on the underlying test. It also resets the counter for the number of calls to checkStatus().

Implements Anasazi::StatusTest< ScalarType, MV, OP >.

Definition at line 188 of file AnasaziStatusTestOutput.hpp.

template<class ScalarType , class MV , class OP >
void Anasazi::StatusTestOutput< ScalarType, MV, OP >::clearStatus ( )
inlinevirtual

Clears the results of the last status test. This resets the cached state to an Undefined state and calls clearStatus() on the underlying test.

Implements Anasazi::StatusTest< ScalarType, MV, OP >.

Definition at line 198 of file AnasaziStatusTestOutput.hpp.

template<class ScalarType , class MV , class OP >
std::ostream& Anasazi::StatusTestOutput< ScalarType, MV, OP >::print ( std::ostream &  os,
int  indent = 0 
) const
inlinevirtual

Output formatted description of stopping test to output stream.

Implements Anasazi::StatusTest< ScalarType, MV, OP >.

Definition at line 211 of file AnasaziStatusTestOutput.hpp.


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