Dear all,
I need to do floating point arithmetic in systemc.
My question is if after I do two floating point addition or multiplication, can I call this api(is_inf()) for the sum or product to determine
it is inf or not? The produced results looks correct for me.
Like the following sample code
```c
num1.negative(sign1);
num2.negative(sign2);
num1.exponent(exp1);
num2.exponent(exp2);
num1.mantissa(significand1);
num2.mantissa(significand2);
//the additiio