LifeV
|
class ExpressionLogarithm Class for representing a product between two expressions. More...
#include <ExpressionLogarithm.hpp>
Private Attributes | |
BaseExpressionType | M_l |
Public Types | |
typedef ExpressionBase< ExpressionLogarithm< BaseExpressionType > > | base_Type |
Constructors & Destructor | |
ExpressionLogarithm (const BaseExpressionType &l) | |
Full constructor using the two expressions. More... | |
ExpressionLogarithm (const ExpressionLogarithm< BaseExpressionType > &expression) | |
Copy constructor. More... | |
~ExpressionLogarithm () | |
Destructor. More... | |
Methods | |
static void | display (std::ostream &out=std::cout) |
Display method. More... | |
Private Methods | |
const BaseExpressionType & | base () const |
Getter for the left hand side. More... | |
ExpressionLogarithm () | |
Additional Inherited Members | |
Public Types inherited from ExpressionBase< ExpressionLogarithm< BaseExpressionType > > | |
typedef ExpressionLogarithm< BaseExpressionType > | derived_Type |
Public Member Functions inherited from ExpressionBase< ExpressionLogarithm< BaseExpressionType > > | |
ExpressionBase () | |
Empty and only constructor. More... | |
virtual | ~ExpressionBase () |
Destructor. More... | |
const derived_Type & | cast () const |
Method to cast away the type and get the real (DerivedType) object. More... | |
class ExpressionLogarithm Class for representing a product between two expressions.
This class represents the product in the expression tree.
Template parameters
LExpressionType: The expression on the left side of the product operation.
RExpressionType: The expression on the right side of the product operation.
Template requirements
LExpressionType: Copiable, static display method
RExpressionType: Copiable, static display method
Definition at line 71 of file ExpressionLogarithm.hpp.
typedef ExpressionBase< ExpressionLogarithm <BaseExpressionType> > base_Type |
Definition at line 79 of file ExpressionLogarithm.hpp.
|
inline |
Full constructor using the two expressions.
Definition at line 87 of file ExpressionLogarithm.hpp.
|
inline |
Copy constructor.
Definition at line 91 of file ExpressionLogarithm.hpp.
|
inline |
Destructor.
Definition at line 95 of file ExpressionLogarithm.hpp.
|
private |
|
inlinestatic |
Display method.
Definition at line 104 of file ExpressionLogarithm.hpp.
|
inline |
Getter for the left hand side.
Definition at line 117 of file ExpressionLogarithm.hpp.
|
private |
Definition at line 134 of file ExpressionLogarithm.hpp.