Esempio n. 1
0
 public bool IsIdentical(SoftFloat f1, uint i)
 {
     return(f1.ToIeeeRaw() == i);
 }
Esempio n. 2
0
 private bool IsIdentical(SoftFloat f1, float f2)
 {
     return(f1.ToIeeeRaw() == ((SoftFloat)f2).ToIeeeRaw());
 }
Esempio n. 3
0
 public bool IsIdentical(SoftFloat f1, SoftFloat f2)
 {
     return(f1.ToIeeeRaw() == f2.ToIeeeRaw());
 }