svf-lib 1.0.2055 → 1.0.2056
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
Binary file
|
|
@@ -432,19 +432,19 @@ public:
|
|
|
432
432
|
|
|
433
433
|
friend BoundedDouble operator^(const BoundedDouble &lhs, const BoundedDouble &rhs)
|
|
434
434
|
{
|
|
435
|
-
int lInt = std::round(
|
|
435
|
+
int lInt = std::round(lhs._fVal), rInt = std::round(rhs._fVal);
|
|
436
436
|
return lInt ^ rInt;
|
|
437
437
|
}
|
|
438
438
|
|
|
439
439
|
friend BoundedDouble operator&(const BoundedDouble &lhs, const BoundedDouble &rhs)
|
|
440
440
|
{
|
|
441
|
-
int lInt = std::round(
|
|
441
|
+
int lInt = std::round(lhs._fVal), rInt = std::round(rhs._fVal);
|
|
442
442
|
return lInt & rInt;
|
|
443
443
|
}
|
|
444
444
|
|
|
445
445
|
friend BoundedDouble operator|(const BoundedDouble &lhs, const BoundedDouble &rhs)
|
|
446
446
|
{
|
|
447
|
-
int lInt = std::round(
|
|
447
|
+
int lInt = std::round(lhs._fVal), rInt = std::round(rhs._fVal);
|
|
448
448
|
return lInt | rInt;
|
|
449
449
|
}
|
|
450
450
|
|
|
Binary file
|
|
Binary file
|