#include <Teuchos_CompObject.hpp>
Inheritance diagram for Teuchos::CompObject:

Public Member Functions | |
Constructors/Destructor. | |
| CompObject () | |
| Default constructor. | |
| CompObject (const CompObject &source) | |
| Copy Constructor. | |
| virtual | ~CompObject () |
| Destructor. | |
Set/Get counter method. | |
| void | setFlopCounter (const Flops &FlopCounter) |
| Set the internal Teuchos::Flops() pointer. | |
| void | setFlopCounter (const CompObject &compObject) |
| Set the internal Teuchos::Flops() pointer to the flop counter of another Teuchos::CompObject. | |
| void | unsetFlopCounter () |
| Set the internal Teuchos::Flops() pointer to 0 (no flops counted). | |
| Flops * | getFlopCounter () const |
| Get the pointer to the Teuchos::Flops() object associated with this object, returns 0 if none. | |
Set flop count methods. | |
| void | resetFlops () const |
| Resets the number of floating point operations to zero for this multi-stdvector. | |
| double | getFlops () const |
| Returns the number of floating point operations with this multi-stdvector. | |
Update flop count methods. | |
| void | updateFlops (int addflops) const |
| Increment Flop count for this object. | |
| void | updateFlops (long int addflops) const |
| Increment Flop count for this object. | |
| void | updateFlops (double addflops) const |
| Increment Flop count for this object. | |
| void | updateFlops (float addflops) const |
| Increment Flop count for this object. | |
The Teuchos::CompObject is a base class for all Teuchos computational objects. It provides the basic mechanisms and interface specifications for floating point operations using Teuchos::Flops objects.
| Teuchos::CompObject::CompObject | ( | ) |
Default constructor.
| Teuchos::CompObject::CompObject | ( | const CompObject & | source | ) |
Copy Constructor.
| Teuchos::CompObject::~CompObject | ( | ) | [virtual] |
Destructor.
| void Teuchos::CompObject::setFlopCounter | ( | const Flops & | FlopCounter | ) | [inline] |
Set the internal Teuchos::Flops() pointer.
| void Teuchos::CompObject::setFlopCounter | ( | const CompObject & | compObject | ) | [inline] |
Set the internal Teuchos::Flops() pointer to the flop counter of another Teuchos::CompObject.
| void Teuchos::CompObject::unsetFlopCounter | ( | ) | [inline] |
Set the internal Teuchos::Flops() pointer to 0 (no flops counted).
| Flops* Teuchos::CompObject::getFlopCounter | ( | ) | const [inline] |
Get the pointer to the Teuchos::Flops() object associated with this object, returns 0 if none.
| void Teuchos::CompObject::resetFlops | ( | ) | const [inline] |
Resets the number of floating point operations to zero for this multi-stdvector.
| double Teuchos::CompObject::getFlops | ( | ) | const [inline] |
Returns the number of floating point operations with this multi-stdvector.
| void Teuchos::CompObject::updateFlops | ( | int | addflops | ) | const [inline] |
Increment Flop count for this object.
| void Teuchos::CompObject::updateFlops | ( | long int | addflops | ) | const [inline] |
Increment Flop count for this object.
| void Teuchos::CompObject::updateFlops | ( | double | addflops | ) | const [inline] |
Increment Flop count for this object.
| void Teuchos::CompObject::updateFlops | ( | float | addflops | ) | const [inline] |
Increment Flop count for this object.
1.4.7