| 93 | } |
| 94 | |
| 95 | SymbolVar SymbolVar::operator/(const SymbolVar& rhs) const { |
| 96 | if (dtype().category() == DTypeCategory::INT && |
| 97 | rhs.dtype().category() == DTypeCategory::INT) { |
| 98 | return opr::floor_div(*this, rhs); |
| 99 | } |
| 100 | return opr::div(*this, rhs); |
| 101 | } |
| 102 | |
| 103 | SymbolVar SymbolVar::operator<(const SymbolVar& rhs) const { |
| 104 | return opr::less_than(*this, rhs); |