Lines Matching defs:lhs

55 RandomVariableBase::RandomVariableBase(const RandomVariableNode& lhs, const RandomVariableNode& rhs,  in RandomVariableBase()
82 RandomVariableRange operator&(const RandomVariableRange& lhs, const RandomVariableRange& rhs) { in operator &()
132 RandomVariable::RandomVariable(const RandomVariable& lhs, const RandomVariable& rhs, in RandomVariable()
157 RandomVariableRange IRandomVariableOp::getInitRange(const RandomVariableRange& lhs, in getInitRange()
218 virtual int eval(int lhs, int) const override { return eval(lhs); } in eval()
243 virtual int eval(int lhs, int rhs) const override { in eval()
272 virtual int eval(int lhs, int rhs) const override { return lhs + rhs; } in eval()
273 virtual RandomVariableRange getInitRange(const RandomVariableRange& lhs, in getInitRange()
308 virtual int eval(int lhs, int rhs) const override { return lhs - rhs; } in eval()
309 virtual RandomVariableRange getInitRange(const RandomVariableRange& lhs, in getInitRange()
337 virtual int eval(int lhs, int rhs) const override { return lhs * rhs; } in eval()
338 virtual RandomVariableRange getInitRange(const RandomVariableRange& lhs, in getInitRange()
380 virtual int eval(int lhs, int rhs) const override { in eval()
383 virtual RandomVariableRange getInitRange(const RandomVariableRange& lhs, in getInitRange()
396 virtual int eval(int lhs, int rhs) const override { in eval()
404 virtual int eval(int lhs, int rhs) const override { in eval()
449 virtual int eval(int lhs, int rhs) const override { return std::max(lhs, rhs); } in eval()
455 virtual int eval(int lhs, int rhs) const override { return std::min(lhs, rhs); } in eval()
473 virtual bool check(int lhs, int rhs) const override { return lhs == rhs; } in check()
489 virtual bool check(int lhs, int rhs) const override { return lhs > rhs; } in check()
495 virtual bool check(int lhs, int rhs) const override { return lhs >= rhs; } in check()
515 RandomVariable operator+(const RandomVariable& lhs, const RandomVariable& rhs) { in operator +()
519 RandomVariable operator-(const RandomVariable& lhs, const RandomVariable& rhs) { in operator -()
523 RandomVariable operator*(const RandomVariable& lhs, const RandomVariable& rhs) { in operator *()
527 RandomVariable operator*(const RandomVariable& lhs, const float& rhs) { in operator *()
530 RandomVariable operator/(const RandomVariable& lhs, const RandomVariable& rhs) { in operator /()
534 RandomVariable operator%(const RandomVariable& lhs, const RandomVariable& rhs) { in operator %()
538 RandomVariable max(const RandomVariable& lhs, const RandomVariable& rhs) { in max()
541 RandomVariable min(const RandomVariable& lhs, const RandomVariable& rhs) { in min()
1168 bool RandomVariableNetwork::setEqualIfCompatible(const std::vector<RandomVariable>& lhs, in setEqualIfCompatible()