本文整理汇总了C++中SX::__mul__方法的典型用法代码示例。如果您正苦于以下问题:C++ SX::__mul__方法的具体用法?C++ SX::__mul__怎么用?C++ SX::__mul__使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SX
的用法示例。
在下文中一共展示了SX::__mul__方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: __mul__
SX SX::__mul__(const SX& y) const{
// Only simplifications that do not result in extra nodes area allowed
if(!isConstant() && y.isConstant())
return y.__mul__(*this);
else if(node->isZero() || y->isZero()) // one of the terms is zero
return 0;
else if(node->isOne()) // term1 is one
return y;
else if(y->isOne()) // term2 is one
return *this;
else if(y->isMinusOne())
return -(*this);
else if(node->isMinusOne())
return -y;
else if(y.hasDep() && y.getOp()==OP_INV)
return (*this)/y.inv();
else if(hasDep() && getOp()==OP_INV)
return y/inv();
else if(isConstant() && y.hasDep() && y.getOp()==OP_MUL && y.getDep(0).isConstant() && getValue()*y.getDep(0).getValue()==1) // 5*(0.2*x) = x
return y.getDep(1);
else if(isConstant() && y.hasDep() && y.getOp()==OP_DIV && y.getDep(1).isConstant() && getValue()==y.getDep(1).getValue()) // 5*(x/5) = x
return y.getDep(0);
else if(hasDep() && getOp()==OP_DIV && getDep(1).isEquivalent(y)) // ((2/x)*x)
return getDep(0);
else if(y.hasDep() && y.getOp()==OP_DIV && y.getDep(1).isEquivalent(*this)) // ((2/x)*x)
return y.getDep(0);
else // create a new branch
return BinarySX::create(OP_MUL,*this,y);
}