00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef _BASE_BINARYOPEXPRESSION_
00026 #define _BASE_BINARYOPEXPRESSION_
00027
00028 #include <base/base>
00029 #include <base/ExpressionNode>
00030
00031
00032 namespace base {
00033
00034
00035
00036
00037
00038
00039 class BinaryOpExpression : public ExpressionNode
00040 {
00041 public:
00042 BinaryOpExpression(ref<ExpressionNode> left, ref<ExpressionNode> right)
00043 : leftArg(left), rightArg(right) {}
00044 BinaryOpExpression(const BinaryOpExpression& e)
00045 : leftArg(e.leftArg), rightArg(e.rightArg) {}
00046
00047 virtual void serialize(Serializer& s) { s.baseRef(leftArg,"lhs"); s.baseRef(rightArg, "rhs"); }
00048
00049 protected:
00050 BinaryOpExpression() {}
00051
00052 virtual void cacheValue(const Vector& params) const = 0;
00053 virtual void resetCache() const { valueCached=false; leftArg->resetCache(); rightArg->resetCache(); }
00054
00055 virtual void cacheDerivative(Int withRespectToIndex) const = 0;
00056 virtual void resetDerivCached() const
00057 {
00058 derivCached=false;
00059 leftArg->resetDerivCached();
00060 rightArg->resetDerivCached();
00061 derivative = ref<ExpressionNode>(0);
00062 }
00063
00064 virtual void operationCounts(Int& addsub, Int& multdiv, Int& trig) const
00065 {
00066 leftArg->operationCounts(addsub,multdiv,trig);
00067 rightArg->operationCounts(addsub,multdiv,trig);
00068 }
00069
00070 ref<ExpressionNode> leftArg;
00071 ref<ExpressionNode> rightArg;
00072
00073 friend class Expression;
00074 };
00075
00076 }
00077
00078 #endif
00079