Public Types | |
enum | NodeType { Sum, Difference, Product, Quotient, Negative, Constant, Variable, Sine, Cosine, Leaf = 1024, UnaryOp = 2048, BinaryOp = 4096 } |
Public Member Functions | |
ExpressionNode () | |
virtual NodeType | type () const=0 |
get NodeType | |
bool | isOperator () const |
bool | isUnaryOp () const |
bool | isBinaryOp () const |
NodeType | opType () const |
Real | evaluate (const Vector ¶ms) const |
ref< ExpressionNode > | differentiate (Int withRespectToIndex) const |
virtual String | toString () const=0 |
virtual bool | isSameKindAs (const ReferencedObject &) const |
virtual bool | isSameKindAs (const Object &) const |
virtual String | className () const=0 |
void | reference () const |
bool | unreference () const |
const int | referenceCount () const |
void | enableOnUnreferenceCall (bool enabled) |
virtual void | onUnreference () const |
virtual void | serialize (Serializer &s)=0 |
read or write object state to Serializer | |
Static Public Member Functions | |
template<class BaseClass, class DerivedClass> void | registerSerializableInstantiator (const SerializableInstantiator &instantiator) |
void | registerSerializableInstantiator (const String &baseClassTypeName, const String &derivedClassTypeName, const SerializableInstantiator &instantiator) |
template<class BaseClass> const SerializableInstantiator & | getSerializableInstantiator (const String &derivedClassTypeName) |
const SerializableInstantiator & | getSerializableInstantiator (const String &baseClassTypeName, const String &derivedClassTypeName) |
Protected Member Functions | |
virtual void | cacheValue (const Vector ¶ms) const=0 |
perform evaluation with params and store in value (& set valueCached true) | |
virtual void | resetCache () const=0 |
set valueCached false and call resetCache() on children | |
virtual void | cacheDerivative (Int withRespectToIndex) const=0 |
perform differentiation and cache in derivative (& set set derivCached) | |
virtual void | resetDerivCached () const=0 |
set derivCached false and call resetDerivCached() on children | |
virtual void | operationCounts (Int &addsub, Int &multdiv, Int &trig) const=0 |
Protected Attributes | |
bool | valueCached |
Real | value |
bool | derivCached |
Int | derivWithRespToIndex |
ref< ExpressionNode > | derivative |
int | _refCount |
bool | onUnreferenceEnabled |
Friends | |
class | BinaryOpExpression |
class | UnaryOpExpression |
class | Expression |
|
Definition at line 49 of file ExpressionNode. Referenced by opType(), base::VariableExpression::type(), base::SumExpression::type(), base::SinExpression::type(), base::QuotientExpression::type(), base::ProductExpression::type(), base::NegateExpression::type(), base::DifferenceExpression::type(), base::CosExpression::type(), and base::ConstantExpression::type(). |
|
Definition at line 46 of file ExpressionNode. References derivCached, and valueCached. |
|
perform differentiation and cache in derivative (& set set derivCached)
Implemented in base::BinaryOpExpression, base::ConstantExpression, base::CosExpression, base::DifferenceExpression, base::NegateExpression, base::ProductExpression, base::QuotientExpression, base::SinExpression, base::SumExpression, base::UnaryOpExpression, and base::VariableExpression. Referenced by differentiate(). |
|
perform evaluation with params and store in value (& set valueCached true)
Implemented in base::BinaryOpExpression, base::ConstantExpression, base::CosExpression, base::DifferenceExpression, base::NegateExpression, base::ProductExpression, base::QuotientExpression, base::SinExpression, base::SumExpression, base::UnaryOpExpression, and base::VariableExpression. Referenced by evaluate(). |
|
|
Definition at line 67 of file ExpressionNode. References Assert, cacheDerivative(), derivative, derivCached, derivWithRespToIndex, and base::Int. |
|
If enabled, each call to unreference() will also call virtual method onUnreference() Definition at line 115 of file Referenced. References base::Referenced::onUnreferenceEnabled. |
|
Definition at line 60 of file ExpressionNode. References cacheValue(), base::Real, value, valueCached, and base::Vector. |
|
|
|
Definition at line 71 of file Serializable. References base::String. |
|
Definition at line 57 of file ExpressionNode. References BinaryOp, base::Int, and type(). Referenced by isOperator(). |
|
Definition at line 55 of file ExpressionNode. References isBinaryOp(), and isUnaryOp(). |
|
|
|
Definition at line 52 of file ReferencedObject. |
|
Definition at line 56 of file ExpressionNode. References base::Int, type(), and UnaryOp. Referenced by isOperator(). |
|
Called by unreference() if enabled via enableOnUnreferenceCall(true). Typically overridden in subclasses that wish to know about unreference() calls - for example to handle manually breaking cyclic references Reimplemented in robot::control::ControllableAdaptor::AdaptorControlInterface, and robot::control::ControllableAdaptor. Definition at line 121 of file Referenced. Referenced by base::Referenced::unreference(). |
|
|
Definition at line 58 of file ExpressionNode. |
|
Increment the reference count by one, indicating that this object has another pointer which is referencing it. Definition at line 65 of file Referenced. References base::Referenced::_refCount. |
|
Return the number pointers currently referencing this object. Definition at line 112 of file Referenced. References base::Referenced::_refCount. Referenced by robot::control::ControllableAdaptor::AdaptorControlInterface::onUnreference(). |
|
|
|
Definition at line 62 of file Serializable. |
|
set valueCached false and call resetCache() on children
Implemented in base::BinaryOpExpression, base::ConstantExpression, base::UnaryOpExpression, and base::VariableExpression. |
|
set derivCached false and call resetDerivCached() on children
Implemented in base::BinaryOpExpression, base::ConstantExpression, base::UnaryOpExpression, and base::VariableExpression. |
|
|
|
get NodeType
Implemented in base::ConstantExpression, base::CosExpression, base::DifferenceExpression, base::NegateExpression, base::ProductExpression, base::QuotientExpression, base::SinExpression, base::SumExpression, and base::VariableExpression. Referenced by isBinaryOp(), isUnaryOp(), and opType(). |
|
Decrement the reference count by one, indicating that a pointer to this object is referencing it. If the refence count goes to zero, it is assumed that this object is nolonger referenced and is automatically deleted. Definition at line 81 of file Referenced. References base::Referenced::_refCount, Exception, base::Referenced::onUnreference(), and base::Referenced::onUnreferenceEnabled. |
|
Definition at line 93 of file ExpressionNode. |
|
Reimplemented in base::BinaryOpExpression, base::ConstantExpression, base::CosExpression, base::NegateExpression, base::UnaryOpExpression, and base::VariableExpression. Definition at line 95 of file ExpressionNode. |
|
Definition at line 94 of file ExpressionNode. |
|
Definition at line 136 of file Referenced. Referenced by base::Referenced::reference(), base::Referenced::referenceCount(), base::Referenced::Referenced(), base::Referenced::unreference(), and base::Referenced::~Referenced(). |
|
Definition at line 89 of file ExpressionNode. Referenced by differentiate(). |
|
Definition at line 87 of file ExpressionNode. Referenced by differentiate(), and ExpressionNode(). |
|
Definition at line 88 of file ExpressionNode. Referenced by differentiate(). |
|
Definition at line 137 of file Referenced. Referenced by base::Referenced::enableOnUnreferenceCall(), base::Referenced::Referenced(), and base::Referenced::unreference(). |
|
Definition at line 82 of file ExpressionNode. Referenced by evaluate(). |
|
Definition at line 81 of file ExpressionNode. Referenced by evaluate(), and ExpressionNode(). |